ETH Price: $3,425.35 (-0.39%)
Gas: 30 Gwei

Token

BANANA LP STAKING (Banana)
 

Overview

Max Total Supply

1,000,000,000 Banana

Holders

27

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
5,045,200.086745799529494227 Banana

Value
$0.00
0xdad3f6c3726e8526f9fbec68881aac5ba2a0e718
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:
LPBanana

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
paris EvmVersion
File 1 of 7 : LPBanana.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.20;

/**
 * Website: https://www.bananastaking.app
 * Twitter: https://twitter.com/bananastaking
 * Telegram:https://t.me/bananastaking
 * Bot:     https://t.me/LPBanana_bot
 */

import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "./IUniswapV2Factory.sol";
import "./IUniswapV2Router02.sol";

contract LPBanana is IERC20, Ownable(msg.sender) {
    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;
    mapping(address => bool) private _isExcludedFromFee;
    address public pool1;
    address public pool2;
    uint256 private firstBlock;
    uint256 public startTime;

    uint256 private _initialBuyTax = 25;
    uint256 private _initialSellTax = 25;
    uint256 private _finalBuyTax = 5;
    uint256 private _finalSellTax = 5;
    uint256 private _reduceBuyTaxAt = 10;
    uint256 private _reduceSellTaxAt = 10;
    uint256 private _preventSwapBefore = 10;
    uint256 private _buyCount = 0;

    uint8 private constant _decimals = 18;
    uint256 private constant _tTotal = 1_000_000_000 * 10 ** _decimals;
    string private constant _name = unicode"BANANA LP STAKING";
    string private constant _symbol = unicode"Banana";
    uint256 public _maxTxAmount = (_tTotal * 2) / 100;
    uint256 public _maxWalletSize = (_tTotal * 2) / 100;
    uint256 public _taxSwapThreshold = _tTotal / 1000;
    uint256 public _maxTaxSwap = (_tTotal * 1) / 100;

    IUniswapV2Router02 private uniswapV2Router;
    address private uniswapV2Pair;
    bool private tradingOpen;
    bool private inSwap;
    bool private swapEnabled;
    uint private isAddingLP = 2;

    event MaxTxAmountUpdated(uint _maxTxAmount);

    modifier lockTheSwap() {
        inSwap = true;
        _;
        inSwap = false;
    }

    constructor() {
        _balances[_msgSender()] = _tTotal;
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;

        uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
            address(this),
            uniswapV2Router.WETH()
        );

        emit Transfer(address(0), _msgSender(), _tTotal);
    }

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

    function symbol() public pure 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()] - amount
        );
        return true;
    }

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

    function _transfer(address from, address to, uint256 amount) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        uint256 taxAmount = 0;

        if (isAddingLP == 2 && from != owner() && to != owner()) {
            if (
                from == uniswapV2Pair &&
                to != address(uniswapV2Router) &&
                !_isExcludedFromFee[to]
            ) {
                taxAmount =
                    (amount *
                        (
                            _buyCount > _reduceBuyTaxAt
                                ? _finalBuyTax
                                : _initialBuyTax
                        )) /
                    100;

                require(amount <= _maxTxAmount, "Exceeds the _maxTxAmount.");
                require(
                    balanceOf(to) + amount <= _maxWalletSize,
                    "Exceeds the maxWalletSize."
                );

                _buyCount++;
            }

            if (to != uniswapV2Pair && !_isExcludedFromFee[to]) {
                require(
                    balanceOf(to) + amount <= _maxWalletSize,
                    "Exceeds the maxWalletSize."
                );
            }

            if (to == uniswapV2Pair && from != address(this)) {
                taxAmount =
                    (amount *
                        (
                            _buyCount > _reduceSellTaxAt
                                ? _finalSellTax
                                : _initialSellTax
                        )) /
                    100;
            }

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

        if (!tradingOpen && (msg.sender != owner())) {
            taxAmount =
                (amount *
                    (
                        _buyCount > _reduceSellTaxAt
                            ? _finalSellTax
                            : _initialSellTax
                    )) /
                100;
            _balances[address(this)] = _balances[address(this)] + taxAmount;
            _balances[from] = _balances[from] - amount;
            _balances[to] = _balances[to] + (amount - taxAmount);
            emit Transfer(from, to, amount);
            return;
        }

        if (taxAmount > 0) {
            _balances[address(this)] = _balances[address(this)] + taxAmount;
            emit Transfer(from, address(this), taxAmount);
        }

        _balances[from] = _balances[from] - amount;
        _balances[to] = _balances[to] + (amount - taxAmount);
        emit Transfer(from, to, amount - taxAmount);
    }

    function recover() external onlyOwner {
        Address.sendValue(payable(owner()), address(this).balance);
    }

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

    function swapTokensForEth(uint256 tokenAmount) private lockTheSwap {
        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,
            owner(),
            block.timestamp
        );
    }

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

    function sendETHToFee(uint256 amount) private {
        if (pool1 != address(0)) {
            Address.sendValue(payable(pool1), amount);
        }

        if (pool2 != address(0)) {
            Address.sendValue(payable(pool2), amount);
        }
    }

    function setPools(address pool1_, address pool2_) external onlyOwner {
        pool1 = pool1_;
        pool2 = pool2_;
    }

    function openTrading() external onlyOwner {
        require(!tradingOpen, "trading is already open");
        swapEnabled = true;
        _approve(address(this), address(uniswapV2Router), _tTotal);
        uniswapV2Router.addLiquidityETH{value: address(this).balance}(
            address(this),
            balanceOf(address(this)),
            0,
            0,
            owner(),
            block.timestamp
        );
        startTime = block.timestamp;
        tradingOpen = true;
        firstBlock = block.number;
    }

    receive() external payable {}
}

