ETH Price: $3,187.64 (+1.83%)
Gas: 6 Gwei

Token

Hello World (HW)
 

Overview

Max Total Supply

1,000,000,000 HW

Holders

16

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
7,958,091.826827875905976973 HW

Value
$0.00
0x0e95bb73b9825a1674fe1163bd81b2286b336fec
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:
HW

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 5 : 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 2 of 5 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 3 of 5 : 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 4 of 5 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 5 of 5 : HW.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";

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

interface IUniswapV2Router02 {
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;

    function factory() external pure returns (address);

    function WETH() external pure returns (address);

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

contract HW is Context, IERC20, Ownable {
    using SafeMath for uint256;
    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;
    mapping(address => bool) private _isExcludedFromFee;
    mapping(address => bool) private bots;
    address payable private _taxWallet;

    uint256 private _initialBuyTax = 10;
    uint256 private _initialSellTax = 30;
    uint256 private _finalBuyTax = 0;
    uint256 private _finalSellTax = 2;
    uint256 private _reduceBuyTaxAt = 20;
    uint256 private _reduceSellTaxAt = 20;
    uint256 private _buyCount = 0;

    string private _name;
    string private _symbol;
    uint8 private constant _decimals = 18;
    uint256 private constant _tTotal = 1000000000 * 10 ** _decimals;
    uint256 public _maxTxAmount = (_tTotal * 20) / 100;
    uint256 public _maxTxSellAmount = (_tTotal * 4) / 100;
    uint256 public _maxWalletSize = (_tTotal * 30) / 100;
    uint256 public _taxSwapThreshold = (_tTotal * 2) / 1000;
    uint256 public _maxTaxSwap = (_tTotal * 2) / 100;
    uint256 private _teamShare = (_tTotal * 10) / 100;

    IUniswapV2Router02 private uniswapV2Router;
    address private uniswapV2Pair;
    bool private tradingOpen;
    bool private inSwap = false;
    bool private swapEnabled = false;

    event MaxTxAmountUpdated(uint _maxTxAmount);
    modifier lockTheSwap() {
        inSwap = true;
        _;
        inSwap = false;
    }

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _taxWallet = payable(_msgSender());
        _balances[_msgSender()] = _teamShare;
        _balances[address(this)] = _tTotal - _teamShare;
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        _isExcludedFromFee[_taxWallet] = true;

        emit Transfer(address(0), _msgSender(), _teamShare);
        emit Transfer(address(0), address(this), _tTotal - _teamShare);
    }

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

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

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

    function totalSupply() public pure override returns (uint256) {
        return _tTotal;
    }

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

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

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

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

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

