ETH Price: $2,493.66 (-0.72%)

Token

mirave (RAVE)
 

Overview

Max Total Supply

10,000,000 RAVE

Holders

55

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
148,000 RAVE

Value
$0.00
0x519363701319f45c1173Db70852e22EFf1A3Df6A
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:
RAVE

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 10 : RAVE.sol
// SPDX-License-Identifier: MIT

/*
GET READY TO $RAVE 

UNTZ UNTZ UNTZ UNTZ UNTZ UNTZ

Web: https://mirave.xyz
Telegram: https://t.me/MIRAVECOIN
Twitter: https://twitter.com/MIRAVECOIN

⡆⣐⢕⢕⢕⢕⢕⢕⢕⢕⠅⢗⢕⢕⢕⢕⢕⢕⢕⠕⠕⢕⢕⢕⢕⢕⢕⢕⢕⢕
⢐⢕⢕⢕⢕⢕⣕⢕⢕⠕⠁⢕⢕⢕⢕⢕⢕⢕⢕⠅⡄⢕⢕⢕⢕⢕⢕⢕⢕⢕
⢕⢕⢕⢕⢕⠅⢗⢕⠕⣠⠄⣗⢕⢕⠕⢕⢕⢕⠕⢠⣿⠐⢕⢕⢕⠑⢕⢕⠵⢕
⢕⢕⢕⢕⠁⢜⠕⢁⣴⣿⡇⢓⢕⢵⢐⢕⢕⠕⢁⣾⢿⣧⠑⢕⢕⠄⢑⢕⠅⢕
⢕⢕⠵⢁⠔⢁⣤⣤⣶⣶⣶⡐⣕⢽⠐⢕⠕⣡⣾⣶⣶⣶⣤⡁⢓⢕⠄⢑⢅⢑
⠍⣧⠄⣶⣾⣿⣿⣿⣿⣿⣿⣷⣔⢕⢄⢡⣾⣿⣿⣿⣿⣿⣿⣿⣦⡑⢕⢤⠱⢐
⢠⢕⠅⣾⣿⠋⢿⣿⣿⣿⠉⣿⣿⣷⣦⣶⣽⣿⣿⠈⣿⣿⣿⣿⠏⢹⣷⣷⡅⢐
⣔⢕⢥⢻⣿⡀⠈⠛⠛⠁⢠⣿⣿⣿⣿⣿⣿⣿⣿⡀⠈⠛⠛⠁⠄⣼⣿⣿⡇⢔
⢕⢕⢽⢸⢟⢟⢖⢖⢤⣶⡟⢻⣿⡿⠻⣿⣿⡟⢀⣿⣦⢤⢤⢔⢞⢿⢿⣿⠁⢕
⢕⢕⠅⣐⢕⢕⢕⢕⢕⣿⣿⡄⠛⢀⣦⠈⠛⢁⣼⣿⢗⢕⢕⢕⢕⢕⢕⡏⣘⢕
⢕⢕⠅⢓⣕⣕⣕⣕⣵⣿⣿⣿⣾⣿⣿⣿⣿⣿⣿⣿⣷⣕⢕⢕⢕⢕⡵⢀⢕⢕
⢑⢕⠃⡈⢿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⢃⢕⢕⢕
⣆⢕⠄⢱⣄⠛⢿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠿⢁⢕⢕⠕⢁
⣿⣦⡀⣿⣿⣷⣶⣬⣍⣛⣛⣛⡛⠿⠿⠿⠛⠛⢛⣛⣉⣭⣤⣂⢜⠕⢑⣡⣴⣿
*/ 

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";
import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";

pragma solidity 0.8.20;

