ETH Price: $3,100.78 (+1.12%)
Gas: 2 Gwei

Token

validX (VALID)
 

Overview

Max Total Supply

100,000,000 VALID

Holders

34

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
831,184.569726411741590827 VALID

Value
$0.00
0x02bb861f47e475db478ccbb6c1a3d53492c03059
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
validX

Compiler Version
v0.8.25+commit.b61c2a91

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : validX.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.18;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./IUniswapV2Pair.sol";
import "./IUniswapV2Factory.sol";
import "./IUniswapV2Router01.sol";
import "./IUniswapV2Router02.sol";
import "./safeMath.sol";

/**
                 ValidX is a decentralized network for data validation
   enhancing the accuracy and reliability of AI applications across various industries. 

   Website: validx.network
   Twitter: twitter.com/ValidxAI 
   Gitbook: validx-a-i.gitbook.io/validx-ai-docs-v1.0
   Telegram: t.me/ValidX_AI
 **/   


pragma experimental ABIEncoderV2;

contract validX is ERC20, Ownable, Pausable {
    
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    bool private swapping;

    address public MarketingWallet;
    address public DevWallet;
    address public NodesWallet;

    uint256 public maxTx;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallets;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;


    uint256 public buyTotalFees;
    uint256 public buyMarketingFee;
    uint256 public buyNodesFee;
    uint256 public buyDevFee;

    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellNodesFee;
    uint256 public sellDevFee;

    uint256 public tokensForMarketing;
    uint256 public tokensForDev;
    uint256 public tokensForNodes;

    mapping(address => bool) private _isBlackList;
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedmaxTx;

    mapping(address => bool) public automatedMarketMakerPairs;

    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event MarketingWalletUpdated(
        address indexed newWallet,
        address indexed olDevWalletallet
    );

    event DevWalletUpdated(
        address indexed newWallet,
        address indexed olDevWalletallet
    );

    constructor() ERC20("validX", unicode"VALID") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

        excludeFrommaxTx(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        excludeFrommaxTx(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 totalSupply = 100_000_000 * 1e18;

        maxTx = 1_000_000 * 1e18; // 1% from total supply 
        maxWallets = 1_000_000 * 1e18; // 1% from total supply
        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet

        buyMarketingFee = 30;
        buyDevFee = 0;
        buyNodesFee = 0;
        buyTotalFees = buyMarketingFee + buyDevFee + buyNodesFee;

        sellMarketingFee = 40;
        sellDevFee = 0;
        sellNodesFee = 0;
        sellTotalFees = sellMarketingFee + sellDevFee + sellNodesFee;

        MarketingWallet = address(0x280CCCFB8fbE8DDbCFC788d2e5F2487f2BB4eDB4);
        DevWallet = address(0xA762Ce164bCe951D0AD6716DfD63CA6B882b21b3);
        NodesWallet = address(0x84C450548aa6dd1d45f3acEB1c1EE280a9f6B953);

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        excludeFrommaxTx(owner(), true);
        excludeFrommaxTx(address(this), true);
        excludeFrommaxTx(address(0xdead), true);

        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    function pause() public onlyOwner {
        require(!paused(), "ERC20: Contract is already paused");
        _pause();
   }

   function unPause() public onlyOwner {
        require(paused(), "ERC20: Contract is not paused");
        _unpause();
    }

    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
    }

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1000) / 1e18,
            "Cannot set maxTx lower than 0.1%"
        );
        maxTx = newNum * (10**18);
    }

    function updatemaxWalletsAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxWallets lower than 0.5%"
        );
        maxWallets = newNum * (10**18);
    }

    function excludeFrommaxTx(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedmaxTx[updAds] = isEx;
    }

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function updateBuyFees(
        uint256 _marketingFee,
        uint256 _devFee,
        uint256 _NodesFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyDevFee = _devFee;
        buyNodesFee = _NodesFee;
        buyTotalFees = buyMarketingFee + buyDevFee + buyNodesFee;
        require(buyTotalFees <= 99, "Must keep fees at 99% or less");
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _devFee,
        uint256 _NodesFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellDevFee = _devFee;
        sellNodesFee = _NodesFee;
        sellTotalFees = sellMarketingFee + sellDevFee + sellNodesFee;
        require(sellTotalFees <= 99, "Must keep fees at 99% or less");
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function setAutomatedMarketMakerPair(address pair, bool value)
        public
        onlyOwner
    {
        require(
            pair != uniswapV2Pair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateMarketingWallet(address newMarketingWallet) external onlyOwner {
        emit MarketingWalletUpdated(newMarketingWallet, MarketingWallet);
        MarketingWallet = newMarketingWallet;
    }

    function updateDevWallet(address newWallet) external onlyOwner {
        emit DevWalletUpdated(newWallet, DevWallet);
        DevWallet = newWallet;
    }

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    event BoughtEarly(address indexed sniper);

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(!_isBlackList[from], "[from] black list");
        require(!_isBlackList[to], "[to] black list");

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (limitsInEffect) {
            if (from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping) {
                if (!tradingActive) {
                    require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active.");
                }

                //when buy
                if (automatedMarketMakerPairs[from] && !_isExcludedmaxTx[to]) {
                    require(amount <= maxTx, "Buy transfer amount exceeds the maxTx.");
                    require(amount + balanceOf(to) <= maxWallets, "Max wallet exceeded");
                }
                //when sell
                else if (automatedMarketMakerPairs[to] && !_isExcludedmaxTx[from]) {
                    require(amount <= maxTx, "Sell transfer amount exceeds the maxTx.");
                }
                else if (!_isExcludedmaxTx[to]) {
                    require(amount + balanceOf(to) <= maxWallets, "Max wallet exceeded");
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));
        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForDev += (fees * sellDevFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
                tokensForNodes += (fees * sellNodesFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
                tokensForNodes += (fees * buyNodesFee) / buyTotalFees;
            }

            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }

            amount -= fees;
        }

        super._transfer(from, to, amount);
    }

    function min(uint256 a, uint256 b) private pure returns (uint256) {
        return (a > b) ? b : a;
    }

    function manualSwap(uint256 amount) external {
        require(_msgSender() == MarketingWallet);
        require(amount <= balanceOf(address(this)) && amount > 0, "Wrong amount");
        swapTokensForEth(amount);
    }    

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForMarketing + tokensForDev + tokensForNodes;
        bool success;

        if (contractBalance == 0) {
            return;
        }

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }

        uint256 initialETHBalance = address(this).balance;
        swapTokensForEth(contractBalance);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);
        uint256 ethForNodes = ethBalance.mul(tokensForNodes).div(totalTokensToSwap);

        tokensForMarketing = 0;
        tokensForDev = 0;
        tokensForNodes = 0;

        (success, ) = address(DevWallet).call{value: ethForDev}("");
        (success, ) = address(NodesWallet).call{value: ethForNodes}("");
        (success, ) = address(MarketingWallet).call{ value: address(this).balance }("");
    }
}