File 2 of 7 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol)

pragma solidity ^0.8.20;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev The ETH balance of the account is not enough to perform the operation.
     */
    error AddressInsufficientBalance(address account);

    /**
     * @dev There's no code at `target` (it is not a contract).
     */
    error AddressEmptyCode(address target);

    /**
     * @dev A call to an address target failed. The target may have reverted.
     */
    error FailedInnerCall();

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

        (bool success, ) = recipient.call{value: amount}("");
        if (!success) {
            revert FailedInnerCall();
        }
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        if (address(this).balance < value) {
            revert AddressInsufficientBalance(address(this));
        }
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

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

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

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target
     * was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an
     * unsuccessful call.
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata
    ) internal view returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            // only check if target is a contract if the call was successful and the return data is empty
            // otherwise we already know that it was a contract
            if (returndata.length == 0 && target.code.length == 0) {
                revert AddressEmptyCode(target);
            }
            return returndata;
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the
     * revert reason or with a default {FailedInnerCall} error.
     */
    function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            return returndata;
        }
    }

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

File 3 of 7 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {Context} from "../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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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 4 of 7 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}

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

pragma solidity ^0.8.19;

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

    function getPair(
        address tokenA,
        address tokenB
    ) external view returns (address pair);
}

File 6 of 7 : IUniswapV2Router02.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.19;

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

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

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

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

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

File 7 of 7 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Context.sol)

pragma solidity ^0.8.20;

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

Settings
{
  "remappings": [
    "@openzeppelin/=lib/openzeppelin-contracts/",
    "ds-test/=lib/forge-std/lib/ds-test/src/",
    "erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/",
    "forge-std/=lib/forge-std/src/",
    "openzeppelin-contracts/=lib/openzeppelin-contracts/",
    "lib/forge-std:ds-test/=lib/forge-std/lib/ds-test/src/",
    "lib/openzeppelin-contracts:@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/",
    "lib/openzeppelin-contracts:ds-test/=lib/openzeppelin-contracts/lib/forge-std/lib/ds-test/src/",
    "lib/openzeppelin-contracts:erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/",
    "lib/openzeppelin-contracts:forge-std/=lib/openzeppelin-contracts/lib/forge-std/src/"
  ],
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "metadata": {
    "useLiteralContent": false,
    "bytecodeHash": "ipfs",
    "appendCBOR": true
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "evmVersion": "paris",
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"AddressInsufficientBalance","type":"error"},{"inputs":[],"name":"FailedInnerCall","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"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":"_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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pool1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pool2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"recover","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pool1_","type":"address"},{"internalType":"address","name":"pool2_","type":"address"}],"name":"setPools","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","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"}]