    function _approve(address owner, address spender, uint256 amount) private {
        require(
            owner != address(0) && spender != address(0),
            "ERC20: approve not the zero address"
        );
        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    function _transfer(address from, address to, uint256 amount) private {
        require(
            from != address(0) && to != address(0),
            "ERC20: transfer not the zero address"
        );
        require(amount > 0, "Transfer amount must be greater than zero");
        uint256 taxAmount = 0;
        if (from != owner() && to != owner() && swapEnabled) {
            require(!bots[from] && !bots[to]);
            if (
                from == uniswapV2Pair &&
                to != address(uniswapV2Router) &&
                !_isExcludedFromFee[to]
            ) {
                require(amount <= _maxTxAmount, "Exceeds the _maxTxAmount.");
                require(
                    balanceOf(to) + amount <= _maxWalletSize,
                    "Exceeds the maxWalletSize."
                );
                _buyCount++;
            }

            taxAmount = amount
                .mul(
                    (_buyCount > _reduceBuyTaxAt)
                        ? _finalBuyTax
                        : _initialBuyTax
                )
                .div(100);
            if (to == uniswapV2Pair && from != address(this)) {
                require(
                    amount <= _maxTxSellAmount,
                    "Exceeds the _maxTxSellAmount."
                );
                taxAmount = amount
                    .mul(
                        (_buyCount > _reduceSellTaxAt)
                            ? _finalSellTax
                            : _initialSellTax
                    )
                    .div(100);
            }

            uint256 contractTokenBalance = balanceOf(address(this));
            if (
                !inSwap &&
                to == uniswapV2Pair &&
                swapEnabled &&
                contractTokenBalance > _taxSwapThreshold
            ) {
                swapTokensForEth(
                    min(amount, min(contractTokenBalance, _maxTaxSwap))
                );
                uint256 contractETHBalance = address(this).balance;
                if (contractETHBalance > 0) {
                    sendETHToFee(address(this).balance);
                }
            }
        }

        if (taxAmount > 0) {
            _balances[address(this)] = _balances[address(this)].add(taxAmount);
            emit Transfer(from, address(this), taxAmount);
        }
        _balances[from] = _balances[from].sub(amount);
        _balances[to] = _balances[to].add(amount.sub(taxAmount));
        emit Transfer(from, to, amount.sub(taxAmount));
    }

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

    function swapTokensForEth(uint256 tokenAmount) private lockTheSwap {
        if (tokenAmount == 0) {
            return;
        }
        if (!tradingOpen) {
            return;
        }
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        _approve(address(this), address(uniswapV2Router), tokenAmount);
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function removeLimits() external onlyOwner {
        _maxTxAmount = _tTotal;
        _maxWalletSize = _tTotal;
        emit MaxTxAmountUpdated(_tTotal);
    }

    function sendETHToFee(uint256 amount) private {
        _taxWallet.transfer(amount);
    }

    function isBot(address a) public view returns (bool) {
        return bots[a];
    }

    function manageList(address[] memory bots_) external onlyOwner {
        for (uint i = 0; i < bots_.length; i++) {
            bots[bots_[i]] = true;
        }
    }

    function reduceFee(
        uint256 _newBuyFee,
        uint256 _newSellFee
    ) external onlyOwner {
        _finalBuyTax = _newBuyFee;
        _finalSellTax = _newSellFee;
    }

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

    receive() external payable {}

    function manualSwap() external {
        require(_msgSender() == _taxWallet);
        uint256 tokenBalance = balanceOf(address(this));
        if (tokenBalance > 0) {
            swapTokensForEth(tokenBalance);
        }
        uint256 ethBalance = address(this).balance;
        if (ethBalance > 0) {
            sendETHToFee(ethBalance);
        }
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"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":false,"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"MaxTxAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_maxTaxSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxSellAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxSwapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"a","type":"address"}],"name":"isBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"bots_","type":"address[]"}],"name":"manageList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newBuyFee","type":"uint256"},{"internalType":"uint256","name":"_newSellFee","type":"uint256"}],"name":"reduceFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600a600655601e600755600060085560026009556014600a556014600b556000600c55606460146012600a6200003b91906200084c565b633b9aca006200004c91906200089d565b6200005891906200089d565b62000064919062000917565b600f55606460046012600a6200007b91906200084c565b633b9aca006200008c91906200089d565b6200009891906200089d565b620000a4919062000917565b6010556064601e6012600a620000bb91906200084c565b633b9aca00620000cc91906200089d565b620000d891906200089d565b620000e4919062000917565b6011556103e860026012600a620000fc91906200084c565b633b9aca006200010d91906200089d565b6200011991906200089d565b62000125919062000917565b601255606460026012600a6200013c91906200084c565b633b9aca006200014d91906200089d565b6200015991906200089d565b62000165919062000917565b6013556064600a6012600a6200017c91906200084c565b633b9aca006200018d91906200089d565b6200019991906200089d565b620001a5919062000917565b6014556000601660156101000a81548160ff02191690831515021790555060006016806101000a81548160ff021916908315150217905550348015620001ea57600080fd5b5060405162003f1a38038062003f1a833981810160405281019062000210919062000ae2565b6200023062000224620005bd60201b60201c565b620005c560201b60201c565b81600d908162000241919062000da8565b5080600e908162000253919062000da8565b5062000264620005bd60201b60201c565b600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060145460016000620002bb620005bd60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506014546012600a6200030c91906200084c565b633b9aca006200031d91906200089d565b62000329919062000e8f565b600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600160036000620003826200068960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160036000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620004b5620005bd60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60145460405162000516919062000edb565b60405180910390a33073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6014546012600a6200058191906200084c565b633b9aca006200059291906200089d565b6200059e919062000e8f565b604051620005ad919062000edb565b60405180910390a3505062000ef8565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200074057808604811115620007185762000717620006b2565b5b6001851615620007285780820291505b80810290506200073885620006e1565b9450620006f8565b94509492505050565b6000826200075b57600190506200082e565b816200076b57600090506200082e565b81600181146200078457600281146200078f57620007c5565b60019150506200082e565b60ff841115620007a457620007a3620006b2565b5b8360020a915084821115620007be57620007bd620006b2565b5b506200082e565b5060208310610133831016604e8410600b8410161715620007ff5782820a905083811115620007f957620007f8620006b2565b5b6200082e565b6200080e8484846001620006ee565b92509050818404811115620008285762000827620006b2565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b6000620008598262000835565b915062000866836200083f565b9250620008957fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000749565b905092915050565b6000620008aa8262000835565b9150620008b78362000835565b9250828202620008c78162000835565b91508282048414831517620008e157620008e0620006b2565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620009248262000835565b9150620009318362000835565b925082620009445762000943620008e8565b5b828204905092915050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620009b8826200096d565b810181811067ffffffffffffffff82111715620009da57620009d96200097e565b5b80604052505050565b6000620009ef6200094f565b9050620009fd8282620009ad565b919050565b600067ffffffffffffffff82111562000a205762000a1f6200097e565b5b62000a2b826200096d565b9050602081019050919050565b60005b8381101562000a5857808201518184015260208101905062000a3b565b60008484015250505050565b600062000a7b62000a758462000a02565b620009e3565b90508281526020810184848401111562000a9a5762000a9962000968565b5b62000aa784828562000a38565b509392505050565b600082601f83011262000ac75762000ac662000963565b5b815162000ad984826020860162000a64565b91505092915050565b6000806040838503121562000afc5762000afb62000959565b5b600083015167ffffffffffffffff81111562000b1d5762000b1c6200095e565b5b62000b2b8582860162000aaf565b925050602083015167ffffffffffffffff81111562000b4f5762000b4e6200095e565b5b62000b5d8582860162000aaf565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000bba57607f821691505b60208210810362000bd05762000bcf62000b72565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000c3a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000bfb565b62000c46868362000bfb565b95508019841693508086168417925050509392505050565b6000819050919050565b600062000c8962000c8362000c7d8462000835565b62000c5e565b62000835565b9050919050565b6000819050919050565b62000ca58362000c68565b62000cbd62000cb48262000c90565b84845462000c08565b825550505050565b600090565b62000cd462000cc5565b62000ce181848462000c9a565b505050565b5b8181101562000d095762000cfd60008262000cca565b60018101905062000ce7565b5050565b601f82111562000d585762000d228162000bd6565b62000d2d8462000beb565b8101602085101562000d3d578190505b62000d5562000d4c8562000beb565b83018262000ce6565b50505b505050565b600082821c905092915050565b600062000d7d6000198460080262000d5d565b1980831691505092915050565b600062000d98838362000d6a565b9150826002028217905092915050565b62000db38262000b67565b67ffffffffffffffff81111562000dcf5762000dce6200097e565b5b62000ddb825462000ba1565b62000de882828562000d0d565b600060209050601f83116001811462000e20576000841562000e0b578287015190505b62000e17858262000d8a565b86555062000e87565b601f19841662000e308662000bd6565b60005b8281101562000e5a5784890151825560018201915060208501945060208101905062000e33565b8683101562000e7a578489015162000e76601f89168262000d6a565b8355505b6001600288020188555050505b505050505050565b600062000e9c8262000835565b915062000ea98362000835565b925082820390508181111562000ec45762000ec3620006b2565b5b92915050565b62000ed58162000835565b82525050565b600060208201905062000ef2600083018462000eca565b92915050565b6130128062000f086000396000f3fe6080604052600436106101445760003560e01c806372333356116100b6578063a9059cbb1161006f578063a9059cbb14610433578063bf474bed14610470578063c9567bf91461049b578063d1664a87146104b2578063dd62ed3e146104dd578063f2fde38b1461051a5761014b565b80637233335614610347578063751039fc146103705780637d1db4a5146103875780638da5cb5b146103b25780638f9a55c0146103dd57806395d89b41146104085761014b565b8063313ce56711610108578063313ce5671461024b5780633bbac5791461027657806351bc3c85146102b35780636de7bcbd146102ca57806370a08231146102f3578063715018a6146103305761014b565b806306fdde0314610150578063095ea7b31461017b5780630faee56f146101b857806318160ddd146101e357806323b872dd1461020e5761014b565b3661014b57005b600080fd5b34801561015c57600080fd5b50610165610543565b6040516101729190612053565b60405180910390f35b34801561018757600080fd5b506101a2600480360381019061019d919061211d565b6105d5565b6040516101af9190612178565b60405180910390f35b3480156101c457600080fd5b506101cd6105f3565b6040516101da91906121a2565b60405180910390f35b3480156101ef57600080fd5b506101f86105f9565b60405161020591906121a2565b60405180910390f35b34801561021a57600080fd5b50610235600480360381019061023091906121bd565b61061d565b6040516102429190612178565b60405180910390f35b34801561025757600080fd5b506102606106f6565b60405161026d919061222c565b60405180910390f35b34801561028257600080fd5b5061029d60048036038101906102989190612247565b6106ff565b6040516102aa9190612178565b60405180910390f35b3480156102bf57600080fd5b506102c8610755565b005b3480156102d657600080fd5b506102f160048036038101906102ec91906123bc565b6107f2565b005b3480156102ff57600080fd5b5061031a60048036038101906103159190612247565b61088f565b60405161032791906121a2565b60405180910390f35b34801561033c57600080fd5b506103456108d8565b005b34801561035357600080fd5b5061036e60048036038101906103699190612405565b6108ec565b005b34801561037c57600080fd5b50610385610906565b005b34801561039357600080fd5b5061039c6109a9565b6040516103a991906121a2565b60405180910390f35b3480156103be57600080fd5b506103c76109af565b6040516103d49190612454565b60405180910390f35b3480156103e957600080fd5b506103f26109d8565b6040516103ff91906121a2565b60405180910390f35b34801561041457600080fd5b5061041d6109de565b60405161042a9190612053565b60405180910390f35b34801561043f57600080fd5b5061045a6004803603810190610455919061211d565b610a70565b6040516104679190612178565b60405180910390f35b34801561047c57600080fd5b50610485610a8e565b60405161049291906121a2565b60405180910390f35b3480156104a757600080fd5b506104b0610a94565b005b3480156104be57600080fd5b506104c7610f3e565b6040516104d491906121a2565b60405180910390f35b3480156104e957600080fd5b5061050460048036038101906104ff919061246f565b610f44565b60405161051191906121a2565b60405180910390f35b34801561052657600080fd5b50610541600480360381019061053c9190612247565b610fcb565b005b6060600d8054610552906124de565b80601f016020809104026020016040519081016040528092919081815260200182805461057e906124de565b80156105cb5780601f106105a0576101008083540402835291602001916105cb565b820191906000526020600020905b8154815290600101906020018083116105ae57829003601f168201915b5050505050905090565b60006105e96105e261104e565b8484611056565b6001905092915050565b60135481565b60006012600a6106099190612671565b633b9aca0061061891906126bc565b905090565b600061062a8484846111ea565b6106eb8461063661104e565b6106e685604051806060016040528060288152602001612fb560289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061069c61104e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ab79092919063ffffffff16565b611056565b600190509392505050565b60006012905090565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661079661104e565b73ffffffffffffffffffffffffffffffffffffffff16146107b657600080fd5b60006107c13061088f565b905060008111156107d6576107d581611b0c565b5b600047905060008111156107ee576107ed81611da4565b5b5050565b6107fa611e10565b60005b815181101561088b5760016004600084848151811061081f5761081e6126fe565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806108839061272d565b9150506107fd565b5050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108e0611e10565b6108ea6000611e8e565b565b6108f4611e10565b81600881905550806009819055505050565b61090e611e10565b6012600a61091c9190612671565b633b9aca0061092b91906126bc565b600f819055506012600a61093f9190612671565b633b9aca0061094e91906126bc565b6011819055507f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf6012600a6109839190612671565b633b9aca0061099291906126bc565b60405161099f91906121a2565b60405180910390a1565b600f5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b6060600e80546109ed906124de565b80601f0160208091040260200160405190810160405280929190818152602001828054610a19906124de565b8015610a665780601f10610a3b57610100808354040283529160200191610a66565b820191906000526020600020905b815481529060010190602001808311610a4957829003601f168201915b5050505050905090565b6000610a84610a7d61104e565b84846111ea565b6001905092915050565b60125481565b610a9c611e10565b601660149054906101000a900460ff1615610aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae3906127c1565b60405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610b8a30601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166012600a610b769190612671565b633b9aca00610b8591906126bc565b611056565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610bf7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c1b91906127f6565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ca4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cc891906127f6565b6040518363ffffffff1660e01b8152600401610ce5929190612823565b6020604051808303816000875af1158015610d04573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d2891906127f6565b601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7194730610db13061088f565b600080610dbc6109af565b426040518863ffffffff1660e01b8152600401610dde96959493929190612891565b60606040518083038185885af1158015610dfc573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610e219190612907565b505050601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b8152600401610ec392919061295a565b6020604051808303816000875af1158015610ee2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f0691906129af565b5060016016806101000a81548160ff0219169083151502179055506001601660146101000a81548160ff021916908315150217905550565b60105481565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610fd3611e10565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611042576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103990612a4e565b60405180910390fd5b61104b81611e8e565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156110c05750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b6110ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f690612ae0565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111dd91906121a2565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156112545750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b611293576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128a90612b72565b60405180910390fd5b600081116112d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cd90612c04565b60405180910390fd5b60006112e06109af565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415801561134e575061131e6109af565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611364575060168054906101000a900460ff165b156117fa57600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561140d5750600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b61141657600080fd5b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480156114c15750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156115175750600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156115d257600f54821115611561576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155890612c70565b60405180910390fd5b6011548261156e8561088f565b6115789190612c90565b11156115b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b090612d10565b60405180910390fd5b600c60008154809291906115cc9061272d565b91905055505b61160e6064611600600a54600c54116115ed576006546115f1565b6008545b85611f5290919063ffffffff16565b611f6890919063ffffffff16565b9050601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614801561169957503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15611722576010548211156116e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116da90612d7c565b60405180910390fd5b61171f6064611711600b54600c54116116fe57600754611702565b6009545b85611f5290919063ffffffff16565b611f6890919063ffffffff16565b90505b600061172d3061088f565b9050601660159054906101000a900460ff161580156117995750601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b80156117af575060168054906101000a900460ff165b80156117bc575060125481115b156117f8576117de6117d9846117d484601354611f7e565b611f7e565b611b0c565b600047905060008111156117f6576117f547611da4565b5b505b505b60008111156118fe5761185581600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f9790919063ffffffff16565b600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516118f591906121a2565b60405180910390a35b61195082600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611fad90919063ffffffff16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506119f76119a98284611fad90919063ffffffff16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f9790919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef611a9c8486611fad90919063ffffffff16565b604051611aa991906121a2565b60405180910390a350505050565b6000838311158290611aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af69190612053565b60405180910390fd5b5082840390509392505050565b6001601660156101000a81548160ff0219169083151502179055506000810315611d8657601660149054906101000a900460ff1615611d86576000600267ffffffffffffffff811115611b6257611b61612279565b5b604051908082528060200260200182016040528015611b905781602001602082028036833780820191505090505b5090503081600081518110611ba857611ba76126fe565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c4f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c7391906127f6565b81600181518110611c8757611c866126fe565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611cee30601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611056565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401611d52959493929190612e5a565b600060405180830381600087803b158015611d6c57600080fd5b505af1158015611d80573d6000803e3d6000fd5b50505050505b6000601660156101000a81548160ff02191690831515021790555050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611e0c573d6000803e3d6000fd5b5050565b611e1861104e565b73ffffffffffffffffffffffffffffffffffffffff16611e366109af565b73ffffffffffffffffffffffffffffffffffffffff1614611e8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8390612f00565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183611f6091906126bc565b905092915050565b60008183611f769190612f4f565b905092915050565b6000818311611f8d5782611f8f565b815b905092915050565b60008183611fa59190612c90565b905092915050565b60008183611fbb9190612f80565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611ffd578082015181840152602081019050611fe2565b60008484015250505050565b6000601f19601f8301169050919050565b600061202582611fc3565b61202f8185611fce565b935061203f818560208601611fdf565b61204881612009565b840191505092915050565b6000602082019050818103600083015261206d818461201a565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006120b482612089565b9050919050565b6120c4816120a9565b81146120cf57600080fd5b50565b6000813590506120e1816120bb565b92915050565b6000819050919050565b6120fa816120e7565b811461210557600080fd5b50565b600081359050612117816120f1565b92915050565b600080604083850312156121345761213361207f565b5b6000612142858286016120d2565b925050602061215385828601612108565b9150509250929050565b60008115159050919050565b6121728161215d565b82525050565b600060208201905061218d6000830184612169565b92915050565b61219c816120e7565b82525050565b60006020820190506121b76000830184612193565b92915050565b6000806000606084860312156121d6576121d561207f565b5b60006121e4868287016120d2565b93505060206121f5868287016120d2565b925050604061220686828701612108565b9150509250925092565b600060ff82169050919050565b61222681612210565b82525050565b6000602082019050612241600083018461221d565b92915050565b60006020828403121561225d5761225c61207f565b5b600061226b848285016120d2565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6122b182612009565b810181811067ffffffffffffffff821117156122d0576122cf612279565b5b80604052505050565b60006122e3612075565b90506122ef82826122a8565b919050565b600067ffffffffffffffff82111561230f5761230e612279565b5b602082029050602081019050919050565b600080fd5b6000612338612333846122f4565b6122d9565b9050808382526020820190506020840283018581111561235b5761235a612320565b5b835b81811015612384578061237088826120d2565b84526020840193505060208101905061235d565b5050509392505050565b600082601f8301126123a3576123a2612274565b5b81356123b3848260208601612325565b91505092915050565b6000602082840312156123d2576123d161207f565b5b600082013567ffffffffffffffff8111156123f0576123ef612084565b5b6123fc8482850161238e565b91505092915050565b6000806040838503121561241c5761241b61207f565b5b600061242a85828601612108565b925050602061243b85828601612108565b9150509250929050565b61244e816120a9565b82525050565b60006020820190506124696000830184612445565b92915050565b600080604083850312156124865761248561207f565b5b6000612494858286016120d2565b92505060206124a5858286016120d2565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806124f657607f821691505b602082108103612509576125086124af565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115612595578086048111156125715761257061250f565b5b60018516156125805780820291505b808102905061258e8561253e565b9450612555565b94509492505050565b6000826125ae576001905061266a565b816125bc576000905061266a565b81600181146125d257600281146125dc5761260b565b600191505061266a565b60ff8411156125ee576125ed61250f565b5b8360020a9150848211156126055761260461250f565b5b5061266a565b5060208310610133831016604e8410600b84101617156126405782820a90508381111561263b5761263a61250f565b5b61266a565b61264d848484600161254b565b925090508184048111156126645761266361250f565b5b81810290505b9392505050565b600061267c826120e7565b915061268783612210565b92506126b47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461259e565b905092915050565b60006126c7826120e7565b91506126d2836120e7565b92508282026126e0816120e7565b915082820484148315176126f7576126f661250f565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000612738826120e7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361276a5761276961250f565b5b600182019050919050565b7f74726164696e6720697320616c7265616479206f70656e000000000000000000600082015250565b60006127ab601783611fce565b91506127b682612775565b602082019050919050565b600060208201905081810360008301526127da8161279e565b9050919050565b6000815190506127f0816120bb565b92915050565b60006020828403121561280c5761280b61207f565b5b600061281a848285016127e1565b91505092915050565b60006040820190506128386000830185612445565b6128456020830184612445565b9392505050565b6000819050919050565b6000819050919050565b600061287b6128766128718461284c565b612856565b6120e7565b9050919050565b61288b81612860565b82525050565b600060c0820190506128a66000830189612445565b6128b36020830188612193565b6128c06040830187612882565b6128cd6060830186612882565b6128da6080830185612445565b6128e760a0830184612193565b979650505050505050565b600081519050612901816120f1565b92915050565b6000806000606084860312156129205761291f61207f565b5b600061292e868287016128f2565b935050602061293f868287016128f2565b9250506040612950868287016128f2565b9150509250925092565b600060408201905061296f6000830185612445565b61297c6020830184612193565b9392505050565b61298c8161215d565b811461299757600080fd5b50565b6000815190506129a981612983565b92915050565b6000602082840312156129c5576129c461207f565b5b60006129d38482850161299a565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612a38602683611fce565b9150612a43826129dc565b604082019050919050565b60006020820190508181036000830152612a6781612a2b565b9050919050565b7f45524332303a20617070726f7665206e6f7420746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612aca602383611fce565b9150612ad582612a6e565b604082019050919050565b60006020820190508181036000830152612af981612abd565b9050919050565b7f45524332303a207472616e73666572206e6f7420746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612b5c602483611fce565b9150612b6782612b00565b604082019050919050565b60006020820190508181036000830152612b8b81612b4f565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000612bee602983611fce565b9150612bf982612b92565b604082019050919050565b60006020820190508181036000830152612c1d81612be1565b9050919050565b7f4578636565647320746865205f6d61785478416d6f756e742e00000000000000600082015250565b6000612c5a601983611fce565b9150612c6582612c24565b602082019050919050565b60006020820190508181036000830152612c8981612c4d565b9050919050565b6000612c9b826120e7565b9150612ca6836120e7565b9250828201905080821115612cbe57612cbd61250f565b5b92915050565b7f4578636565647320746865206d617857616c6c657453697a652e000000000000600082015250565b6000612cfa601a83611fce565b9150612d0582612cc4565b602082019050919050565b60006020820190508181036000830152612d2981612ced565b9050919050565b7f4578636565647320746865205f6d6178547853656c6c416d6f756e742e000000600082015250565b6000612d66601d83611fce565b9150612d7182612d30565b602082019050919050565b60006020820190508181036000830152612d9581612d59565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612dd1816120a9565b82525050565b6000612de38383612dc8565b60208301905092915050565b6000602082019050919050565b6000612e0782612d9c565b612e118185612da7565b9350612e1c83612db8565b8060005b83811015612e4d578151612e348882612dd7565b9750612e3f83612def565b925050600181019050612e20565b5085935050505092915050565b600060a082019050612e6f6000830188612193565b612e7c6020830187612882565b8181036040830152612e8e8186612dfc565b9050612e9d6060830185612445565b612eaa6080830184612193565b9695505050505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612eea602083611fce565b9150612ef582612eb4565b602082019050919050565b60006020820190508181036000830152612f1981612edd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612f5a826120e7565b9150612f65836120e7565b925082612f7557612f74612f20565b5b828204905092915050565b6000612f8b826120e7565b9150612f96836120e7565b9250828203905081811115612fae57612fad61250f565b5b9291505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220ca932af93d3adaca68349bcb7231ba3b8c3d8f54d00f76a6714d001ec133245564736f6c6343000813003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000b48656c6c6f20576f726c6400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024857000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101445760003560e01c806372333356116100b6578063a9059cbb1161006f578063a9059cbb14610433578063bf474bed14610470578063c9567bf91461049b578063d1664a87146104b2578063dd62ed3e146104dd578063f2fde38b1461051a5761014b565b80637233335614610347578063751039fc146103705780637d1db4a5146103875780638da5cb5b146103b25780638f9a55c0146103dd57806395d89b41146104085761014b565b8063313ce56711610108578063313ce5671461024b5780633bbac5791461027657806351bc3c85146102b35780636de7bcbd146102ca57806370a08231146102f3578063715018a6146103305761014b565b806306fdde0314610150578063095ea7b31461017b5780630faee56f146101b857806318160ddd146101e357806323b872dd1461020e5761014b565b3661014b57005b600080fd5b34801561015c57600080fd5b50610165610543565b6040516101729190612053565b60405180910390f35b34801561018757600080fd5b506101a2600480360381019061019d919061211d565b6105d5565b6040516101af9190612178565b60405180910390f35b3480156101c457600080fd5b506101cd6105f3565b6040516101da91906121a2565b60405180910390f35b3480156101ef57600080fd5b506101f86105f9565b60405161020591906121a2565b60405180910390f35b34801561021a57600080fd5b50610235600480360381019061023091906121bd565b61061d565b6040516102429190612178565b60405180910390f35b34801561025757600080fd5b506102606106f6565b60405161026d919061222c565b60405180910390f35b34801561028257600080fd5b5061029d60048036038101906102989190612247565b6106ff565b6040516102aa9190612178565b60405180910390f35b3480156102bf57600080fd5b506102c8610755565b005b3480156102d657600080fd5b506102f160048036038101906102ec91906123bc565b6107f2565b005b3480156102ff57600080fd5b5061031a60048036038101906103159190612247565b61088f565b60405161032791906121a2565b60405180910390f35b34801561033c57600080fd5b506103456108d8565b005b34801561035357600080fd5b5061036e60048036038101906103699190612405565b6108ec565b005b34801561037c57600080fd5b50610385610906565b005b34801561039357600080fd5b5061039c6109a9565b6040516103a991906121a2565b60405180910390f35b3480156103be57600080fd5b506103c76109af565b6040516103d49190612454565b60405180910390f35b3480156103e957600080fd5b506103f26109d8565b6040516103ff91906121a2565b60405180910390f35b34801561041457600080fd5b5061041d6109de565b60405161042a9190612053565b60405180910390f35b34801561043f57600080fd5b5061045a6004803603810190610455919061211d565b610a70565b6040516104679190612178565b60405180910390f35b34801561047c57600080fd5b50610485610a8e565b60405161049291906121a2565b60405180910390f35b3480156104a757600080fd5b506104b0610a94565b005b3480156104be57600080fd5b506104c7610f3e565b6040516104d491906121a2565b60405180910390f35b3480156104e957600080fd5b5061050460048036038101906104ff919061246f565b610f44565b60405161051191906121a2565b60405180910390f35b34801561052657600080fd5b50610541600480360381019061053c9190612247565b610fcb565b005b6060600d8054610552906124de565b80601f016020809104026020016040519081016040528092919081815260200182805461057e906124de565b80156105cb5780601f106105a0576101008083540402835291602001916105cb565b820191906000526020600020905b8154815290600101906020018083116105ae57829003601f168201915b5050505050905090565b60006105e96105e261104e565b8484611056565b6001905092915050565b60135481565b60006012600a6106099190612671565b633b9aca0061061891906126bc565b905090565b600061062a8484846111ea565b6106eb8461063661104e565b6106e685604051806060016040528060288152602001612fb560289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061069c61104e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ab79092919063ffffffff16565b611056565b600190509392505050565b60006012905090565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661079661104e565b73ffffffffffffffffffffffffffffffffffffffff16146107b657600080fd5b60006107c13061088f565b905060008111156107d6576107d581611b0c565b5b600047905060008111156107ee576107ed81611da4565b5b5050565b6107fa611e10565b60005b815181101561088b5760016004600084848151811061081f5761081e6126fe565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806108839061272d565b9150506107fd565b5050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108e0611e10565b6108ea6000611e8e565b565b6108f4611e10565b81600881905550806009819055505050565b61090e611e10565b6012600a61091c9190612671565b633b9aca0061092b91906126bc565b600f819055506012600a61093f9190612671565b633b9aca0061094e91906126bc565b6011819055507f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf6012600a6109839190612671565b633b9aca0061099291906126bc565b60405161099f91906121a2565b60405180910390a1565b600f5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b6060600e80546109ed906124de565b80601f0160208091040260200160405190810160405280929190818152602001828054610a19906124de565b8015610a665780601f10610a3b57610100808354040283529160200191610a66565b820191906000526020600020905b815481529060010190602001808311610a4957829003601f168201915b5050505050905090565b6000610a84610a7d61104e565b84846111ea565b6001905092915050565b60125481565b610a9c611e10565b601660149054906101000a900460ff1615610aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae3906127c1565b60405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610b8a30601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166012600a610b769190612671565b633b9aca00610b8591906126bc565b611056565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610bf7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c1b91906127f6565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ca4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cc891906127f6565b6040518363ffffffff1660e01b8152600401610ce5929190612823565b6020604051808303816000875af1158015610d04573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d2891906127f6565b601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7194730610db13061088f565b600080610dbc6109af565b426040518863ffffffff1660e01b8152600401610dde96959493929190612891565b60606040518083038185885af1158015610dfc573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610e219190612907565b505050601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b8152600401610ec392919061295a565b6020604051808303816000875af1158015610ee2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f0691906129af565b5060016016806101000a81548160ff0219169083151502179055506001601660146101000a81548160ff021916908315150217905550565b60105481565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610fd3611e10565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611042576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103990612a4e565b60405180910390fd5b61104b81611e8e565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156110c05750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b6110ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f690612ae0565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111dd91906121a2565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156112545750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b611293576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128a90612b72565b60405180910390fd5b600081116112d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cd90612c04565b60405180910390fd5b60006112e06109af565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415801561134e575061131e6109af565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611364575060168054906101000a900460ff165b156117fa57600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561140d5750600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b61141657600080fd5b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480156114c15750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156115175750600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156115d257600f54821115611561576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155890612c70565b60405180910390fd5b6011548261156e8561088f565b6115789190612c90565b11156115b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b090612d10565b60405180910390fd5b600c60008154809291906115cc9061272d565b91905055505b61160e6064611600600a54600c54116115ed576006546115f1565b6008545b85611f5290919063ffffffff16565b611f6890919063ffffffff16565b9050601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614801561169957503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15611722576010548211156116e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116da90612d7c565b60405180910390fd5b61171f6064611711600b54600c54116116fe57600754611702565b6009545b85611f5290919063ffffffff16565b611f6890919063ffffffff16565b90505b600061172d3061088f565b9050601660159054906101000a900460ff161580156117995750601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b80156117af575060168054906101000a900460ff165b80156117bc575060125481115b156117f8576117de6117d9846117d484601354611f7e565b611f7e565b611b0c565b600047905060008111156117f6576117f547611da4565b5b505b505b60008111156118fe5761185581600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f9790919063ffffffff16565b600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516118f591906121a2565b60405180910390a35b61195082600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611fad90919063ffffffff16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506119f76119a98284611fad90919063ffffffff16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f9790919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef611a9c8486611fad90919063ffffffff16565b604051611aa991906121a2565b60405180910390a350505050565b6000838311158290611aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af69190612053565b60405180910390fd5b5082840390509392505050565b6001601660156101000a81548160ff0219169083151502179055506000810315611d8657601660149054906101000a900460ff1615611d86576000600267ffffffffffffffff811115611b6257611b61612279565b5b604051908082528060200260200182016040528015611b905781602001602082028036833780820191505090505b5090503081600081518110611ba857611ba76126fe565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c4f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c7391906127f6565b81600181518110611c8757611c866126fe565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611cee30601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611056565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401611d52959493929190612e5a565b600060405180830381600087803b158015611d6c57600080fd5b505af1158015611d80573d6000803e3d6000fd5b50505050505b6000601660156101000a81548160ff02191690831515021790555050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611e0c573d6000803e3d6000fd5b5050565b611e1861104e565b73ffffffffffffffffffffffffffffffffffffffff16611e366109af565b73ffffffffffffffffffffffffffffffffffffffff1614611e8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8390612f00565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183611f6091906126bc565b905092915050565b60008183611f769190612f4f565b905092915050565b6000818311611f8d5782611f8f565b815b905092915050565b60008183611fa59190612c90565b905092915050565b60008183611fbb9190612f80565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611ffd578082015181840152602081019050611fe2565b60008484015250505050565b6000601f19601f8301169050919050565b600061202582611fc3565b61202f8185611fce565b935061203f818560208601611fdf565b61204881612009565b840191505092915050565b6000602082019050818103600083015261206d818461201a565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006120b482612089565b9050919050565b6120c4816120a9565b81146120cf57600080fd5b50565b6000813590506120e1816120bb565b92915050565b6000819050919050565b6120fa816120e7565b811461210557600080fd5b50565b600081359050612117816120f1565b92915050565b600080604083850312156121345761213361207f565b5b6000612142858286016120d2565b925050602061215385828601612108565b9150509250929050565b60008115159050919050565b6121728161215d565b82525050565b600060208201905061218d6000830184612169565b92915050565b61219c816120e7565b82525050565b60006020820190506121b76000830184612193565b92915050565b6000806000606084860312156121d6576121d561207f565b5b60006121e4868287016120d2565b93505060206121f5868287016120d2565b925050604061220686828701612108565b9150509250925092565b600060ff82169050919050565b61222681612210565b82525050565b6000602082019050612241600083018461221d565b92915050565b60006020828403121561225d5761225c61207f565b5b600061226b848285016120d2565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6122b182612009565b810181811067ffffffffffffffff821117156122d0576122cf612279565b5b80604052505050565b60006122e3612075565b90506122ef82826122a8565b919050565b600067ffffffffffffffff82111561230f5761230e612279565b5b602082029050602081019050919050565b600080fd5b6000612338612333846122f4565b6122d9565b9050808382526020820190506020840283018581111561235b5761235a612320565b5b835b81811015612384578061237088826120d2565b84526020840193505060208101905061235d565b5050509392505050565b600082601f8301126123a3576123a2612274565b5b81356123b3848260208601612325565b91505092915050565b6000602082840312156123d2576123d161207f565b5b600082013567ffffffffffffffff8111156123f0576123ef612084565b5b6123fc8482850161238e565b91505092915050565b6000806040838503121561241c5761241b61207f565b5b600061242a85828601612108565b925050602061243b85828601612108565b9150509250929050565b61244e816120a9565b82525050565b60006020820190506124696000830184612445565b92915050565b600080604083850312156124865761248561207f565b5b6000612494858286016120d2565b92505060206124a5858286016120d2565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806124f657607f821691505b602082108103612509576125086124af565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115612595578086048111156125715761257061250f565b5b60018516156125805780820291505b808102905061258e8561253e565b9450612555565b94509492505050565b6000826125ae576001905061266a565b816125bc576000905061266a565b81600181146125d257600281146125dc5761260b565b600191505061266a565b60ff8411156125ee576125ed61250f565b5b8360020a9150848211156126055761260461250f565b5b5061266a565b5060208310610133831016604e8410600b84101617156126405782820a90508381111561263b5761263a61250f565b5b61266a565b61264d848484600161254b565b925090508184048111156126645761266361250f565b5b81810290505b9392505050565b600061267c826120e7565b915061268783612210565b92506126b47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461259e565b905092915050565b60006126c7826120e7565b91506126d2836120e7565b92508282026126e0816120e7565b915082820484148315176126f7576126f661250f565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000612738826120e7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361276a5761276961250f565b5b600182019050919050565b7f74726164696e6720697320616c7265616479206f70656e000000000000000000600082015250565b60006127ab601783611fce565b91506127b682612775565b602082019050919050565b600060208201905081810360008301526127da8161279e565b9050919050565b6000815190506127f0816120bb565b92915050565b60006020828403121561280c5761280b61207f565b5b600061281a848285016127e1565b91505092915050565b60006040820190506128386000830185612445565b6128456020830184612445565b9392505050565b6000819050919050565b6000819050919050565b600061287b6128766128718461284c565b612856565b6120e7565b9050919050565b61288b81612860565b82525050565b600060c0820190506128a66000830189612445565b6128b36020830188612193565b6128c06040830187612882565b6128cd6060830186612882565b6128da6080830185612445565b6128e760a0830184612193565b979650505050505050565b600081519050612901816120f1565b92915050565b6000806000606084860312156129205761291f61207f565b5b600061292e868287016128f2565b935050602061293f868287016128f2565b9250506040612950868287016128f2565b9150509250925092565b600060408201905061296f6000830185612445565b61297c6020830184612193565b9392505050565b61298c8161215d565b811461299757600080fd5b50565b6000815190506129a981612983565b92915050565b6000602082840312156129c5576129c461207f565b5b60006129d38482850161299a565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612a38602683611fce565b9150612a43826129dc565b604082019050919050565b60006020820190508181036000830152612a6781612a2b565b9050919050565b7f45524332303a20617070726f7665206e6f7420746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612aca602383611fce565b9150612ad582612a6e565b604082019050919050565b60006020820190508181036000830152612af981612abd565b9050919050565b7f45524332303a207472616e73666572206e6f7420746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612b5c602483611fce565b9150612b6782612b00565b604082019050919050565b60006020820190508181036000830152612b8b81612b4f565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000612bee602983611fce565b9150612bf982612b92565b604082019050919050565b60006020820190508181036000830152612c1d81612be1565b9050919050565b7f4578636565647320746865205f6d61785478416d6f756e742e00000000000000600082015250565b6000612c5a601983611fce565b9150612c6582612c24565b602082019050919050565b60006020820190508181036000830152612c8981612c4d565b9050919050565b6000612c9b826120e7565b9150612ca6836120e7565b9250828201905080821115612cbe57612cbd61250f565b5b92915050565b7f4578636565647320746865206d617857616c6c657453697a652e000000000000600082015250565b6000612cfa601a83611fce565b9150612d0582612cc4565b602082019050919050565b60006020820190508181036000830152612d2981612ced565b9050919050565b7f4578636565647320746865205f6d6178547853656c6c416d6f756e742e000000600082015250565b6000612d66601d83611fce565b9150612d7182612d30565b602082019050919050565b60006020820190508181036000830152612d9581612d59565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612dd1816120a9565b82525050565b6000612de38383612dc8565b60208301905092915050565b6000602082019050919050565b6000612e0782612d9c565b612e118185612da7565b9350612e1c83612db8565b8060005b83811015612e4d578151612e348882612dd7565b9750612e3f83612def565b925050600181019050612e20565b5085935050505092915050565b600060a082019050612e6f6000830188612193565b612e7c6020830187612882565b8181036040830152612e8e8186612dfc565b9050612e9d6060830185612445565b612eaa6080830184612193565b9695505050505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612eea602083611fce565b9150612ef582612eb4565b602082019050919050565b60006020820190508181036000830152612f1981612edd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612f5a826120e7565b9150612f65836120e7565b925082612f7557612f74612f20565b5b828204905092915050565b6000612f8b826120e7565b9150612f96836120e7565b9250828203905081811115612fae57612fad61250f565b5b9291505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220ca932af93d3adaca68349bcb7231ba3b8c3d8f54d00f76a6714d001ec133245564736f6c63430008130033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000b48656c6c6f20576f726c6400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024857000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Hello World
Arg [1] : symbol_ (string): HW

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [3] : 48656c6c6f20576f726c64000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [5] : 4857000000000000000000000000000000000000000000000000000000000000


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.