File 2 of 12 : safeMath.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

library SafeMath {

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

    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 3 of 12 : IUniswapV2Router02.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import "./IUniswapV2Router01.sol";

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

File 4 of 12 : IUniswapV2Router01.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

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 12 : IUniswapV2Factory.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

File 6 of 12 : IUniswapV2Pair.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function tokenSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint 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 (uint);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    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 (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

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

pragma solidity ^0.8.0;

import "../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() {
        _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 8 of 12 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

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

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}

File 10 of 12 : 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 11 of 12 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

File 12 of 12 : 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);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"olDevWalletallet","type":"address"}],"name":"DevWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"olDevWalletallet","type":"address"}],"name":"MarketingWalletUpdated","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[],"name":"DevWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MarketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NodesWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedmaxTx","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyNodesFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFrommaxTx","outputs":[],"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":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellNodesFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForNodes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_NodesFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_NodesFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updatemaxWalletsAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a0604052600d805462ffffff1916600117905534801561001e575f80fd5b50604051806040016040528060068152602001650ecc2d8d2c8b60d31b81525060405180604001604052806005815260200164159053125160da1b815250816003908161006b91906106b1565b50600461007882826106b1565b50505061009161008c6103b760201b60201c565b6103bb565b6005805460ff60a01b19169055737a250d5630b4cf539739df2c5dacb4c659f2488d6100be81600161040c565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa158015610106573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061012a9190610770565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610175573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906101999190610770565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156101e3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102079190610770565b600680546001600160a01b0319166001600160a01b0392909216918217905561023190600161040c565b600654610248906001600160a01b0316600161043e565b69d3c21bcecceda1000000600a819055600c556a52b7d2dcc80cd2e40000006127106102758260056107b1565b61027f91906107ce565b600b55601e600f8190555f60118190556010819055906102a09082906107ed565b6102aa91906107ed565b600e55602860138190555f60158190556014819055906102cb9082906107ed565b6102d591906107ed565b601255600780546001600160a01b031990811673280cccfb8fbe8ddbcfc788d2e5f2487f2bb4edb41790915560088054821673a762ce164bce951d0ad6716dfd63ca6b882b21b3179055600980549091167384c450548aa6dd1d45f3aceb1c1ee280a9f6b95317905561035a6103536005546001600160a01b031690565b6001610491565b610365306001610491565b61037261dead6001610491565b61038e6103876005546001600160a01b031690565b600161040c565b61039930600161040c565b6103a661dead600161040c565b6103b033826104f7565b5050610800565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6104146105b9565b6001600160a01b03919091165f908152601b60205260409020805460ff1916911515919091179055565b6001600160a01b0382165f818152601c6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6104996105b9565b6001600160a01b0382165f818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166105525760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b8060025f82825461056391906107ed565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b031633146106135760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610549565b565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061064257607f821691505b60208210810361066057634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561061557805f5260205f20601f840160051c8101602085101561068b5750805b601f840160051c820191505b818110156106aa575f8155600101610697565b5050505050565b81516001600160401b038111156106ca576106ca61061a565b6106de816106d8845461062e565b84610666565b602080601f831160018114610711575f84156106fa5750858301515b5f19600386901b1c1916600185901b178555610768565b5f85815260208120601f198616915b8281101561073f57888601518255948401946001909101908401610720565b508582101561075c57878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b5f60208284031215610780575f80fd5b81516001600160a01b0381168114610796575f80fd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176107c8576107c861079d565b92915050565b5f826107e857634e487b7160e01b5f52601260045260245ffd5b500490565b808201808211156107c8576107c861079d565b60805161274561082d5f395f81816103de01528181611e5701528181611f0e0152611f4a01526127455ff3fe608060405260043610610369575f3560e01c8063751039fc116101c8578063a9059cbb116100fd578063c17b5b8c1161009d578063e2f456051161006d578063e2f4560514610992578063e6819ba7146109a7578063f2fde38b146109d5578063f7b188a5146109f4575f80fd5b8063c17b5b8c14610920578063d257b34f1461093f578063d85ba0631461095e578063dd62ed3e14610973575f80fd5b8063b62496f5116100d8578063b62496f514610896578063b70143c9146108c4578063bbc0c742146108e3578063c024666814610901575f80fd5b8063a9059cbb14610839578063aacebbe314610858578063b115e4df14610877575f80fd5b8063924de9b7116101685780639c3b4fdc116101435780639c3b4fdc146107db5780639fccce32146107f0578063a0d82dc514610805578063a457c2d71461081a575f80fd5b8063924de9b71461078957806395d89b41146107a85780639a7a23d6146107bc575f80fd5b80638456cb59116101a35780638456cb591461072f5780638a8c523c146107435780638da5cb5b146107575780639213691314610774575f80fd5b8063751039fc146106e75780637bce5a04146106fb5780638095d56414610710575f80fd5b80633df533d01161029e578063644130d81161023e5780636fceedf0116102195780636fceedf01461067557806370a082311461068a578063715018a6146106be5780637437681e146106d2575f80fd5b8063644130d8146106225780636a486a8e146106415780636ddd171314610656575f80fd5b80634fbee193116102795780634fbee193146105995780635827690b146105d05780635c975abb146105ef57806363e757981461060d575f80fd5b80633df533d01461054c57806349bd5a5e146105615780634a62bb6514610580575f80fd5b8063217580a21161030957806327c8f835116102e457806327c8f835146104e857806330a136ad146104fd578063313ce56714610512578063395093511461052d575f80fd5b8063217580a21461048b57806323b872dd146104aa5780632598cdb2146104c9575f80fd5b806318160ddd1161034457806318160ddd146104185780631816467f146104365780631f3fed8f14610457578063203e727e1461046c575f80fd5b806306fdde0314610374578063095ea7b31461039e5780631694505e146103cd575f80fd5b3661037057005b5f80fd5b34801561037f575f80fd5b50610388610a08565b60405161039591906123a1565b60405180910390f35b3480156103a9575f80fd5b506103bd6103b83660046123ea565b610a98565b6040519015158152602001610395565b3480156103d8575f80fd5b506104007f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610395565b348015610423575f80fd5b506002545b604051908152602001610395565b348015610441575f80fd5b50610455610450366004612414565b610ab1565b005b348015610462575f80fd5b5061042860165481565b348015610477575f80fd5b5061045561048636600461242f565b610b15565b348015610496575f80fd5b506104556104a536600461242f565b610bbd565b3480156104b5575f80fd5b506103bd6104c4366004612446565b610c6e565b3480156104d4575f80fd5b50600754610400906001600160a01b031681565b3480156104f3575f80fd5b5061040061dead81565b348015610508575f80fd5b50610428600c5481565b34801561051d575f80fd5b5060405160128152602001610395565b348015610538575f80fd5b506103bd6105473660046123ea565b610c91565b348015610557575f80fd5b5061042860145481565b34801561056c575f80fd5b50600654610400906001600160a01b031681565b34801561058b575f80fd5b50600d546103bd9060ff1681565b3480156105a4575f80fd5b506103bd6105b3366004612414565b6001600160a01b03165f908152601a602052604090205460ff1690565b3480156105db575f80fd5b50600954610400906001600160a01b031681565b3480156105fa575f80fd5b50600554600160a01b900460ff166103bd565b348015610618575f80fd5b5061042860185481565b34801561062d575f80fd5b5061045561063c366004612493565b610cb2565b34801561064c575f80fd5b5061042860125481565b348015610661575f80fd5b50600d546103bd9062010000900460ff1681565b348015610680575f80fd5b5061042860105481565b348015610695575f80fd5b506104286106a4366004612414565b6001600160a01b03165f9081526020819052604090205490565b3480156106c9575f80fd5b50610455610ce4565b3480156106dd575f80fd5b50610428600a5481565b3480156106f2575f80fd5b506103bd610cf7565b348015610706575f80fd5b50610428600f5481565b34801561071b575f80fd5b5061045561072a3660046124c6565b610d10565b34801561073a575f80fd5b50610455610d96565b34801561074e575f80fd5b50610455610e0a565b348015610762575f80fd5b506005546001600160a01b0316610400565b34801561077f575f80fd5b5061042860135481565b348015610794575f80fd5b506104556107a33660046124ef565b610e25565b3480156107b3575f80fd5b50610388610e49565b3480156107c7575f80fd5b506104556107d6366004612493565b610e58565b3480156107e6575f80fd5b5061042860115481565b3480156107fb575f80fd5b5061042860175481565b348015610810575f80fd5b5061042860155481565b348015610825575f80fd5b506103bd6108343660046123ea565b610ef2565b348015610844575f80fd5b506103bd6108533660046123ea565b610f6c565b348015610863575f80fd5b50610455610872366004612414565b610f79565b348015610882575f80fd5b50600854610400906001600160a01b031681565b3480156108a1575f80fd5b506103bd6108b0366004612414565b601c6020525f908152604090205460ff1681565b3480156108cf575f80fd5b506104556108de36600461242f565b610fdd565b3480156108ee575f80fd5b50600d546103bd90610100900460ff1681565b34801561090c575f80fd5b5061045561091b366004612493565b611060565b34801561092b575f80fd5b5061045561093a3660046124c6565b6110c6565b34801561094a575f80fd5b506103bd61095936600461242f565b611147565b348015610969575f80fd5b50610428600e5481565b34801561097e575f80fd5b5061042861098d366004612508565b61127a565b34801561099d575f80fd5b50610428600b5481565b3480156109b2575f80fd5b506103bd6109c1366004612414565b601b6020525f908152604090205460ff1681565b3480156109e0575f80fd5b506104556109ef366004612414565b6112a4565b3480156109ff575f80fd5b5061045561131a565b606060038054610a179061253f565b80601f0160208091040260200160405190810160405280929190818152602001828054610a439061253f565b8015610a8e5780601f10610a6557610100808354040283529160200191610a8e565b820191905f5260205f20905b815481529060010190602001808311610a7157829003601f168201915b5050505050905090565b5f33610aa5818585611383565b60019150505b92915050565b610ab96114a6565b6008546040516001600160a01b03918216918316907f0db17895a9d092fb3ca24d626f2150dd80c185b0706b36f1040ee239f56cb871905f90a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b610b1d6114a6565b670de0b6b3a76400006103e8610b3260025490565b610b3d90600161258b565b610b4791906125a2565b610b5191906125a2565b811015610ba55760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e312560448201526064015b60405180910390fd5b610bb781670de0b6b3a764000061258b565b600a5550565b610bc56114a6565b670de0b6b3a76400006103e8610bda60025490565b610be590600561258b565b610bef91906125a2565b610bf991906125a2565b811015610c565760405162461bcd60e51b815260206004820152602560248201527f43616e6e6f7420736574206d617857616c6c657473206c6f776572207468616e60448201526420302e352560d81b6064820152608401610b9c565b610c6881670de0b6b3a764000061258b565b600c5550565b5f33610c7b858285611500565b610c86858585611578565b506001949350505050565b5f33610aa5818585610ca3838361127a565b610cad91906125c1565b611383565b610cba6114a6565b6001600160a01b03919091165f908152601b60205260409020805460ff1916911515919091179055565b610cec6114a6565b610cf55f611cfe565b565b5f610d006114a6565b50600d805460ff19169055600190565b610d186114a6565b600f8390556011829055601081905580610d3283856125c1565b610d3c91906125c1565b600e81905560631015610d915760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420393925206f72206c6573730000006044820152606401610b9c565b505050565b610d9e6114a6565b600554600160a01b900460ff1615610e025760405162461bcd60e51b815260206004820152602160248201527f45524332303a20436f6e747261637420697320616c72656164792070617573656044820152601960fa1b6064820152608401610b9c565b610cf5611d4f565b610e126114a6565b600d805462ffff00191662010100179055565b610e2d6114a6565b600d8054911515620100000262ff000019909216919091179055565b606060048054610a179061253f565b610e606114a6565b6006546001600160a01b0390811690831603610ee45760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610b9c565b610eee8282611daf565b5050565b5f3381610eff828661127a565b905083811015610f5f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610b9c565b610c868286868403611383565b5f33610aa5818585611578565b610f816114a6565b6007546040516001600160a01b03918216918316907f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc67905f90a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6007546001600160a01b0316336001600160a01b031614610ffc575f80fd5b305f90815260208190526040902054811115801561101957505f81115b6110545760405162461bcd60e51b815260206004820152600c60248201526b15dc9bdb99c8185b5bdd5b9d60a21b6044820152606401610b9c565b61105d81611e02565b50565b6110686114a6565b6001600160a01b0382165f818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6110ce6114a6565b601383905560158290556014819055806110e883856125c1565b6110f291906125c1565b601281905560631015610d915760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420393925206f72206c6573730000006044820152606401610b9c565b5f6111506114a6565b620186a061115d60025490565b61116890600161258b565b61117291906125a2565b8210156111df5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610b9c565b6103e86111eb60025490565b6111f690600561258b565b61120091906125a2565b82111561126c5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610b9c565b50600b81905560015b919050565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6112ac6114a6565b6001600160a01b0381166113115760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b9c565b61105d81611cfe565b6113226114a6565b600554600160a01b900460ff1661137b5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20436f6e7472616374206973206e6f74207061757365640000006044820152606401610b9c565b610cf5611fb8565b6001600160a01b0383166113e55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b9c565b6001600160a01b0382166114465760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b9c565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610cf55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b9c565b5f61150b848461127a565b90505f19811461157257818110156115655760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610b9c565b6115728484848403611383565b50505050565b6001600160a01b03831661159e5760405162461bcd60e51b8152600401610b9c906125d4565b6001600160a01b0382166115c45760405162461bcd60e51b8152600401610b9c90612619565b6001600160a01b0383165f9081526019602052604090205460ff16156116205760405162461bcd60e51b815260206004820152601160248201527016d99c9bdb5748189b1858dac81b1a5cdd607a1b6044820152606401610b9c565b6001600160a01b0382165f9081526019602052604090205460ff161561167a5760405162461bcd60e51b815260206004820152600f60248201526e16dd1bd748189b1858dac81b1a5cdd608a1b6044820152606401610b9c565b805f0361168c57610d9183835f611ff4565b600d5460ff16156119db576005546001600160a01b038481169116148015906116c357506005546001600160a01b03838116911614155b80156116d757506001600160a01b03821615155b80156116ee57506001600160a01b03821661dead14155b80156117045750600654600160a01b900460ff16155b156119db57600d54610100900460ff1661179a576001600160a01b0383165f908152601a602052604090205460ff168061175557506001600160a01b0382165f908152601a602052604090205460ff165b61179a5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610b9c565b6001600160a01b0383165f908152601c602052604090205460ff1680156117d957506001600160a01b0382165f908152601b602052604090205460ff16155b156118ad57600a5481111561183f5760405162461bcd60e51b815260206004820152602660248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526536b0bc2a3c1760d11b6064820152608401610b9c565b600c546001600160a01b0383165f9081526020819052604090205461186490836125c1565b11156118a85760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b9c565b6119db565b6001600160a01b0382165f908152601c602052604090205460ff1680156118ec57506001600160a01b0383165f908152601b602052604090205460ff16155b1561195357600a548111156118a85760405162461bcd60e51b815260206004820152602760248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152661036b0bc2a3c1760c91b6064820152608401610b9c565b6001600160a01b0382165f908152601b602052604090205460ff166119db57600c546001600160a01b0383165f9081526020819052604090205461199790836125c1565b11156119db5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b9c565b305f90815260208190526040902054600b5481108015908190611a065750600d5462010000900460ff165b8015611a1c5750600654600160a01b900460ff16155b8015611a4057506001600160a01b0385165f908152601c602052604090205460ff16155b8015611a6457506001600160a01b0385165f908152601a602052604090205460ff16155b8015611a8857506001600160a01b0384165f908152601a602052604090205460ff16155b15611ab6576006805460ff60a01b1916600160a01b179055611aa861211c565b6006805460ff60a01b191690555b6006546001600160a01b0386165f908152601a602052604090205460ff600160a01b909204821615911680611b0257506001600160a01b0385165f908152601a602052604090205460ff165b15611b0a57505f5b5f8115611cea576001600160a01b0386165f908152601c602052604090205460ff168015611b3957505f601254115b15611bf457611b5e6064611b58601254886122dc90919063ffffffff16565b906122ee565b905060125460155482611b71919061258b565b611b7b91906125a2565b60175f828254611b8b91906125c1565b9091555050601254601354611ba0908361258b565b611baa91906125a2565b60165f828254611bba91906125c1565b9091555050601254601454611bcf908361258b565b611bd991906125a2565b60185f828254611be991906125c1565b90915550611ccc9050565b6001600160a01b0387165f908152601c602052604090205460ff168015611c1c57505f600e54115b15611ccc57611c3b6064611b58600e54886122dc90919063ffffffff16565b9050600e5460115482611c4e919061258b565b611c5891906125a2565b60175f828254611c6891906125c1565b9091555050600e54600f54611c7d908361258b565b611c8791906125a2565b60165f828254611c9791906125c1565b9091555050600e54601054611cac908361258b565b611cb691906125a2565b60185f828254611cc691906125c1565b90915550505b8015611cdd57611cdd873083611ff4565b611ce7818661265c565b94505b611cf5878787611ff4565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b611d576122f9565b6005805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611d923390565b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b0382165f818152601c6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611e3557611e3561266f565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611eb1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ed59190612683565b81600181518110611ee857611ee861266f565b60200260200101906001600160a01b031690816001600160a01b031681525050611f33307f000000000000000000000000000000000000000000000000000000000000000084611383565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611f879085905f9086903090429060040161269e565b5f604051808303815f87803b158015611f9e575f80fd5b505af1158015611fb0573d5f803e3d5ffd5b505050505050565b611fc0612346565b6005805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33611d92565b6001600160a01b03831661201a5760405162461bcd60e51b8152600401610b9c906125d4565b6001600160a01b0382166120405760405162461bcd60e51b8152600401610b9c90612619565b6001600160a01b0383165f90815260208190526040902054818110156120b75760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610b9c565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611572565b305f9081526020819052604081205490505f60185460175460165461214191906125c1565b61214b91906125c1565b90505f825f0361215a57505050565b600b5461216890601461258b565b83111561218057600b5461217d90601461258b565b92505b4761218a84611e02565b5f6121954783612396565b90505f6121b185611b58601754856122dc90919063ffffffff16565b90505f6121cd86611b58601854866122dc90919063ffffffff16565b5f6016819055601781905560188190556008546040519293506001600160a01b031691849181818185875af1925050503d805f8114612227576040519150601f19603f3d011682016040523d82523d5f602084013e61222c565b606091505b50506009546040519196506001600160a01b03169082905f81818185875af1925050503d805f8114612279576040519150601f19603f3d011682016040523d82523d5f602084013e61227e565b606091505b50506007546040519196506001600160a01b03169047905f81818185875af1925050503d805f81146122cb576040519150601f19603f3d011682016040523d82523d5f602084013e6122d0565b606091505b50505050505050505050565b5f6122e7828461258b565b9392505050565b5f6122e782846125a2565b600554600160a01b900460ff1615610cf55760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610b9c565b600554600160a01b900460ff16610cf55760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610b9c565b5f6122e7828461265c565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b038116811461105d575f80fd5b5f80604083850312156123fb575f80fd5b8235612406816123d6565b946020939093013593505050565b5f60208284031215612424575f80fd5b81356122e7816123d6565b5f6020828403121561243f575f80fd5b5035919050565b5f805f60608486031215612458575f80fd5b8335612463816123d6565b92506020840135612473816123d6565b929592945050506040919091013590565b80358015158114611275575f80fd5b5f80604083850312156124a4575f80fd5b82356124af816123d6565b91506124bd60208401612484565b90509250929050565b5f805f606084860312156124d8575f80fd5b505081359360208301359350604090920135919050565b5f602082840312156124ff575f80fd5b6122e782612484565b5f8060408385031215612519575f80fd5b8235612524816123d6565b91506020830135612534816123d6565b809150509250929050565b600181811c9082168061255357607f821691505b60208210810361257157634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610aab57610aab612577565b5f826125bc57634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115610aab57610aab612577565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610aab57610aab612577565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215612693575f80fd5b81516122e7816123d6565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b818110156126ee5784516001600160a01b0316835293830193918301916001016126c9565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220ce8b4bbd022f601a38631385e14d35f737dcf4deb81f3f5651e2a3e30117799664736f6c63430008190033