6080604052601960085560196009556005600a556005600b55600a600c55600a600d55600a600e556000600f5560646012600a6200003e919062000556565b6200004e90633b9aca006200056e565b6200005b9060026200056e565b62000067919062000588565b60105560646200007a6012600a62000556565b6200008a90633b9aca006200056e565b620000979060026200056e565b620000a3919062000588565b6011556103e8620000b76012600a62000556565b620000c790633b9aca006200056e565b620000d3919062000588565b60125560646012600a620000e8919062000556565b620000f890633b9aca006200056e565b620001059060016200056e565b62000111919062000588565b60135560026016553480156200012657600080fd5b5033806200014e57604051631e4fbdf760e01b81526000600482015260240160405180910390fd5b6200015981620003f1565b50620001686012600a62000556565b6200017890633b9aca006200056e565b336000908152600160208190526040822092909255600390620001a36000546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff19958616179055308152600383528190208054909316600117909255601480546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d908117909155825163c45a015560e01b81529251909263c45a01559260048083019391928290030181865afa15801562000245573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200026b9190620005ab565b6001600160a01b031663c9c6539630601460009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002ce573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002f49190620005ab565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000342573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003689190620005ab565b601580546001600160a01b0319166001600160a01b0392909216919091179055620003903390565b6001600160a01b031660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef620003ca6012600a62000556565b620003da90633b9aca006200056e565b60405190815260200160405180910390a3620005d6565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620004985781600019048211156200047c576200047c62000441565b808516156200048a57918102915b93841c93908002906200045c565b509250929050565b600082620004b15750600162000550565b81620004c05750600062000550565b8160018114620004d95760028114620004e45762000504565b600191505062000550565b60ff841115620004f857620004f862000441565b50506001821b62000550565b5060208310610133831016604e8410600b841016171562000529575081810a62000550565b62000535838362000457565b80600019048211156200054c576200054c62000441565b0290505b92915050565b60006200056760ff841683620004a0565b9392505050565b808202811582820484141762000550576200055062000441565b600082620005a657634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215620005be57600080fd5b81516001600160a01b03811681146200056757600080fd5b6116ba80620005e66000396000f3fe6080604052600436106101445760003560e01c80637d1db4a5116100b6578063b941d3e01161006f578063b941d3e0146103a6578063bf474bed146103c6578063c9567bf9146103dc578063ce746024146103f1578063dd62ed3e14610406578063f2fde38b1461044c57600080fd5b80637d1db4a5146102ed5780638da5cb5b146103035780638f9a55c01461032157806395d89b4114610337578063a525306c14610366578063a9059cbb1461038657600080fd5b806323b872dd1161010857806323b872dd14610239578063313ce5671461025957806370a0823114610275578063715018a6146102ab578063751039fc146102c257806378e97925146102d757600080fd5b806305ea3ed51461015057806306fdde031461018d578063095ea7b3146101d05780630faee56f1461020057806318160ddd1461022457600080fd5b3661014b57005b600080fd5b34801561015c57600080fd5b50600454610170906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b34801561019957600080fd5b5060408051808201909152601181527042414e414e41204c50205354414b494e4760781b60208201525b604051610184919061130b565b3480156101dc57600080fd5b506101f06101eb36600461136e565b61046c565b6040519015158152602001610184565b34801561020c57600080fd5b5061021660135481565b604051908152602001610184565b34801561023057600080fd5b50610216610483565b34801561024557600080fd5b506101f061025436600461139a565b6104a4565b34801561026557600080fd5b5060405160128152602001610184565b34801561028157600080fd5b506102166102903660046113db565b6001600160a01b031660009081526001602052604090205490565b3480156102b757600080fd5b506102c06104f6565b005b3480156102ce57600080fd5b506102c061050a565b3480156102e357600080fd5b5061021660075481565b3480156102f957600080fd5b5061021660105481565b34801561030f57600080fd5b506000546001600160a01b0316610170565b34801561032d57600080fd5b5061021660115481565b34801561034357600080fd5b5060408051808201909152600681526542616e616e6160d01b60208201526101c3565b34801561037257600080fd5b506102c06103813660046113f8565b61059a565b34801561039257600080fd5b506101f06103a136600461136e565b6105d0565b3480156103b257600080fd5b50600554610170906001600160a01b031681565b3480156103d257600080fd5b5061021660125481565b3480156103e857600080fd5b506102c06105dd565b3480156103fd57600080fd5b506102c0610777565b34801561041257600080fd5b506102166104213660046113f8565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b34801561045857600080fd5b506102c06104673660046113db565b61079a565b60006104793384846107d8565b5060015b92915050565b60006104916012600a61152b565b61049f90633b9aca0061153a565b905090565b60006104b18484846108fc565b6001600160a01b0384166000908152600260209081526040808320338085529252909120546104ec9186916104e7908690611551565b6107d8565b5060019392505050565b6104fe611003565b6105086000611030565b565b610512611003565b61051e6012600a61152b565b61052c90633b9aca0061153a565b60105561053b6012600a61152b565b61054990633b9aca0061153a565b6011557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf6105796012600a61152b565b61058790633b9aca0061153a565b60405190815260200160405180910390a1565b6105a2611003565b600480546001600160a01b039384166001600160a01b03199182161790915560058054929093169116179055565b60006104793384846108fc565b6105e5611003565b601554600160a01b900460ff16156106445760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e00000000000000000060448201526064015b60405180910390fd5b6015805460ff60b01b1916600160b01b1790556014546106839030906001600160a01b03166106756012600a61152b565b6104e790633b9aca0061153a565b6014546001600160a01b031663f305d71947306106b5816001600160a01b031660009081526001602052604090205490565b6000806106ca6000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610732573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906107579190611564565b505042600755506015805460ff60a01b1916600160a01b17905543600655565b61077f611003565b6105086107946000546001600160a01b031690565b47611080565b6107a2611003565b6001600160a01b0381166107cc57604051631e4fbdf760e01b81526000600482015260240161063b565b6107d581611030565b50565b6001600160a01b03831661083a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161063b565b6001600160a01b03821661089b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161063b565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166109605760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161063b565b6001600160a01b0382166109c25760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161063b565b60008111610a245760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161063b565b60006016546002148015610a4657506000546001600160a01b03858116911614155b8015610a6057506000546001600160a01b03848116911614155b15610d7c576015546001600160a01b038581169116148015610a9057506014546001600160a01b03848116911614155b8015610ab557506001600160a01b03831660009081526003602052604090205460ff16155b15610bcc576064600c54600f5411610acf57600854610ad3565b600a545b610add908461153a565b610ae79190611592565b9050601054821115610b3b5760405162461bcd60e51b815260206004820152601960248201527f4578636565647320746865205f6d61785478416d6f756e742e00000000000000604482015260640161063b565b60115482610b5e856001600160a01b031660009081526001602052604090205490565b610b6891906115b4565b1115610bb65760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e000000000000604482015260640161063b565b600f8054906000610bc6836115c7565b91905055505b6015546001600160a01b03848116911614801590610c0357506001600160a01b03831660009081526003602052604090205460ff16155b15610c835760115482610c2b856001600160a01b031660009081526001602052604090205490565b610c3591906115b4565b1115610c835760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e000000000000604482015260640161063b565b6015546001600160a01b038481169116148015610ca957506001600160a01b0384163014155b15610cde576064600d54600f5411610cc357600954610cc7565b600b545b610cd1908461153a565b610cdb9190611592565b90505b30600090815260016020526040902054601554600160a81b900460ff16158015610d1557506015546001600160a01b038581169116145b8015610d2a5750601554600160b01b900460ff165b8015610d37575060125481115b8015610d465750600e54600f54115b15610d7a57610d68610d6384610d5e8460135461111c565b61111c565b611134565b478015610d7857610d78476112bd565b505b505b601554600160a01b900460ff16158015610da157506000546001600160a01b03163314155b15610ec6576064600d54600f5411610dbb57600954610dbf565b600b545b610dc9908461153a565b610dd39190611592565b30600090815260016020526040902054909150610df19082906115b4565b30600090815260016020526040808220929092556001600160a01b03861681522054610e1e908390611551565b6001600160a01b038516600090815260016020526040902055610e418183611551565b6001600160a01b038416600090815260016020526040902054610e6491906115b4565b6001600160a01b0380851660008181526001602052604090819020939093559151908616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610eb89086815260200190565b60405180910390a350505050565b8015610f415730600090815260016020526040902054610ee79082906115b4565b30600081815260016020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610f389085815260200190565b60405180910390a35b6001600160a01b038416600090815260016020526040902054610f65908390611551565b6001600160a01b038516600090815260016020526040902055610f888183611551565b6001600160a01b038416600090815260016020526040902054610fab91906115b4565b6001600160a01b0380851660008181526001602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef610ff58486611551565b604051908152602001610eb8565b6000546001600160a01b031633146105085760405163118cdaa760e01b815233600482015260240161063b565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b804710156110a35760405163cd78605960e01b815230600482015260240161063b565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146110f0576040519150601f19603f3d011682016040523d82523d6000602084013e6110f5565b606091505b505090508061111757604051630a12f52160e11b815260040160405180910390fd5b505050565b600081831161112b578261112d565b815b9392505050565b6015805460ff60a81b1916600160a81b179055604080516002808252606082018352600092602083019080368337019050509050308160008151811061117c5761117c6115e0565b6001600160a01b03928316602091820292909201810191909152601454604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156111d5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111f991906115f6565b8160018151811061120c5761120c6115e0565b6001600160a01b03928316602091820292909201015260145461123291309116846107d8565b6014546001600160a01b031663791ac947836000846112596000546001600160a01b031690565b426040518663ffffffff1660e01b815260040161127a959493929190611613565b600060405180830381600087803b15801561129457600080fd5b505af11580156112a8573d6000803e3d6000fd5b50506015805460ff60a81b1916905550505050565b6004546001600160a01b0316156112e4576004546112e4906001600160a01b031682611080565b6005546001600160a01b0316156107d5576005546107d5906001600160a01b031682611080565b600060208083528351808285015260005b818110156113385785810183015185820160400152820161131c565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146107d557600080fd5b6000806040838503121561138157600080fd5b823561138c81611359565b946020939093013593505050565b6000806000606084860312156113af57600080fd5b83356113ba81611359565b925060208401356113ca81611359565b929592945050506040919091013590565b6000602082840312156113ed57600080fd5b813561112d81611359565b6000806040838503121561140b57600080fd5b823561141681611359565b9150602083013561142681611359565b809150509250929050565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111561148257816000190482111561146857611468611431565b8085161561147557918102915b93841c939080029061144c565b509250929050565b6000826114995750600161047d565b816114a65750600061047d565b81600181146114bc57600281146114c6576114e2565b600191505061047d565b60ff8411156114d7576114d7611431565b50506001821b61047d565b5060208310610133831016604e8410600b8410161715611505575081810a61047d565b61150f8383611447565b806000190482111561152357611523611431565b029392505050565b600061112d60ff84168361148a565b808202811582820484141761047d5761047d611431565b8181038181111561047d5761047d611431565b60008060006060848603121561157957600080fd5b8351925060208401519150604084015190509250925092565b6000826115af57634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561047d5761047d611431565b6000600182016115d9576115d9611431565b5060010190565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561160857600080fd5b815161112d81611359565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156116635784516001600160a01b03168352938301939183019160010161163e565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212206130fd77b9268e271858ad977083661fc941c652564c73f75d81bb4256c1100564736f6c63430008140033