contract RAVE is ERC20("mirave", "RAVE"), Ownable {
    using Address for address payable;

    IUniswapV2Router02 public router;
    address public pair;

    bool private _liquidityMutex = false;
    bool private providingLiquidity = false;
    bool public tradingEnabled = false;

    uint256 private tokenLiquidityThreshold = 75_500 * 10 ** 18;
    uint256 public maxWalletLimit = 200_000 * 10 ** 18;

    uint256 private genesis_block;
    uint256 private deadline = 5;
    uint256 private launchtax = 26;
    address private marketingWallet;
    address private devWallet;

    struct Taxes {
        uint256 marketing;
        uint256 liquidity;
        uint256 dev;
    }

    Taxes public taxes = Taxes(3, 0, 0);
    Taxes public sellTaxes = Taxes(3, 0, 0);

    mapping(address => bool) public exemptFee;
    mapping(address => bool) private isearlybuyer;

    modifier mutexLock() {
        if (!_liquidityMutex) {
            _liquidityMutex = true;
            _;
            _liquidityMutex = false;
        }
    }

    constructor() {
        marketingWallet = msg.sender;
        devWallet = msg.sender;
        _mint(msg.sender, 100_000_00 * 10 ** 18);

        IUniswapV2Router02 _router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);  

        router = _router;
        exemptFee[address(this)] = true;
        exemptFee[msg.sender] = true;
        exemptFee[marketingWallet] = true;
        exemptFee[devWallet] = true;
        exemptFee[0x0000000000000000000000000000000000000000] = true;

        _approve(address(this), address(router), type(uint256).max);
    }

    function setPair(address pairAddress) external onlyOwner {
        pair = pairAddress;
    }

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

        uint256 currentAllowance = allowance(sender, _msgSender());
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance - amount);

        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue) public override returns (bool) {
        uint256 currentAllowance = allowance(_msgSender(), spender);
        _approve(_msgSender(), spender, currentAllowance + addedValue);
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) public override returns (bool) {
        uint256 currentAllowance = allowance(_msgSender(), spender);

        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        return true;
    }

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

    function _transfer(address sender, address recipient, uint256 amount) internal override {
        require(amount > 0, "Transfer amount must be greater than zero");
        require(!isearlybuyer[sender] && !isearlybuyer[recipient], "You can't transfer tokens");

        if (!exemptFee[sender] && !exemptFee[recipient]) {
            require(tradingEnabled, "Trading not enabled");
        }

        if (sender == pair && !exemptFee[recipient] && !_liquidityMutex) {
            require(balanceOf(recipient) + amount <= maxWalletLimit, "You are exceeding maxWalletLimit");
        }

        if (sender != pair && !exemptFee[recipient] && !exemptFee[sender] && !_liquidityMutex) {
            if (recipient != pair) {
                require(balanceOf(recipient) + amount <= maxWalletLimit, "You are exceeding maxWalletLimit");
            }
        }

        uint256 feeswap;
        uint256 feesum;
        uint256 fee;
        Taxes memory currentTaxes;

        bool useLaunchFee = !exemptFee[sender] &&
            !exemptFee[recipient] &&
            block.number < genesis_block + deadline;

        if (_liquidityMutex || exemptFee[sender] || exemptFee[recipient]) {
            fee = 0;
        } else if (recipient == pair && !useLaunchFee) {
            feeswap = sellTaxes.liquidity + sellTaxes.marketing + sellTaxes.dev;
            feesum = feeswap;
            currentTaxes = sellTaxes;
        } else if (!useLaunchFee) {
            feeswap = taxes.liquidity + taxes.marketing + taxes.dev;
            feesum = feeswap;
            currentTaxes = taxes;
        } else if (useLaunchFee) {
            feeswap = launchtax;
            feesum = launchtax;
        }

        fee = (amount * feesum) / 100;

        if (providingLiquidity && sender != pair) {
            handle_fees(feeswap, currentTaxes);
        }

        super._transfer(sender, recipient, amount - fee);
        if (fee > 0) {
            if (feeswap > 0) {
                uint256 feeAmount = (amount * feeswap) / 100;
                super._transfer(sender, address(this), feeAmount);
            }
        }
    }

    function handle_fees(uint256 feeswap, Taxes memory swapTaxes) private mutexLock {
        if (feeswap == 0) {
            return;
        }

        uint256 contractBalance = balanceOf(address(this));
        if (contractBalance >= tokenLiquidityThreshold) {
            if (tokenLiquidityThreshold > 1) {
                contractBalance = tokenLiquidityThreshold;
            }

            uint256 denominator = feeswap * 2;
            uint256 tokensToAddLiquidityWith = (contractBalance *
                swapTaxes.liquidity) / denominator;
            uint256 toSwap = contractBalance - tokensToAddLiquidityWith;

            uint256 initialBalance = address(this).balance;

            swapTokensForETH(toSwap);

            uint256 deltaBalance = address(this).balance - initialBalance;
            uint256 unitBalance = deltaBalance /
                (denominator - swapTaxes.liquidity);
            uint256 ethToAddLiquidityWith = unitBalance * swapTaxes.liquidity;

            if (ethToAddLiquidityWith > 0) {
                addLiquidity(tokensToAddLiquidityWith, ethToAddLiquidityWith);
            }

            uint256 marketingAmt = unitBalance * 2 * swapTaxes.marketing;
            if (marketingAmt > 0) {
                payable(marketingWallet).sendValue(marketingAmt);
            }

            uint256 devAmt = unitBalance * 2 * swapTaxes.dev;
            if (devAmt > 0) {
                payable(devWallet).sendValue(devAmt);
            }
        }
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        router.addLiquidityETH { value: ethAmount } (address(this), tokenAmount, 0, 0, devWallet, block.timestamp);
    }

    function swapTokensForETH(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = router.WETH();

        router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount, 0, path, address(this), block.timestamp);
    }

    function updateLiquidityProvide(bool state) external onlyOwner {
        providingLiquidity = state;
    }

    function updateLiquidityTreshhold(uint256 new_amount) external onlyOwner {
        tokenLiquidityThreshold = new_amount * 10 ** decimals();
    }

    function UpdateBuyTaxes(uint256 _marketing, uint256 _liquidity, uint256 _dev) external onlyOwner {
        taxes = Taxes(_marketing, _liquidity, _dev);
    }

    function SetSellTaxes(uint256 _marketing, uint256 _liquidity, uint256 _dev) external onlyOwner {
        sellTaxes = Taxes(_marketing, _liquidity, _dev);
    }

    function enableTrading() external onlyOwner {
        require(!tradingEnabled, "Trading is already enabled");
        tradingEnabled = true;
        providingLiquidity = true;
        genesis_block = block.number;
    }

    function updateExemptFee(address _address, bool state) external onlyOwner {
        exemptFee[_address] = state;
    }

    function updateMaxWalletLimit(uint256 maxWallet) external onlyOwner {
        maxWalletLimit = maxWallet * 10 ** decimals();
    }

    function rescueETH(uint256 weiAmount) external {
        payable(devWallet).transfer(weiAmount);
    }

    function rescueERC20(address tokenAdd, uint256 amount) external {
        IERC20(tokenAdd).transfer(devWallet, amount);
    }

    receive() external payable {}
}

File 2 of 10 : IUniswapV2Router02.sol
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

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

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