Deployed Bytecode

0x608060405260043610610369575f3560e01c8063751039fc116101c8578063a9059cbb116100fd578063c17b5b8c1161009d578063e2f456051161006d578063e2f4560514610992578063e6819ba7146109a7578063f2fde38b146109d5578063f7b188a5146109f4575f80fd5b8063c17b5b8c14610920578063d257b34f1461093f578063d85ba0631461095e578063dd62ed3e14610973575f80fd5b8063b62496f5116100d8578063b62496f514610896578063b70143c9146108c4578063bbc0c742146108e3578063c024666814610901575f80fd5b8063a9059cbb14610839578063aacebbe314610858578063b115e4df14610877575f80fd5b8063924de9b7116101685780639c3b4fdc116101435780639c3b4fdc146107db5780639fccce32146107f0578063a0d82dc514610805578063a457c2d71461081a575f80fd5b8063924de9b71461078957806395d89b41146107a85780639a7a23d6146107bc575f80fd5b80638456cb59116101a35780638456cb591461072f5780638a8c523c146107435780638da5cb5b146107575780639213691314610774575f80fd5b8063751039fc146106e75780637bce5a04146106fb5780638095d56414610710575f80fd5b80633df533d01161029e578063644130d81161023e5780636fceedf0116102195780636fceedf01461067557806370a082311461068a578063715018a6146106be5780637437681e146106d2575f80fd5b8063644130d8146106225780636a486a8e146106415780636ddd171314610656575f80fd5b80634fbee193116102795780634fbee193146105995780635827690b146105d05780635c975abb146105ef57806363e757981461060d575f80fd5b80633df533d01461054c57806349bd5a5e146105615780634a62bb6514610580575f80fd5b8063217580a21161030957806327c8f835116102e457806327c8f835146104e857806330a136ad146104fd578063313ce56714610512578063395093511461052d575f80fd5b8063217580a21461048b57806323b872dd146104aa5780632598cdb2146104c9575f80fd5b806318160ddd1161034457806318160ddd146104185780631816467f146104365780631f3fed8f14610457578063203e727e1461046c575f80fd5b806306fdde0314610374578063095ea7b31461039e5780631694505e146103cd575f80fd5b3661037057005b5f80fd5b34801561037f575f80fd5b50610388610a08565b60405161039591906123a1565b60405180910390f35b3480156103a9575f80fd5b506103bd6103b83660046123ea565b610a98565b6040519015158152602001610395565b3480156103d8575f80fd5b506104007f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610395565b348015610423575f80fd5b506002545b604051908152602001610395565b348015610441575f80fd5b50610455610450366004612414565b610ab1565b005b348015610462575f80fd5b5061042860165481565b348015610477575f80fd5b5061045561048636600461242f565b610b15565b348015610496575f80fd5b506104556104a536600461242f565b610bbd565b3480156104b5575f80fd5b506103bd6104c4366004612446565b610c6e565b3480156104d4575f80fd5b50600754610400906001600160a01b031681565b3480156104f3575f80fd5b5061040061dead81565b348015610508575f80fd5b50610428600c5481565b34801561051d575f80fd5b5060405160128152602001610395565b348015610538575f80fd5b506103bd6105473660046123ea565b610c91565b348015610557575f80fd5b5061042860145481565b34801561056c575f80fd5b50600654610400906001600160a01b031681565b34801561058b575f80fd5b50600d546103bd9060ff1681565b3480156105a4575f80fd5b506103bd6105b3366004612414565b6001600160a01b03165f908152601a602052604090205460ff1690565b3480156105db575f80fd5b50600954610400906001600160a01b031681565b3480156105fa575f80fd5b50600554600160a01b900460ff166103bd565b348015610618575f80fd5b5061042860185481565b34801561062d575f80fd5b5061045561063c366004612493565b610cb2565b34801561064c575f80fd5b5061042860125481565b348015610661575f80fd5b50600d546103bd9062010000900460ff1681565b348015610680575f80fd5b5061042860105481565b348015610695575f80fd5b506104286106a4366004612414565b6001600160a01b03165f9081526020819052604090205490565b3480156106c9575f80fd5b50610455610ce4565b3480156106dd575f80fd5b50610428600a5481565b3480156106f2575f80fd5b506103bd610cf7565b348015610706575f80fd5b50610428600f5481565b34801561071b575f80fd5b5061045561072a3660046124c6565b610d10565b34801561073a575f80fd5b50610455610d96565b34801561074e575f80fd5b50610455610e0a565b348015610762575f80fd5b506005546001600160a01b0316610400565b34801561077f575f80fd5b5061042860135481565b348015610794575f80fd5b506104556107a33660046124ef565b610e25565b3480156107b3575f80fd5b50610388610e49565b3480156107c7575f80fd5b506104556107d6366004612493565b610e58565b3480156107e6575f80fd5b5061042860115481565b3480156107fb575f80fd5b5061042860175481565b348015610810575f80fd5b5061042860155481565b348015610825575f80fd5b506103bd6108343660046123ea565b610ef2565b348015610844575f80fd5b506103bd6108533660046123ea565b610f6c565b348015610863575f80fd5b50610455610872366004612414565b610f79565b348015610882575f80fd5b50600854610400906001600160a01b031681565b3480156108a1575f80fd5b506103bd6108b0366004612414565b601c6020525f908152604090205460ff1681565b3480156108cf575f80fd5b506104556108de36600461242f565b610fdd565b3480156108ee575f80fd5b50600d546103bd90610100900460ff1681565b34801561090c575f80fd5b5061045561091b366004612493565b611060565b34801561092b575f80fd5b5061045561093a3660046124c6565b6110c6565b34801561094a575f80fd5b506103bd61095936600461242f565b611147565b348015610969575f80fd5b50610428600e5481565b34801561097e575f80fd5b5061042861098d366004612508565b61127a565b34801561099d575f80fd5b50610428600b5481565b3480156109b2575f80fd5b506103bd6109c1366004612414565b601b6020525f908152604090205460ff1681565b3480156109e0575f80fd5b506104556109ef366004612414565b6112a4565b3480156109ff575f80fd5b5061045561131a565b606060038054610a179061253f565b80601f0160208091040260200160405190810160405280929190818152602001828054610a439061253f565b8015610a8e5780601f10610a6557610100808354040283529160200191610a8e565b820191905f5260205f20905b815481529060010190602001808311610a7157829003601f168201915b5050505050905090565b5f33610aa5818585611383565b60019150505b92915050565b610ab96114a6565b6008546040516001600160a01b03918216918316907f0db17895a9d092fb3ca24d626f2150dd80c185b0706b36f1040ee239f56cb871905f90a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b610b1d6114a6565b670de0b6b3a76400006103e8610b3260025490565b610b3d90600161258b565b610b4791906125a2565b610b5191906125a2565b811015610ba55760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e312560448201526064015b60405180910390fd5b610bb781670de0b6b3a764000061258b565b600a5550565b610bc56114a6565b670de0b6b3a76400006103e8610bda60025490565b610be590600561258b565b610bef91906125a2565b610bf991906125a2565b811015610c565760405162461bcd60e51b815260206004820152602560248201527f43616e6e6f7420736574206d617857616c6c657473206c6f776572207468616e60448201526420302e352560d81b6064820152608401610b9c565b610c6881670de0b6b3a764000061258b565b600c5550565b5f33610c7b858285611500565b610c86858585611578565b506001949350505050565b5f33610aa5818585610ca3838361127a565b610cad91906125c1565b611383565b610cba6114a6565b6001600160a01b03919091165f908152601b60205260409020805460ff1916911515919091179055565b610cec6114a6565b610cf55f611cfe565b565b5f610d006114a6565b50600d805460ff19169055600190565b610d186114a6565b600f8390556011829055601081905580610d3283856125c1565b610d3c91906125c1565b600e81905560631015610d915760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420393925206f72206c6573730000006044820152606401610b9c565b505050565b610d9e6114a6565b600554600160a01b900460ff1615610e025760405162461bcd60e51b815260206004820152602160248201527f45524332303a20436f6e747261637420697320616c72656164792070617573656044820152601960fa1b6064820152608401610b9c565b610cf5611d4f565b610e126114a6565b600d805462ffff00191662010100179055565b610e2d6114a6565b600d8054911515620100000262ff000019909216919091179055565b606060048054610a179061253f565b610e606114a6565b6006546001600160a01b0390811690831603610ee45760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610b9c565b610eee8282611daf565b5050565b5f3381610eff828661127a565b905083811015610f5f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610b9c565b610c868286868403611383565b5f33610aa5818585611578565b610f816114a6565b6007546040516001600160a01b03918216918316907f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc67905f90a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6007546001600160a01b0316336001600160a01b031614610ffc575f80fd5b305f90815260208190526040902054811115801561101957505f81115b6110545760405162461bcd60e51b815260206004820152600c60248201526b15dc9bdb99c8185b5bdd5b9d60a21b6044820152606401610b9c565b61105d81611e02565b50565b6110686114a6565b6001600160a01b0382165f818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6110ce6114a6565b601383905560158290556014819055806110e883856125c1565b6110f291906125c1565b601281905560631015610d915760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420393925206f72206c6573730000006044820152606401610b9c565b5f6111506114a6565b620186a061115d60025490565b61116890600161258b565b61117291906125a2565b8210156111df5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610b9c565b6103e86111eb60025490565b6111f690600561258b565b61120091906125a2565b82111561126c5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610b9c565b50600b81905560015b919050565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6112ac6114a6565b6001600160a01b0381166113115760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b9c565b61105d81611cfe565b6113226114a6565b600554600160a01b900460ff1661137b5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20436f6e7472616374206973206e6f74207061757365640000006044820152606401610b9c565b610cf5611fb8565b6001600160a01b0383166113e55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b9c565b6001600160a01b0382166114465760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b9c565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610cf55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b9c565b5f61150b848461127a565b90505f19811461157257818110156115655760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610b9c565b6115728484848403611383565b50505050565b6001600160a01b03831661159e5760405162461bcd60e51b8152600401610b9c906125d4565b6001600160a01b0382166115c45760405162461bcd60e51b8152600401610b9c90612619565b6001600160a01b0383165f9081526019602052604090205460ff16156116205760405162461bcd60e51b815260206004820152601160248201527016d99c9bdb5748189b1858dac81b1a5cdd607a1b6044820152606401610b9c565b6001600160a01b0382165f9081526019602052604090205460ff161561167a5760405162461bcd60e51b815260206004820152600f60248201526e16dd1bd748189b1858dac81b1a5cdd608a1b6044820152606401610b9c565b805f0361168c57610d9183835f611ff4565b600d5460ff16156119db576005546001600160a01b038481169116148015906116c357506005546001600160a01b03838116911614155b80156116d757506001600160a01b03821615155b80156116ee57506001600160a01b03821661dead14155b80156117045750600654600160a01b900460ff16155b156119db57600d54610100900460ff1661179a576001600160a01b0383165f908152601a602052604090205460ff168061175557506001600160a01b0382165f908152601a602052604090205460ff165b61179a5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610b9c565b6001600160a01b0383165f908152601c602052604090205460ff1680156117d957506001600160a01b0382165f908152601b602052604090205460ff16155b156118ad57600a5481111561183f5760405162461bcd60e51b815260206004820152602660248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526536b0bc2a3c1760d11b6064820152608401610b9c565b600c546001600160a01b0383165f9081526020819052604090205461186490836125c1565b11156118a85760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b9c565b6119db565b6001600160a01b0382165f908152601c602052604090205460ff1680156118ec57506001600160a01b0383165f908152601b602052604090205460ff16155b1561195357600a548111156118a85760405162461bcd60e51b815260206004820152602760248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152661036b0bc2a3c1760c91b6064820152608401610b9c565b6001600160a01b0382165f908152601b602052604090205460ff166119db57600c546001600160a01b0383165f9081526020819052604090205461199790836125c1565b11156119db5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b9c565b305f90815260208190526040902054600b5481108015908190611a065750600d5462010000900460ff165b8015611a1c5750600654600160a01b900460ff16155b8015611a4057506001600160a01b0385165f908152601c602052604090205460ff16155b8015611a6457506001600160a01b0385165f908152601a602052604090205460ff16155b8015611a8857506001600160a01b0384165f908152601a602052604090205460ff16155b15611ab6576006805460ff60a01b1916600160a01b179055611aa861211c565b6006805460ff60a01b191690555b6006546001600160a01b0386165f908152601a602052604090205460ff600160a01b909204821615911680611b0257506001600160a01b0385165f908152601a602052604090205460ff165b15611b0a57505f5b5f8115611cea576001600160a01b0386165f908152601c602052604090205460ff168015611b3957505f601254115b15611bf457611b5e6064611b58601254886122dc90919063ffffffff16565b906122ee565b905060125460155482611b71919061258b565b611b7b91906125a2565b60175f828254611b8b91906125c1565b9091555050601254601354611ba0908361258b565b611baa91906125a2565b60165f828254611bba91906125c1565b9091555050601254601454611bcf908361258b565b611bd991906125a2565b60185f828254611be991906125c1565b90915550611ccc9050565b6001600160a01b0387165f908152601c602052604090205460ff168015611c1c57505f600e54115b15611ccc57611c3b6064611b58600e54886122dc90919063ffffffff16565b9050600e5460115482611c4e919061258b565b611c5891906125a2565b60175f828254611c6891906125c1565b9091555050600e54600f54611c7d908361258b565b611c8791906125a2565b60165f828254611c9791906125c1565b9091555050600e54601054611cac908361258b565b611cb691906125a2565b60185f828254611cc691906125c1565b90915550505b8015611cdd57611cdd873083611ff4565b611ce7818661265c565b94505b611cf5878787611ff4565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b611d576122f9565b6005805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611d923390565b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b0382165f818152601c6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611e3557611e3561266f565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611eb1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ed59190612683565b81600181518110611ee857611ee861266f565b60200260200101906001600160a01b031690816001600160a01b031681525050611f33307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611383565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611f879085905f9086903090429060040161269e565b5f604051808303815f87803b158015611f9e575f80fd5b505af1158015611fb0573d5f803e3d5ffd5b505050505050565b611fc0612346565b6005805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33611d92565b6001600160a01b03831661201a5760405162461bcd60e51b8152600401610b9c906125d4565b6001600160a01b0382166120405760405162461bcd60e51b8152600401610b9c90612619565b6001600160a01b0383165f90815260208190526040902054818110156120b75760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610b9c565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611572565b305f9081526020819052604081205490505f60185460175460165461214191906125c1565b61214b91906125c1565b90505f825f0361215a57505050565b600b5461216890601461258b565b83111561218057600b5461217d90601461258b565b92505b4761218a84611e02565b5f6121954783612396565b90505f6121b185611b58601754856122dc90919063ffffffff16565b90505f6121cd86611b58601854866122dc90919063ffffffff16565b5f6016819055601781905560188190556008546040519293506001600160a01b031691849181818185875af1925050503d805f8114612227576040519150601f19603f3d011682016040523d82523d5f602084013e61222c565b606091505b50506009546040519196506001600160a01b03169082905f81818185875af1925050503d805f8114612279576040519150601f19603f3d011682016040523d82523d5f602084013e61227e565b606091505b50506007546040519196506001600160a01b03169047905f81818185875af1925050503d805f81146122cb576040519150601f19603f3d011682016040523d82523d5f602084013e6122d0565b606091505b50505050505050505050565b5f6122e7828461258b565b9392505050565b5f6122e782846125a2565b600554600160a01b900460ff1615610cf55760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610b9c565b600554600160a01b900460ff16610cf55760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610b9c565b5f6122e7828461265c565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b038116811461105d575f80fd5b5f80604083850312156123fb575f80fd5b8235612406816123d6565b946020939093013593505050565b5f60208284031215612424575f80fd5b81356122e7816123d6565b5f6020828403121561243f575f80fd5b5035919050565b5f805f60608486031215612458575f80fd5b8335612463816123d6565b92506020840135612473816123d6565b929592945050506040919091013590565b80358015158114611275575f80fd5b5f80604083850312156124a4575f80fd5b82356124af816123d6565b91506124bd60208401612484565b90509250929050565b5f805f606084860312156124d8575f80fd5b505081359360208301359350604090920135919050565b5f602082840312156124ff575f80fd5b6122e782612484565b5f8060408385031215612519575f80fd5b8235612524816123d6565b91506020830135612534816123d6565b809150509250929050565b600181811c9082168061255357607f821691505b60208210810361257157634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610aab57610aab612577565b5f826125bc57634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115610aab57610aab612577565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610aab57610aab612577565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215612693575f80fd5b81516122e7816123d6565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b818110156126ee5784516001600160a01b0316835293830193918301916001016126c9565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220ce8b4bbd022f601a38631385e14d35f737dcf4deb81f3f5651e2a3e30117799664736f6c63430008190033

Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.