Deployed Bytecode

0x6080604052600436106101445760003560e01c80637d1db4a5116100b6578063b941d3e01161006f578063b941d3e0146103a6578063bf474bed146103c6578063c9567bf9146103dc578063ce746024146103f1578063dd62ed3e14610406578063f2fde38b1461044c57600080fd5b80637d1db4a5146102ed5780638da5cb5b146103035780638f9a55c01461032157806395d89b4114610337578063a525306c14610366578063a9059cbb1461038657600080fd5b806323b872dd1161010857806323b872dd14610239578063313ce5671461025957806370a0823114610275578063715018a6146102ab578063751039fc146102c257806378e97925146102d757600080fd5b806305ea3ed51461015057806306fdde031461018d578063095ea7b3146101d05780630faee56f1461020057806318160ddd1461022457600080fd5b3661014b57005b600080fd5b34801561015c57600080fd5b50600454610170906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b34801561019957600080fd5b5060408051808201909152601181527042414e414e41204c50205354414b494e4760781b60208201525b604051610184919061130b565b3480156101dc57600080fd5b506101f06101eb36600461136e565b61046c565b6040519015158152602001610184565b34801561020c57600080fd5b5061021660135481565b604051908152602001610184565b34801561023057600080fd5b50610216610483565b34801561024557600080fd5b506101f061025436600461139a565b6104a4565b34801561026557600080fd5b5060405160128152602001610184565b34801561028157600080fd5b506102166102903660046113db565b6001600160a01b031660009081526001602052604090205490565b3480156102b757600080fd5b506102c06104f6565b005b3480156102ce57600080fd5b506102c061050a565b3480156102e357600080fd5b5061021660075481565b3480156102f957600080fd5b5061021660105481565b34801561030f57600080fd5b506000546001600160a01b0316610170565b34801561032d57600080fd5b5061021660115481565b34801561034357600080fd5b5060408051808201909152600681526542616e616e6160d01b60208201526101c3565b34801561037257600080fd5b506102c06103813660046113f8565b61059a565b34801561039257600080fd5b506101f06103a136600461136e565b6105d0565b3480156103b257600080fd5b50600554610170906001600160a01b031681565b3480156103d257600080fd5b5061021660125481565b3480156103e857600080fd5b506102c06105dd565b3480156103fd57600080fd5b506102c0610777565b34801561041257600080fd5b506102166104213660046113f8565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b34801561045857600080fd5b506102c06104673660046113db565b61079a565b60006104793384846107d8565b5060015b92915050565b60006104916012600a61152b565b61049f90633b9aca0061153a565b905090565b60006104b18484846108fc565b6001600160a01b0384166000908152600260209081526040808320338085529252909120546104ec9186916104e7908690611551565b6107d8565b5060019392505050565b6104fe611003565b6105086000611030565b565b610512611003565b61051e6012600a61152b565b61052c90633b9aca0061153a565b60105561053b6012600a61152b565b61054990633b9aca0061153a565b6011557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf6105796012600a61152b565b61058790633b9aca0061153a565b60405190815260200160405180910390a1565b6105a2611003565b600480546001600160a01b039384166001600160a01b03199182161790915560058054929093169116179055565b60006104793384846108fc565b6105e5611003565b601554600160a01b900460ff16156106445760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e00000000000000000060448201526064015b60405180910390fd5b6015805460ff60b01b1916600160b01b1790556014546106839030906001600160a01b03166106756012600a61152b565b6104e790633b9aca0061153a565b6014546001600160a01b031663f305d71947306106b5816001600160a01b031660009081526001602052604090205490565b6000806106ca6000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610732573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906107579190611564565b505042600755506015805460ff60a01b1916600160a01b17905543600655565b61077f611003565b6105086107946000546001600160a01b031690565b47611080565b6107a2611003565b6001600160a01b0381166107cc57604051631e4fbdf760e01b81526000600482015260240161063b565b6107d581611030565b50565b6001600160a01b03831661083a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161063b565b6001600160a01b03821661089b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161063b565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166109605760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161063b565b6001600160a01b0382166109c25760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161063b565b60008111610a245760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161063b565b60006016546002148015610a4657506000546001600160a01b03858116911614155b8015610a6057506000546001600160a01b03848116911614155b15610d7c576015546001600160a01b038581169116148015610a9057506014546001600160a01b03848116911614155b8015610ab557506001600160a01b03831660009081526003602052604090205460ff16155b15610bcc576064600c54600f5411610acf57600854610ad3565b600a545b610add908461153a565b610ae79190611592565b9050601054821115610b3b5760405162461bcd60e51b815260206004820152601960248201527f4578636565647320746865205f6d61785478416d6f756e742e00000000000000604482015260640161063b565b60115482610b5e856001600160a01b031660009081526001602052604090205490565b610b6891906115b4565b1115610bb65760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e000000000000604482015260640161063b565b600f8054906000610bc6836115c7565b91905055505b6015546001600160a01b03848116911614801590610c0357506001600160a01b03831660009081526003602052604090205460ff16155b15610c835760115482610c2b856001600160a01b031660009081526001602052604090205490565b610c3591906115b4565b1115610c835760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e000000000000604482015260640161063b565b6015546001600160a01b038481169116148015610ca957506001600160a01b0384163014155b15610cde576064600d54600f5411610cc357600954610cc7565b600b545b610cd1908461153a565b610cdb9190611592565b90505b30600090815260016020526040902054601554600160a81b900460ff16158015610d1557506015546001600160a01b038581169116145b8015610d2a5750601554600160b01b900460ff165b8015610d37575060125481115b8015610d465750600e54600f54115b15610d7a57610d68610d6384610d5e8460135461111c565b61111c565b611134565b478015610d7857610d78476112bd565b505b505b601554600160a01b900460ff16158015610da157506000546001600160a01b03163314155b15610ec6576064600d54600f5411610dbb57600954610dbf565b600b545b610dc9908461153a565b610dd39190611592565b30600090815260016020526040902054909150610df19082906115b4565b30600090815260016020526040808220929092556001600160a01b03861681522054610e1e908390611551565b6001600160a01b038516600090815260016020526040902055610e418183611551565b6001600160a01b038416600090815260016020526040902054610e6491906115b4565b6001600160a01b0380851660008181526001602052604090819020939093559151908616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610eb89086815260200190565b60405180910390a350505050565b8015610f415730600090815260016020526040902054610ee79082906115b4565b30600081815260016020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610f389085815260200190565b60405180910390a35b6001600160a01b038416600090815260016020526040902054610f65908390611551565b6001600160a01b038516600090815260016020526040902055610f888183611551565b6001600160a01b038416600090815260016020526040902054610fab91906115b4565b6001600160a01b0380851660008181526001602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef610ff58486611551565b604051908152602001610eb8565b6000546001600160a01b031633146105085760405163118cdaa760e01b815233600482015260240161063b565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b804710156110a35760405163cd78605960e01b815230600482015260240161063b565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146110f0576040519150601f19603f3d011682016040523d82523d6000602084013e6110f5565b606091505b505090508061111757604051630a12f52160e11b815260040160405180910390fd5b505050565b600081831161112b578261112d565b815b9392505050565b6015805460ff60a81b1916600160a81b179055604080516002808252606082018352600092602083019080368337019050509050308160008151811061117c5761117c6115e0565b6001600160a01b03928316602091820292909201810191909152601454604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156111d5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111f991906115f6565b8160018151811061120c5761120c6115e0565b6001600160a01b03928316602091820292909201015260145461123291309116846107d8565b6014546001600160a01b031663791ac947836000846112596000546001600160a01b031690565b426040518663ffffffff1660e01b815260040161127a959493929190611613565b600060405180830381600087803b15801561129457600080fd5b505af11580156112a8573d6000803e3d6000fd5b50506015805460ff60a81b1916905550505050565b6004546001600160a01b0316156112e4576004546112e4906001600160a01b031682611080565b6005546001600160a01b0316156107d5576005546107d5906001600160a01b031682611080565b600060208083528351808285015260005b818110156113385785810183015185820160400152820161131c565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146107d557600080fd5b6000806040838503121561138157600080fd5b823561138c81611359565b946020939093013593505050565b6000806000606084860312156113af57600080fd5b83356113ba81611359565b925060208401356113ca81611359565b929592945050506040919091013590565b6000602082840312156113ed57600080fd5b813561112d81611359565b6000806040838503121561140b57600080fd5b823561141681611359565b9150602083013561142681611359565b809150509250929050565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111561148257816000190482111561146857611468611431565b8085161561147557918102915b93841c939080029061144c565b509250929050565b6000826114995750600161047d565b816114a65750600061047d565b81600181146114bc57600281146114c6576114e2565b600191505061047d565b60ff8411156114d7576114d7611431565b50506001821b61047d565b5060208310610133831016604e8410600b8410161715611505575081810a61047d565b61150f8383611447565b806000190482111561152357611523611431565b029392505050565b600061112d60ff84168361148a565b808202811582820484141761047d5761047d611431565b8181038181111561047d5761047d611431565b60008060006060848603121561157957600080fd5b8351925060208401519150604084015190509250925092565b6000826115af57634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561047d5761047d611431565b6000600182016115d9576115d9611431565b5060010190565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561160857600080fd5b815161112d81611359565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156116635784516001600160a01b03168352938301939183019160010161163e565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212206130fd77b9268e271858ad977083661fc941c652564c73f75d81bb4256c1100564736f6c63430008140033

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.