File 3 of 10 : IUniswapV2Factory.sol
pragma solidity >=0.5.0;

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

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

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

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

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

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 7 of 10 : IUniswapV2Router01.sol
pragma solidity >=0.6.2;

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

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

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

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"_marketing","type":"uint256"},{"internalType":"uint256","name":"_liquidity","type":"uint256"},{"internalType":"uint256","name":"_dev","type":"uint256"}],"name":"SetSellTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketing","type":"uint256"},{"internalType":"uint256","name":"_liquidity","type":"uint256"},{"internalType":"uint256","name":"_dev","type":"uint256"}],"name":"UpdateBuyTaxes","outputs":[],"stateMutability":"nonpayable","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":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"exemptFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxWalletLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAdd","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"rescueERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"weiAmount","type":"uint256"}],"name":"rescueETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTaxes","outputs":[{"internalType":"uint256","name":"marketing","type":"uint256"},{"internalType":"uint256","name":"liquidity","type":"uint256"},{"internalType":"uint256","name":"dev","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pairAddress","type":"address"}],"name":"setPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxes","outputs":[{"internalType":"uint256","name":"marketing","type":"uint256"},{"internalType":"uint256","name":"liquidity","type":"uint256"},{"internalType":"uint256","name":"dev","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"state","type":"bool"}],"name":"updateExemptFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"updateLiquidityProvide","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"new_amount","type":"uint256"}],"name":"updateLiquidityTreshhold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxWallet","type":"uint256"}],"name":"updateMaxWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040525f600760146101000a81548160ff0219169083151502179055505f600760156101000a81548160ff0219169083151502179055505f600760166101000a81548160ff021916908315150217905550690ffcdcfabfdb28300000600855692a5a058fc295ed0000006009556005600b55601a600c556040518060600160405280600381526020015f81526020015f815250600f5f820151815f0155602082015181600101556040820151816002015550506040518060600160405280600381526020015f81526020015f81525060125f820151815f015560208201518160010155604082015181600201555050348015620000fc575f80fd5b506040518060400160405280600681526020017f6d697261766500000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f524156450000000000000000000000000000000000000000000000000000000081525081600390816200017a919062000b52565b5080600490816200018c919062000b52565b505050620001af620001a3620004ea60201b60201c565b620004f160201b60201c565b33600d5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033600e5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200024c336a084595161401484a000000620005b460201b60201c565b5f737a250d5630b4cf539739df2c5dacb4c659f2488d90508060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160155f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160155f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160155f600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160155f600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160155f8073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550620004e33060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6200071960201b60201c565b5062000e6f565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000625576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200061c9062000c94565b60405180910390fd5b620006385f8383620008e460201b60201c565b8060025f8282546200064b919062000ce1565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620006fa919062000d2c565b60405180910390a3620007155f8383620008e960201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200078a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007819062000dbb565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620007fb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007f29062000e4f565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051620008d7919062000d2c565b60405180910390a3505050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200096a57607f821691505b60208210810362000980576200097f62000925565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620009e47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620009a7565b620009f08683620009a7565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000a3a62000a3462000a2e8462000a08565b62000a11565b62000a08565b9050919050565b5f819050919050565b62000a558362000a1a565b62000a6d62000a648262000a41565b848454620009b3565b825550505050565b5f90565b62000a8362000a75565b62000a9081848462000a4a565b505050565b5b8181101562000ab75762000aab5f8262000a79565b60018101905062000a96565b5050565b601f82111562000b065762000ad08162000986565b62000adb8462000998565b8101602085101562000aeb578190505b62000b0362000afa8562000998565b83018262000a95565b50505b505050565b5f82821c905092915050565b5f62000b285f198460080262000b0b565b1980831691505092915050565b5f62000b42838362000b17565b9150826002028217905092915050565b62000b5d82620008ee565b67ffffffffffffffff81111562000b795762000b78620008f8565b5b62000b85825462000952565b62000b9282828562000abb565b5f60209050601f83116001811462000bc8575f841562000bb3578287015190505b62000bbf858262000b35565b86555062000c2e565b601f19841662000bd88662000986565b5f5b8281101562000c015784890151825560018201915060208501945060208101905062000bda565b8683101562000c21578489015162000c1d601f89168262000b17565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000c7c601f8362000c36565b915062000c898262000c46565b602082019050919050565b5f6020820190508181035f83015262000cad8162000c6e565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000ced8262000a08565b915062000cfa8362000a08565b925082820190508082111562000d155762000d1462000cb4565b5b92915050565b62000d268162000a08565b82525050565b5f60208201905062000d415f83018462000d1b565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f62000da360248362000c36565b915062000db08262000d47565b604082019050919050565b5f6020820190508181035f83015262000dd48162000d95565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f62000e3760228362000c36565b915062000e448262000ddb565b604082019050919050565b5f6020820190508181035f83015262000e688162000e29565b9050919050565b6136b68062000e7d5f395ff3fe6080604052600436106101db575f3560e01c8063728f8eea11610101578063a457c2d711610094578063dd62ed3e11610063578063dd62ed3e1461069a578063f2fde38b146106d6578063f66895a3146106fe578063f887ea401461072a576101e2565b8063a457c2d7146105bc578063a8aa1b31146105f8578063a9059cbb14610622578063c5d32bb21461065e576101e2565b80638da5cb5b116100d05780638da5cb5b1461051857806395d89b41146105425780639d282cd61461056c5780639e252f0014610594576101e2565b8063728f8eea146104865780638187f516146104b25780638a8c523c146104da5780638cd4426d146104f0576101e2565b806339509351116101795780634e736f22116101485780634e736f22146103e257806366a88d961461040a57806370a0823114610434578063715018a614610470576101e2565b8063395093511461032c57806342b6fa11146103685780634324deae146103905780634ada218b146103b8576101e2565b806318160ddd116101b557806318160ddd1461027457806323b872dd1461029e578063313ce567146102da578063355496ca14610304576101e2565b806306fdde03146101e6578063095ea7b3146102105780631340538f1461024c576101e2565b366101e257005b5f80fd5b3480156101f1575f80fd5b506101fa610754565b604051610207919061241c565b60405180910390f35b34801561021b575f80fd5b50610236600480360381019061023191906124cd565b6107e4565b6040516102439190612525565b60405180910390f35b348015610257575f80fd5b50610272600480360381019061026d9190612568565b610801565b005b34801561027f575f80fd5b50610288610826565b60405161029591906125a2565b60405180910390f35b3480156102a9575f80fd5b506102c460048036038101906102bf91906125bb565b61082f565b6040516102d19190612525565b60405180910390f35b3480156102e5575f80fd5b506102ee6108bb565b6040516102fb9190612626565b60405180910390f35b34801561030f575f80fd5b5061032a6004803603810190610325919061263f565b6108c3565b005b348015610337575f80fd5b50610352600480360381019061034d91906124cd565b610923565b60405161035f9190612525565b60405180910390f35b348015610373575f80fd5b5061038e6004803603810190610389919061267d565b610960565b005b34801561039b575f80fd5b506103b660048036038101906103b1919061267d565b610990565b005b3480156103c3575f80fd5b506103cc6109c0565b6040516103d99190612525565b60405180910390f35b3480156103ed575f80fd5b50610408600480360381019061040391906126a8565b6109d3565b005b348015610415575f80fd5b5061041e610a1c565b60405161042b91906125a2565b60405180910390f35b34801561043f575f80fd5b5061045a600480360381019061045591906126f8565b610a22565b60405161046791906125a2565b60405180910390f35b34801561047b575f80fd5b50610484610a67565b005b348015610491575f80fd5b5061049a610a7a565b6040516104a993929190612723565b60405180910390f35b3480156104bd575f80fd5b506104d860048036038101906104d391906126f8565b610a91565b005b3480156104e5575f80fd5b506104ee610adc565b005b3480156104fb575f80fd5b50610516600480360381019061051191906124cd565b610b73565b005b348015610523575f80fd5b5061052c610c14565b6040516105399190612767565b60405180910390f35b34801561054d575f80fd5b50610556610c3c565b604051610563919061241c565b60405180910390f35b348015610577575f80fd5b50610592600480360381019061058d91906126a8565b610ccc565b005b34801561059f575f80fd5b506105ba60048036038101906105b5919061267d565b610d15565b005b3480156105c7575f80fd5b506105e260048036038101906105dd91906124cd565b610d7d565b6040516105ef9190612525565b60405180910390f35b348015610603575f80fd5b5061060c610dfd565b6040516106199190612767565b60405180910390f35b34801561062d575f80fd5b50610648600480360381019061064391906124cd565b610e22565b6040516106559190612525565b60405180910390f35b348015610669575f80fd5b50610684600480360381019061067f91906126f8565b610e38565b6040516106919190612525565b60405180910390f35b3480156106a5575f80fd5b506106c060048036038101906106bb9190612780565b610e55565b6040516106cd91906125a2565b60405180910390f35b3480156106e1575f80fd5b506106fc60048036038101906106f791906126f8565b610ed7565b005b348015610709575f80fd5b50610712610f59565b60405161072193929190612723565b60405180910390f35b348015610735575f80fd5b5061073e610f70565b60405161074b9190612819565b60405180910390f35b6060600380546107639061285f565b80601f016020809104026020016040519081016040528092919081815260200182805461078f9061285f565b80156107da5780601f106107b1576101008083540402835291602001916107da565b820191905f5260205f20905b8154815290600101906020018083116107bd57829003601f168201915b5050505050905090565b5f6107f76107f0610f95565b8484610f9c565b6001905092915050565b61080961115f565b80600760156101000a81548160ff02191690831515021790555050565b5f600254905090565b5f61083b8484846111dd565b5f61084d85610848610f95565b610e55565b905082811015610892576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610889906128ff565b60405180910390fd5b6108af8561089e610f95565b85846108aa919061294a565b610f9c565b60019150509392505050565b5f6012905090565b6108cb61115f565b8060155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f80610936610930610f95565b85610e55565b9050610955610943610f95565b858584610950919061297d565b610f9c565b600191505092915050565b61096861115f565b6109706108bb565b600a61097c9190612adf565b816109879190612b29565b60088190555050565b61099861115f565b6109a06108bb565b600a6109ac9190612adf565b816109b79190612b29565b60098190555050565b600760169054906101000a900460ff1681565b6109db61115f565b60405180606001604052808481526020018381526020018281525060125f820151815f01556020820151816001015560408201518160020155905050505050565b60095481565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610a6f61115f565b610a785f611a6b565b565b600f805f0154908060010154908060020154905083565b610a9961115f565b8060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610ae461115f565b600760169054906101000a900460ff1615610b34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2b90612bb4565b60405180910390fd5b6001600760166101000a81548160ff0219169083151502179055506001600760156101000a81548160ff02191690831515021790555043600a81905550565b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401610bcf929190612bd2565b6020604051808303815f875af1158015610beb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c0f9190612c0d565b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610c4b9061285f565b80601f0160208091040260200160405190810160405280929190818152602001828054610c779061285f565b8015610cc25780601f10610c9957610100808354040283529160200191610cc2565b820191905f5260205f20905b815481529060010190602001808311610ca557829003601f168201915b5050505050905090565b610cd461115f565b604051806060016040528084815260200183815260200182815250600f5f820151815f01556020820151816001015560408201518160020155905050505050565b600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015610d79573d5f803e3d5ffd5b5050565b5f80610d90610d8a610f95565b85610e55565b905082811015610dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcc90612ca8565b60405180910390fd5b610df2610de0610f95565b858584610ded919061294a565b610f9c565b600191505092915050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f610e2e3384846111dd565b6001905092915050565b6015602052805f5260405f205f915054906101000a900460ff1681565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610edf61115f565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4490612d36565b60405180910390fd5b610f5681611a6b565b50565b6012805f0154908060010154908060020154905083565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361100a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100190612dc4565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611078576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106f90612e52565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161115291906125a2565b60405180910390a3505050565b611167610f95565b73ffffffffffffffffffffffffffffffffffffffff16611185610c14565b73ffffffffffffffffffffffffffffffffffffffff16146111db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d290612eba565b60405180910390fd5b565b5f811161121f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121690612f48565b60405180910390fd5b60165f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156112bd575060165f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b6112fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f390612fb0565b60405180910390fd5b60155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615801561139a575060155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156113ef57600760169054906101000a900460ff166113ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e590613018565b60405180910390fd5b5b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148015611492575060155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156114ab5750600760149054906101000a900460ff16155b1561150957600954816114bd84610a22565b6114c7919061297d565b1115611508576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ff90613080565b60405180910390fd5b5b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156115ad575060155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611600575060155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156116195750600760149054906101000a900460ff16155b156116cc5760075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146116cb576009548161167f84610a22565b611689919061297d565b11156116ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c190613080565b60405180910390fd5b5b5b5f805f6116d7612374565b5f60155f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015611776575060155f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156117905750600b54600a5461178d919061297d565b43105b9050600760149054906101000a900460ff16806117f3575060155f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b80611844575060155f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15611851575f925061197f565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff161480156118ab575080155b1561190b5760126002015460125f01546012600101546118cb919061297d565b6118d5919061297d565b945084935060126040518060600160405290815f820154815260200160018201548152602001600282015481525050915061197e565b8061196b57600f60020154600f5f0154600f6001015461192b919061297d565b611935919061297d565b9450849350600f6040518060600160405290815f820154815260200160018201548152602001600282015481525050915061197d565b801561197c57600c549450600c5493505b5b5b5b6064848761198d9190612b29565b61199791906130cb565b9250600760159054906101000a900460ff168015611a02575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614155b15611a1257611a118583611b2e565b5b611a2888888589611a23919061294a565b611d36565b5f831115611a61575f851115611a60575f60648688611a479190612b29565b611a5191906130cb565b9050611a5e893083611d36565b505b5b5050505050505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600760149054906101000a900460ff16611d32576001600760146101000a81548160ff0219169083151502179055505f820315611d17575f611b6f30610a22565b90506008548110611d155760016008541115611b8b5760085490505b5f600284611b999190612b29565b90505f81846020015184611bad9190612b29565b611bb791906130cb565b90505f8184611bc6919061294a565b90505f479050611bd582611fa2565b5f8147611be2919061294a565b90505f876020015186611bf5919061294a565b82611c0091906130cb565b90505f886020015182611c139190612b29565b90505f811115611c2857611c2786826121ac565b5b5f895f0151600284611c3a9190612b29565b611c449190612b29565b90505f811115611c9957611c9881600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661227a90919063ffffffff16565b5b5f8a60400151600285611cac9190612b29565b611cb69190612b29565b90505f811115611d0b57611d0a81600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661227a90919063ffffffff16565b5b5050505050505050505b505b5f600760146101000a81548160ff0219169083151502179055505b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611da4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9b9061316b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e09906131f9565b60405180910390fd5b611e1d83838361236a565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611ea0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9790613287565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611f8991906125a2565b60405180910390a3611f9c84848461236f565b50505050565b5f600267ffffffffffffffff811115611fbe57611fbd6132a5565b5b604051908082528060200260200182016040528015611fec5781602001602082028036833780820191505090505b50905030815f81518110612003576120026132d2565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156120a7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120cb9190613313565b816001815181106120df576120de6132d2565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b815260040161217b95949392919061342e565b5f604051808303815f87803b158015612192575f80fd5b505af11580156121a4573d5f803e3d5ffd5b505050505050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f80600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161223296959493929190613486565b60606040518083038185885af115801561224e573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061227391906134f9565b5050505050565b804710156122bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b490613593565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff16826040516122e2906135de565b5f6040518083038185875af1925050503d805f811461231c576040519150601f19603f3d011682016040523d82523d5f602084013e612321565b606091505b5050905080612365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235c90613662565b60405180910390fd5b505050565b505050565b505050565b60405180606001604052805f81526020015f81526020015f81525090565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156123c95780820151818401526020810190506123ae565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6123ee82612392565b6123f8818561239c565b93506124088185602086016123ac565b612411816123d4565b840191505092915050565b5f6020820190508181035f83015261243481846123e4565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61246982612440565b9050919050565b6124798161245f565b8114612483575f80fd5b50565b5f8135905061249481612470565b92915050565b5f819050919050565b6124ac8161249a565b81146124b6575f80fd5b50565b5f813590506124c7816124a3565b92915050565b5f80604083850312156124e3576124e261243c565b5b5f6124f085828601612486565b9250506020612501858286016124b9565b9150509250929050565b5f8115159050919050565b61251f8161250b565b82525050565b5f6020820190506125385f830184612516565b92915050565b6125478161250b565b8114612551575f80fd5b50565b5f813590506125628161253e565b92915050565b5f6020828403121561257d5761257c61243c565b5b5f61258a84828501612554565b91505092915050565b61259c8161249a565b82525050565b5f6020820190506125b55f830184612593565b92915050565b5f805f606084860312156125d2576125d161243c565b5b5f6125df86828701612486565b93505060206125f086828701612486565b9250506040612601868287016124b9565b9150509250925092565b5f60ff82169050919050565b6126208161260b565b82525050565b5f6020820190506126395f830184612617565b92915050565b5f80604083850312156126555761265461243c565b5b5f61266285828601612486565b925050602061267385828601612554565b9150509250929050565b5f602082840312156126925761269161243c565b5b5f61269f848285016124b9565b91505092915050565b5f805f606084860312156126bf576126be61243c565b5b5f6126cc868287016124b9565b93505060206126dd868287016124b9565b92505060406126ee868287016124b9565b9150509250925092565b5f6020828403121561270d5761270c61243c565b5b5f61271a84828501612486565b91505092915050565b5f6060820190506127365f830186612593565b6127436020830185612593565b6127506040830184612593565b949350505050565b6127618161245f565b82525050565b5f60208201905061277a5f830184612758565b92915050565b5f80604083850312156127965761279561243c565b5b5f6127a385828601612486565b92505060206127b485828601612486565b9150509250929050565b5f819050919050565b5f6127e16127dc6127d784612440565b6127be565b612440565b9050919050565b5f6127f2826127c7565b9050919050565b5f612803826127e8565b9050919050565b612813816127f9565b82525050565b5f60208201905061282c5f83018461280a565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061287657607f821691505b60208210810361288957612888612832565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f6128e960288361239c565b91506128f48261288f565b604082019050919050565b5f6020820190508181035f830152612916816128dd565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6129548261249a565b915061295f8361249a565b92508282039050818111156129775761297661291d565b5b92915050565b5f6129878261249a565b91506129928361249a565b92508282019050808211156129aa576129a961291d565b5b92915050565b5f8160011c9050919050565b5f808291508390505b6001851115612a05578086048111156129e1576129e061291d565b5b60018516156129f05780820291505b80810290506129fe856129b0565b94506129c5565b94509492505050565b5f82612a1d5760019050612ad8565b81612a2a575f9050612ad8565b8160018114612a405760028114612a4a57612a79565b6001915050612ad8565b60ff841115612a5c57612a5b61291d565b5b8360020a915084821115612a7357612a7261291d565b5b50612ad8565b5060208310610133831016604e8410600b8410161715612aae5782820a905083811115612aa957612aa861291d565b5b612ad8565b612abb84848460016129bc565b92509050818404811115612ad257612ad161291d565b5b81810290505b9392505050565b5f612ae98261249a565b9150612af48361260b565b9250612b217fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484612a0e565b905092915050565b5f612b338261249a565b9150612b3e8361249a565b9250828202612b4c8161249a565b91508282048414831517612b6357612b6261291d565b5b5092915050565b7f54726164696e6720697320616c726561647920656e61626c65640000000000005f82015250565b5f612b9e601a8361239c565b9150612ba982612b6a565b602082019050919050565b5f6020820190508181035f830152612bcb81612b92565b9050919050565b5f604082019050612be55f830185612758565b612bf26020830184612593565b9392505050565b5f81519050612c078161253e565b92915050565b5f60208284031215612c2257612c2161243c565b5b5f612c2f84828501612bf9565b91505092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612c9260258361239c565b9150612c9d82612c38565b604082019050919050565b5f6020820190508181035f830152612cbf81612c86565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612d2060268361239c565b9150612d2b82612cc6565b604082019050919050565b5f6020820190508181035f830152612d4d81612d14565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612dae60248361239c565b9150612db982612d54565b604082019050919050565b5f6020820190508181035f830152612ddb81612da2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f612e3c60228361239c565b9150612e4782612de2565b604082019050919050565b5f6020820190508181035f830152612e6981612e30565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612ea460208361239c565b9150612eaf82612e70565b602082019050919050565b5f6020820190508181035f830152612ed181612e98565b9050919050565b7f5472616e7366657220616d6f756e74206d7573742062652067726561746572205f8201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b5f612f3260298361239c565b9150612f3d82612ed8565b604082019050919050565b5f6020820190508181035f830152612f5f81612f26565b9050919050565b7f596f752063616e2774207472616e7366657220746f6b656e73000000000000005f82015250565b5f612f9a60198361239c565b9150612fa582612f66565b602082019050919050565b5f6020820190508181035f830152612fc781612f8e565b9050919050565b7f54726164696e67206e6f7420656e61626c6564000000000000000000000000005f82015250565b5f61300260138361239c565b915061300d82612fce565b602082019050919050565b5f6020820190508181035f83015261302f81612ff6565b9050919050565b7f596f752061726520657863656564696e67206d617857616c6c65744c696d69745f82015250565b5f61306a60208361239c565b915061307582613036565b602082019050919050565b5f6020820190508181035f8301526130978161305e565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6130d58261249a565b91506130e08361249a565b9250826130f0576130ef61309e565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61315560258361239c565b9150613160826130fb565b604082019050919050565b5f6020820190508181035f83015261318281613149565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6131e360238361239c565b91506131ee82613189565b604082019050919050565b5f6020820190508181035f830152613210816131d7565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f61327160268361239c565b915061327c82613217565b604082019050919050565b5f6020820190508181035f83015261329e81613265565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f8151905061330d81612470565b92915050565b5f602082840312156133285761332761243c565b5b5f613335848285016132ff565b91505092915050565b5f819050919050565b5f61336161335c6133578461333e565b6127be565b61249a565b9050919050565b61337181613347565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6133a98161245f565b82525050565b5f6133ba83836133a0565b60208301905092915050565b5f602082019050919050565b5f6133dc82613377565b6133e68185613381565b93506133f183613391565b805f5b8381101561342157815161340888826133af565b9750613413836133c6565b9250506001810190506133f4565b5085935050505092915050565b5f60a0820190506134415f830188612593565b61344e6020830187613368565b818103604083015261346081866133d2565b905061346f6060830185612758565b61347c6080830184612593565b9695505050505050565b5f60c0820190506134995f830189612758565b6134a66020830188612593565b6134b36040830187613368565b6134c06060830186613368565b6134cd6080830185612758565b6134da60a0830184612593565b979650505050505050565b5f815190506134f3816124a3565b92915050565b5f805f606084860312156135105761350f61243c565b5b5f61351d868287016134e5565b935050602061352e868287016134e5565b925050604061353f868287016134e5565b9150509250925092565b7f416464726573733a20696e73756666696369656e742062616c616e63650000005f82015250565b5f61357d601d8361239c565b915061358882613549565b602082019050919050565b5f6020820190508181035f8301526135aa81613571565b9050919050565b5f81905092915050565b50565b5f6135c95f836135b1565b91506135d4826135bb565b5f82019050919050565b5f6135e8826135be565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c20725f8201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b5f61364c603a8361239c565b9150613657826135f2565b604082019050919050565b5f6020820190508181035f83015261367981613640565b905091905056fea2646970667358221220b87d2b7f48b7794e2c1fdae49f61c4c093765a654626821d7f1c7dbe0440aaba64736f6c63430008140033

Deployed Bytecode

0x6080604052600436106101db575f3560e01c8063728f8eea11610101578063a457c2d711610094578063dd62ed3e11610063578063dd62ed3e1461069a578063f2fde38b146106d6578063f66895a3146106fe578063f887ea401461072a576101e2565b8063a457c2d7146105bc578063a8aa1b31146105f8578063a9059cbb14610622578063c5d32bb21461065e576101e2565b80638da5cb5b116100d05780638da5cb5b1461051857806395d89b41146105425780639d282cd61461056c5780639e252f0014610594576101e2565b8063728f8eea146104865780638187f516146104b25780638a8c523c146104da5780638cd4426d146104f0576101e2565b806339509351116101795780634e736f22116101485780634e736f22146103e257806366a88d961461040a57806370a0823114610434578063715018a614610470576101e2565b8063395093511461032c57806342b6fa11146103685780634324deae146103905780634ada218b146103b8576101e2565b806318160ddd116101b557806318160ddd1461027457806323b872dd1461029e578063313ce567146102da578063355496ca14610304576101e2565b806306fdde03146101e6578063095ea7b3146102105780631340538f1461024c576101e2565b366101e257005b5f80fd5b3480156101f1575f80fd5b506101fa610754565b604051610207919061241c565b60405180910390f35b34801561021b575f80fd5b50610236600480360381019061023191906124cd565b6107e4565b6040516102439190612525565b60405180910390f35b348015610257575f80fd5b50610272600480360381019061026d9190612568565b610801565b005b34801561027f575f80fd5b50610288610826565b60405161029591906125a2565b60405180910390f35b3480156102a9575f80fd5b506102c460048036038101906102bf91906125bb565b61082f565b6040516102d19190612525565b60405180910390f35b3480156102e5575f80fd5b506102ee6108bb565b6040516102fb9190612626565b60405180910390f35b34801561030f575f80fd5b5061032a6004803603810190610325919061263f565b6108c3565b005b348015610337575f80fd5b50610352600480360381019061034d91906124cd565b610923565b60405161035f9190612525565b60405180910390f35b348015610373575f80fd5b5061038e6004803603810190610389919061267d565b610960565b005b34801561039b575f80fd5b506103b660048036038101906103b1919061267d565b610990565b005b3480156103c3575f80fd5b506103cc6109c0565b6040516103d99190612525565b60405180910390f35b3480156103ed575f80fd5b50610408600480360381019061040391906126a8565b6109d3565b005b348015610415575f80fd5b5061041e610a1c565b60405161042b91906125a2565b60405180910390f35b34801561043f575f80fd5b5061045a600480360381019061045591906126f8565b610a22565b60405161046791906125a2565b60405180910390f35b34801561047b575f80fd5b50610484610a67565b005b348015610491575f80fd5b5061049a610a7a565b6040516104a993929190612723565b60405180910390f35b3480156104bd575f80fd5b506104d860048036038101906104d391906126f8565b610a91565b005b3480156104e5575f80fd5b506104ee610adc565b005b3480156104fb575f80fd5b50610516600480360381019061051191906124cd565b610b73565b005b348015610523575f80fd5b5061052c610c14565b6040516105399190612767565b60405180910390f35b34801561054d575f80fd5b50610556610c3c565b604051610563919061241c565b60405180910390f35b348015610577575f80fd5b50610592600480360381019061058d91906126a8565b610ccc565b005b34801561059f575f80fd5b506105ba60048036038101906105b5919061267d565b610d15565b005b3480156105c7575f80fd5b506105e260048036038101906105dd91906124cd565b610d7d565b6040516105ef9190612525565b60405180910390f35b348015610603575f80fd5b5061060c610dfd565b6040516106199190612767565b60405180910390f35b34801561062d575f80fd5b50610648600480360381019061064391906124cd565b610e22565b6040516106559190612525565b60405180910390f35b348015610669575f80fd5b50610684600480360381019061067f91906126f8565b610e38565b6040516106919190612525565b60405180910390f35b3480156106a5575f80fd5b506106c060048036038101906106bb9190612780565b610e55565b6040516106cd91906125a2565b60405180910390f35b3480156106e1575f80fd5b506106fc60048036038101906106f791906126f8565b610ed7565b005b348015610709575f80fd5b50610712610f59565b60405161072193929190612723565b60405180910390f35b348015610735575f80fd5b5061073e610f70565b60405161074b9190612819565b60405180910390f35b6060600380546107639061285f565b80601f016020809104026020016040519081016040528092919081815260200182805461078f9061285f565b80156107da5780601f106107b1576101008083540402835291602001916107da565b820191905f5260205f20905b8154815290600101906020018083116107bd57829003601f168201915b5050505050905090565b5f6107f76107f0610f95565b8484610f9c565b6001905092915050565b61080961115f565b80600760156101000a81548160ff02191690831515021790555050565b5f600254905090565b5f61083b8484846111dd565b5f61084d85610848610f95565b610e55565b905082811015610892576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610889906128ff565b60405180910390fd5b6108af8561089e610f95565b85846108aa919061294a565b610f9c565b60019150509392505050565b5f6012905090565b6108cb61115f565b8060155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f80610936610930610f95565b85610e55565b9050610955610943610f95565b858584610950919061297d565b610f9c565b600191505092915050565b61096861115f565b6109706108bb565b600a61097c9190612adf565b816109879190612b29565b60088190555050565b61099861115f565b6109a06108bb565b600a6109ac9190612adf565b816109b79190612b29565b60098190555050565b600760169054906101000a900460ff1681565b6109db61115f565b60405180606001604052808481526020018381526020018281525060125f820151815f01556020820151816001015560408201518160020155905050505050565b60095481565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610a6f61115f565b610a785f611a6b565b565b600f805f0154908060010154908060020154905083565b610a9961115f565b8060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610ae461115f565b600760169054906101000a900460ff1615610b34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2b90612bb4565b60405180910390fd5b6001600760166101000a81548160ff0219169083151502179055506001600760156101000a81548160ff02191690831515021790555043600a81905550565b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401610bcf929190612bd2565b6020604051808303815f875af1158015610beb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c0f9190612c0d565b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610c4b9061285f565b80601f0160208091040260200160405190810160405280929190818152602001828054610c779061285f565b8015610cc25780601f10610c9957610100808354040283529160200191610cc2565b820191905f5260205f20905b815481529060010190602001808311610ca557829003601f168201915b5050505050905090565b610cd461115f565b604051806060016040528084815260200183815260200182815250600f5f820151815f01556020820151816001015560408201518160020155905050505050565b600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015610d79573d5f803e3d5ffd5b5050565b5f80610d90610d8a610f95565b85610e55565b905082811015610dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcc90612ca8565b60405180910390fd5b610df2610de0610f95565b858584610ded919061294a565b610f9c565b600191505092915050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f610e2e3384846111dd565b6001905092915050565b6015602052805f5260405f205f915054906101000a900460ff1681565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610edf61115f565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4490612d36565b60405180910390fd5b610f5681611a6b565b50565b6012805f0154908060010154908060020154905083565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361100a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100190612dc4565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611078576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106f90612e52565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161115291906125a2565b60405180910390a3505050565b611167610f95565b73ffffffffffffffffffffffffffffffffffffffff16611185610c14565b73ffffffffffffffffffffffffffffffffffffffff16146111db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d290612eba565b60405180910390fd5b565b5f811161121f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121690612f48565b60405180910390fd5b60165f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156112bd575060165f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b6112fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f390612fb0565b60405180910390fd5b60155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615801561139a575060155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156113ef57600760169054906101000a900460ff166113ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e590613018565b60405180910390fd5b5b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148015611492575060155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156114ab5750600760149054906101000a900460ff16155b1561150957600954816114bd84610a22565b6114c7919061297d565b1115611508576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ff90613080565b60405180910390fd5b5b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156115ad575060155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611600575060155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156116195750600760149054906101000a900460ff16155b156116cc5760075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146116cb576009548161167f84610a22565b611689919061297d565b11156116ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c190613080565b60405180910390fd5b5b5b5f805f6116d7612374565b5f60155f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015611776575060155f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156117905750600b54600a5461178d919061297d565b43105b9050600760149054906101000a900460ff16806117f3575060155f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b80611844575060155f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15611851575f925061197f565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff161480156118ab575080155b1561190b5760126002015460125f01546012600101546118cb919061297d565b6118d5919061297d565b945084935060126040518060600160405290815f820154815260200160018201548152602001600282015481525050915061197e565b8061196b57600f60020154600f5f0154600f6001015461192b919061297d565b611935919061297d565b9450849350600f6040518060600160405290815f820154815260200160018201548152602001600282015481525050915061197d565b801561197c57600c549450600c5493505b5b5b5b6064848761198d9190612b29565b61199791906130cb565b9250600760159054906101000a900460ff168015611a02575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614155b15611a1257611a118583611b2e565b5b611a2888888589611a23919061294a565b611d36565b5f831115611a61575f851115611a60575f60648688611a479190612b29565b611a5191906130cb565b9050611a5e893083611d36565b505b5b5050505050505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600760149054906101000a900460ff16611d32576001600760146101000a81548160ff0219169083151502179055505f820315611d17575f611b6f30610a22565b90506008548110611d155760016008541115611b8b5760085490505b5f600284611b999190612b29565b90505f81846020015184611bad9190612b29565b611bb791906130cb565b90505f8184611bc6919061294a565b90505f479050611bd582611fa2565b5f8147611be2919061294a565b90505f876020015186611bf5919061294a565b82611c0091906130cb565b90505f886020015182611c139190612b29565b90505f811115611c2857611c2786826121ac565b5b5f895f0151600284611c3a9190612b29565b611c449190612b29565b90505f811115611c9957611c9881600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661227a90919063ffffffff16565b5b5f8a60400151600285611cac9190612b29565b611cb69190612b29565b90505f811115611d0b57611d0a81600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661227a90919063ffffffff16565b5b5050505050505050505b505b5f600760146101000a81548160ff0219169083151502179055505b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611da4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9b9061316b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e09906131f9565b60405180910390fd5b611e1d83838361236a565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611ea0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9790613287565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611f8991906125a2565b60405180910390a3611f9c84848461236f565b50505050565b5f600267ffffffffffffffff811115611fbe57611fbd6132a5565b5b604051908082528060200260200182016040528015611fec5781602001602082028036833780820191505090505b50905030815f81518110612003576120026132d2565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156120a7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120cb9190613313565b816001815181106120df576120de6132d2565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b815260040161217b95949392919061342e565b5f604051808303815f87803b158015612192575f80fd5b505af11580156121a4573d5f803e3d5ffd5b505050505050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f80600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161223296959493929190613486565b60606040518083038185885af115801561224e573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061227391906134f9565b5050505050565b804710156122bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b490613593565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff16826040516122e2906135de565b5f6040518083038185875af1925050503d805f811461231c576040519150601f19603f3d011682016040523d82523d5f602084013e612321565b606091505b5050905080612365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235c90613662565b60405180910390fd5b505050565b505050565b505050565b60405180606001604052805f81526020015f81526020015f81525090565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156123c95780820151818401526020810190506123ae565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6123ee82612392565b6123f8818561239c565b93506124088185602086016123ac565b612411816123d4565b840191505092915050565b5f6020820190508181035f83015261243481846123e4565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61246982612440565b9050919050565b6124798161245f565b8114612483575f80fd5b50565b5f8135905061249481612470565b92915050565b5f819050919050565b6124ac8161249a565b81146124b6575f80fd5b50565b5f813590506124c7816124a3565b92915050565b5f80604083850312156124e3576124e261243c565b5b5f6124f085828601612486565b9250506020612501858286016124b9565b9150509250929050565b5f8115159050919050565b61251f8161250b565b82525050565b5f6020820190506125385f830184612516565b92915050565b6125478161250b565b8114612551575f80fd5b50565b5f813590506125628161253e565b92915050565b5f6020828403121561257d5761257c61243c565b5b5f61258a84828501612554565b91505092915050565b61259c8161249a565b82525050565b5f6020820190506125b55f830184612593565b92915050565b5f805f606084860312156125d2576125d161243c565b5b5f6125df86828701612486565b93505060206125f086828701612486565b9250506040612601868287016124b9565b9150509250925092565b5f60ff82169050919050565b6126208161260b565b82525050565b5f6020820190506126395f830184612617565b92915050565b5f80604083850312156126555761265461243c565b5b5f61266285828601612486565b925050602061267385828601612554565b9150509250929050565b5f602082840312156126925761269161243c565b5b5f61269f848285016124b9565b91505092915050565b5f805f606084860312156126bf576126be61243c565b5b5f6126cc868287016124b9565b93505060206126dd868287016124b9565b92505060406126ee868287016124b9565b9150509250925092565b5f6020828403121561270d5761270c61243c565b5b5f61271a84828501612486565b91505092915050565b5f6060820190506127365f830186612593565b6127436020830185612593565b6127506040830184612593565b949350505050565b6127618161245f565b82525050565b5f60208201905061277a5f830184612758565b92915050565b5f80604083850312156127965761279561243c565b5b5f6127a385828601612486565b92505060206127b485828601612486565b9150509250929050565b5f819050919050565b5f6127e16127dc6127d784612440565b6127be565b612440565b9050919050565b5f6127f2826127c7565b9050919050565b5f612803826127e8565b9050919050565b612813816127f9565b82525050565b5f60208201905061282c5f83018461280a565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061287657607f821691505b60208210810361288957612888612832565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f6128e960288361239c565b91506128f48261288f565b604082019050919050565b5f6020820190508181035f830152612916816128dd565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6129548261249a565b915061295f8361249a565b92508282039050818111156129775761297661291d565b5b92915050565b5f6129878261249a565b91506129928361249a565b92508282019050808211156129aa576129a961291d565b5b92915050565b5f8160011c9050919050565b5f808291508390505b6001851115612a05578086048111156129e1576129e061291d565b5b60018516156129f05780820291505b80810290506129fe856129b0565b94506129c5565b94509492505050565b5f82612a1d5760019050612ad8565b81612a2a575f9050612ad8565b8160018114612a405760028114612a4a57612a79565b6001915050612ad8565b60ff841115612a5c57612a5b61291d565b5b8360020a915084821115612a7357612a7261291d565b5b50612ad8565b5060208310610133831016604e8410600b8410161715612aae5782820a905083811115612aa957612aa861291d565b5b612ad8565b612abb84848460016129bc565b92509050818404811115612ad257612ad161291d565b5b81810290505b9392505050565b5f612ae98261249a565b9150612af48361260b565b9250612b217fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484612a0e565b905092915050565b5f612b338261249a565b9150612b3e8361249a565b9250828202612b4c8161249a565b91508282048414831517612b6357612b6261291d565b5b5092915050565b7f54726164696e6720697320616c726561647920656e61626c65640000000000005f82015250565b5f612b9e601a8361239c565b9150612ba982612b6a565b602082019050919050565b5f6020820190508181035f830152612bcb81612b92565b9050919050565b5f604082019050612be55f830185612758565b612bf26020830184612593565b9392505050565b5f81519050612c078161253e565b92915050565b5f60208284031215612c2257612c2161243c565b5b5f612c2f84828501612bf9565b91505092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612c9260258361239c565b9150612c9d82612c38565b604082019050919050565b5f6020820190508181035f830152612cbf81612c86565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612d2060268361239c565b9150612d2b82612cc6565b604082019050919050565b5f6020820190508181035f830152612d4d81612d14565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612dae60248361239c565b9150612db982612d54565b604082019050919050565b5f6020820190508181035f830152612ddb81612da2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f612e3c60228361239c565b9150612e4782612de2565b604082019050919050565b5f6020820190508181035f830152612e6981612e30565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612ea460208361239c565b9150612eaf82612e70565b602082019050919050565b5f6020820190508181035f830152612ed181612e98565b9050919050565b7f5472616e7366657220616d6f756e74206d7573742062652067726561746572205f8201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b5f612f3260298361239c565b9150612f3d82612ed8565b604082019050919050565b5f6020820190508181035f830152612f5f81612f26565b9050919050565b7f596f752063616e2774207472616e7366657220746f6b656e73000000000000005f82015250565b5f612f9a60198361239c565b9150612fa582612f66565b602082019050919050565b5f6020820190508181035f830152612fc781612f8e565b9050919050565b7f54726164696e67206e6f7420656e61626c6564000000000000000000000000005f82015250565b5f61300260138361239c565b915061300d82612fce565b602082019050919050565b5f6020820190508181035f83015261302f81612ff6565b9050919050565b7f596f752061726520657863656564696e67206d617857616c6c65744c696d69745f82015250565b5f61306a60208361239c565b915061307582613036565b602082019050919050565b5f6020820190508181035f8301526130978161305e565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6130d58261249a565b91506130e08361249a565b9250826130f0576130ef61309e565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61315560258361239c565b9150613160826130fb565b604082019050919050565b5f6020820190508181035f83015261318281613149565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6131e360238361239c565b91506131ee82613189565b604082019050919050565b5f6020820190508181035f830152613210816131d7565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f61327160268361239c565b915061327c82613217565b604082019050919050565b5f6020820190508181035f83015261329e81613265565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f8151905061330d81612470565b92915050565b5f602082840312156133285761332761243c565b5b5f613335848285016132ff565b91505092915050565b5f819050919050565b5f61336161335c6133578461333e565b6127be565b61249a565b9050919050565b61337181613347565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6133a98161245f565b82525050565b5f6133ba83836133a0565b60208301905092915050565b5f602082019050919050565b5f6133dc82613377565b6133e68185613381565b93506133f183613391565b805f5b8381101561342157815161340888826133af565b9750613413836133c6565b9250506001810190506133f4565b5085935050505092915050565b5f60a0820190506134415f830188612593565b61344e6020830187613368565b818103604083015261346081866133d2565b905061346f6060830185612758565b61347c6080830184612593565b9695505050505050565b5f60c0820190506134995f830189612758565b6134a66020830188612593565b6134b36040830187613368565b6134c06060830186613368565b6134cd6080830185612758565b6134da60a0830184612593565b979650505050505050565b5f815190506134f3816124a3565b92915050565b5f805f606084860312156135105761350f61243c565b5b5f61351d868287016134e5565b935050602061352e868287016134e5565b925050604061353f868287016134e5565b9150509250925092565b7f416464726573733a20696e73756666696369656e742062616c616e63650000005f82015250565b5f61357d601d8361239c565b915061358882613549565b602082019050919050565b5f6020820190508181035f8301526135aa81613571565b9050919050565b5f81905092915050565b50565b5f6135c95f836135b1565b91506135d4826135bb565b5f82019050919050565b5f6135e8826135be565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c20725f8201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b5f61364c603a8361239c565b9150613657826135f2565b604082019050919050565b5f6020820190508181035f83015261367981613640565b905091905056fea2646970667358221220b87d2b7f48b7794e2c1fdae49f61c4c093765a654626821d7f1c7dbe0440aaba64736f6c63430008140033

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.