ETH Price: $3,389.68 (-1.51%)
Gas: 3 Gwei

Token

BETA (BETA)
 

Overview

Max Total Supply

500,000,000,000 BETA

Holders

102

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
fezbayc.eth
Balance
103,824,114.421133 BETA

Value
$0.00
0x59547d1673f04609dba8cb9d9d3102abec4317af
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:
BETA

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : BetaToken.sol
//SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.19;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";


library Address {
    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");
    }
}

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

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

    function WETH() external pure returns (address);

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

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

contract BETA is ERC20, Ownable {
    using Address for address payable;

    IRouter public router;
    address public pair;

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

    uint256 private tokenLiquidityThreshold = 1_000_000_000  * 10**18;

    uint256 private  genesis_block;
    uint256 private deadline = 3;
    uint256 private launchtax = 50;

    address private  marketingWallet = 0x30F977D384De54A1dEc8f4920Af093a1453F774b;
	address public constant deadWallet = 0x000000000000000000000000000000000000dEaD;

    struct Taxes {
        uint256 marketing;
        uint256 liquidity;
    }

    Taxes public taxes = Taxes(0, 0);
    Taxes public sellTaxes = Taxes(1, 0);
    Taxes public mevTaxes = Taxes(3, 2);

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

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

    constructor() ERC20("BETA", "BETA") {
        _mint(msg.sender, 500_000_000_000 * 10**decimals());

        IRouter _router = IRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        // Create a pair for this new token
        address _pair = IFactory(_router.factory()).createPair(address(this), _router.WETH());

        router = _router;
        pair = _pair;
        exemptFee[address(this)] = true;
        exemptFee[msg.sender] = true;
        exemptFee[marketingWallet] = true;
        exemptFee[deadWallet] = 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 (!exemptFee[recipient] && !exemptFee[sender] && sender == pair) {
            walletLastTxBlock[recipient] = block.number;
        }

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

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

        //set fee to zero if fees in contract are handled or exempted
        if (_liquidityMutex || exemptFee[sender] || exemptFee[recipient])
            fee = 0;
            //calculate fee
        else if (recipient == pair && isSecondTxInSameBlock(sender) && !useLaunchFee) {
            feeswap =
                mevTaxes.liquidity +
                mevTaxes.marketing ;
            feesum = feeswap;
            currentTaxes = mevTaxes;
        } if (recipient == pair && !useLaunchFee) {
            feeswap =
                sellTaxes.liquidity +
                sellTaxes.marketing ;
            feesum = feeswap;
            currentTaxes = sellTaxes;
        } else if (!useLaunchFee) {
            feeswap =
                taxes.liquidity +
                taxes.marketing ;
            feesum = feeswap;
            currentTaxes = taxes;
        } else if (useLaunchFee) {
            feeswap = launchtax;
            feesum = launchtax;
            if (sender == pair) snipers[sender] = true;
        }

        fee = (amount * feesum) / 100;

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

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

        }
    }

    function isSecondTxInSameBlock(address _sender) internal view returns(bool) {
        return walletLastTxBlock[_sender] == block.number;
    }

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

            // Split the contract balance into halves
            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) {
                // Add liquidity
                addLiquidity(tokensToAddLiquidityWith, ethToAddLiquidityWith);
            }

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

        }
    }

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

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

        // make the swap
        router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(router), tokenAmount);

        // add the liquidity
        router.addLiquidityETH{ value: ethAmount }(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            deadWallet,
            block.timestamp
        );
    }

    function updateLiquidityProvide(bool state) external onlyOwner {
        //update liquidity providing state
        providingLiquidity = state;
    }

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

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

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

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

    function updatedeadline(uint256 _deadline) external onlyOwner {
        require(!tradingEnabled, "Can't change when trading has started");
        deadline = _deadline;
    }

    function updateMarketingWallet(address newWallet) external onlyOwner {
        marketingWallet = newWallet;
    }

    function updateIsEarlyBuyer(address account, bool state) external onlyOwner {
        isearlybuyer[account] = state;
    }

    function bulkIsEarlyBuyer(address[] memory accounts, bool state) external onlyOwner {
        for (uint256 i = 0; i < accounts.length; i++) {
            isearlybuyer[accounts[i]] = state;
        }
    }

    function AddExemptFee(address _address) external onlyOwner {
        exemptFee[_address] = true;
    }

    function RemoveExemptFee(address _address) external onlyOwner {
        exemptFee[_address] = false;
    }

    function AddbulkExemptFee(address[] memory accounts) external onlyOwner {
        for (uint256 i = 0; i < accounts.length; i++) {
            exemptFee[accounts[i]] = true;
        }
    }

    function RemovebulkExemptFee(address[] memory accounts) external onlyOwner {
        for (uint256 i = 0; i < accounts.length; i++) {
            exemptFee[accounts[i]] = false;
        }
    }

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

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

    // fallbacks
    receive() external payable {}
}

File 2 of 6 : 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 3 of 6 : 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 4 of 6 : 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 5 of 6 : 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 6 of 6 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"address","name":"_address","type":"address"}],"name":"AddExemptFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"AddbulkExemptFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"RemoveExemptFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"RemovebulkExemptFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketing","type":"uint256"},{"internalType":"uint256","name":"_liquidity","type":"uint256"}],"name":"SetSellTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketing","type":"uint256"},{"internalType":"uint256","name":"_liquidity","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":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"state","type":"bool"}],"name":"bulkIsEarlyBuyer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deadWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","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":"mevTaxes","outputs":[{"internalType":"uint256","name":"marketing","type":"uint256"},{"internalType":"uint256","name":"liquidity","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 IRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTaxes","outputs":[{"internalType":"uint256","name":"marketing","type":"uint256"},{"internalType":"uint256","name":"liquidity","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"snipers","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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"}],"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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"state","type":"bool"}],"name":"updateIsEarlyBuyer","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":"address","name":"newWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_deadline","type":"uint256"}],"name":"updatedeadline","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6007805462ffffff60a01b191690556b033b2e3c9fd0803ce80000006008556003600a8190556032600b55600c80546001600160a01b0319167330f977d384de54a1dec8f4920af093a1453f774b1790556000608081905260a0819052600d819055600e819055600160c081905260e0829052600f556010556101406040526101008190526002610120819052601191909155601255348015620000a257600080fd5b506040805180820182526004808252634245544160e01b6020808401829052845180860190955291845290830152906003620000df838262000508565b506004620000ee828262000508565b5050506200010b620001056200034360201b60201c565b62000347565b62000135336200011e6012600a620006e9565b6200012f9064746a52880062000701565b62000399565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506000816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200018f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001b591906200071b565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000203573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200022991906200071b565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000277573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200029d91906200071b565b600680546001600160a01b03199081166001600160a01b0395861617909155600780549091169184169190911790555030600090815260146020526040808220805460ff1990811660019081179092553384528284208054821683179055600c549094168352908220805484168217905561dead9091527f8b9e18c5e04efe171d1e4f682ad90d753958a5ffe56db5290b0236c8e0b6db0080549092161790556200075c565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620003f45760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b806002600082825462000408919062000746565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200048f57607f821691505b602082108103620004b057634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200045f57600081815260208120601f850160051c81016020861015620004df5750805b601f850160051c820191505b818110156200050057828155600101620004eb565b505050505050565b81516001600160401b0381111562000524576200052462000464565b6200053c816200053584546200047a565b84620004b6565b602080601f8311600181146200057457600084156200055b5750858301515b600019600386901b1c1916600185901b17855562000500565b600085815260208120601f198616915b82811015620005a55788860151825594840194600190910190840162000584565b5085821015620005c45787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156200062b5781600019048211156200060f576200060f620005d4565b808516156200061d57918102915b93841c9390800290620005ef565b509250929050565b6000826200064457506001620006e3565b816200065357506000620006e3565b81600181146200066c5760028114620006775762000697565b6001915050620006e3565b60ff8411156200068b576200068b620005d4565b50506001821b620006e3565b5060208310610133831016604e8410600b8410161715620006bc575081810a620006e3565b620006c88383620005ea565b8060001904821115620006df57620006df620005d4565b0290505b92915050565b6000620006fa60ff84168362000633565b9392505050565b8082028115828204841417620006e357620006e3620005d4565b6000602082840312156200072e57600080fd5b81516001600160a01b0381168114620006fa57600080fd5b80820180821115620006e357620006e3620005d4565b6120f4806200076c6000396000f3fe6080604052600436106102295760003560e01c806385141a7711610123578063aacebbe3116100ab578063f2fde38b1161006f578063f2fde38b1461069a578063f52be97c146106ba578063f570d4de146106da578063f66895a3146106fa578063f887ea401461071557600080fd5b8063aacebbe3146105ea578063c5d32bb21461060a578063d695609b1461063a578063dd62ed3e1461065a578063edaa11681461067a57600080fd5b806395d89b41116100f257806395d89b41146105555780639e252f001461056a578063a457c2d71461058a578063a8aa1b31146105aa578063a9059cbb146105ca57600080fd5b806385141a77146104d45780638a8c523c146105025780638cd4426d146105175780638da5cb5b1461053757600080fd5b806342b6fa11116101b157806370a082311161017557806370a082311461042e578063715018a614610464578063728f8eea14610479578063832c2bd2146104945780638514022d146104b457600080fd5b806342b6fa111461036d5780634ada218b1461038d57806354a2f210146103ae5780635dbdb7e3146103de5780635f2ffdeb146103fe57600080fd5b8063215d92a6116101f8578063215d92a6146102d157806323b872dd146102f1578063251ef09514610311578063313ce56714610331578063395093511461034d57600080fd5b806306fdde0314610235578063095ea7b3146102605780631340538f1461029057806318160ddd146102b257600080fd5b3661023057005b600080fd5b34801561024157600080fd5b5061024a610735565b6040516102579190611b07565b60405180910390f35b34801561026c57600080fd5b5061028061027b366004611b7a565b6107c7565b6040519015158152602001610257565b34801561029c57600080fd5b506102b06102ab366004611bb4565b6107e1565b005b3480156102be57600080fd5b506002545b604051908152602001610257565b3480156102dd57600080fd5b506102b06102ec366004611c90565b610807565b3480156102fd57600080fd5b5061028061030c366004611ce2565b61087b565b34801561031d57600080fd5b506102b061032c366004611d23565b61089f565b34801561033d57600080fd5b5060405160128152602001610257565b34801561035957600080fd5b50610280610368366004611b7a565b610913565b34801561037957600080fd5b506102b0610388366004611d60565b610935565b34801561039957600080fd5b5060075461028090600160b01b900460ff1681565b3480156103ba57600080fd5b506011546012546103c9919082565b60408051928352602083019190915201610257565b3480156103ea57600080fd5b506102b06103f9366004611d79565b610959565b34801561040a57600080fd5b50610280610419366004611d79565b60136020526000908152604090205460ff1681565b34801561043a57600080fd5b506102c3610449366004611d79565b6001600160a01b031660009081526020819052604090205490565b34801561047057600080fd5b506102b0610985565b34801561048557600080fd5b50600d54600e546103c9919082565b3480156104a057600080fd5b506102b06104af366004611d79565b610999565b3480156104c057600080fd5b506102b06104cf366004611d96565b6109c2565b3480156104e057600080fd5b506104ea61dead81565b6040516001600160a01b039091168152602001610257565b34801561050e57600080fd5b506102b06109f5565b34801561052357600080fd5b506102b0610532366004611b7a565b610a77565b34801561054357600080fd5b506005546001600160a01b03166104ea565b34801561056157600080fd5b5061024a610b11565b34801561057657600080fd5b506102b0610585366004611d60565b610b20565b34801561059657600080fd5b506102806105a5366004611b7a565b610b62565b3480156105b657600080fd5b506007546104ea906001600160a01b031681565b3480156105d657600080fd5b506102806105e5366004611b7a565b610bdd565b3480156105f657600080fd5b506102b0610605366004611d79565b610beb565b34801561061657600080fd5b50610280610625366004611d79565b60146020526000908152604090205460ff1681565b34801561064657600080fd5b506102b0610655366004611dc4565b610c15565b34801561066657600080fd5b506102c3610675366004611de6565b610c3b565b34801561068657600080fd5b506102b0610695366004611d60565b610c66565b3480156106a657600080fd5b506102b06106b5366004611d79565b610cdb565b3480156106c657600080fd5b506102b06106d5366004611dc4565b610d54565b3480156106e657600080fd5b506102b06106f5366004611d23565b610d7a565b34801561070657600080fd5b50600f546010546103c9919082565b34801561072157600080fd5b506006546104ea906001600160a01b031681565b60606003805461074490611e14565b80601f016020809104026020016040519081016040528092919081815260200182805461077090611e14565b80156107bd5780601f10610792576101008083540402835291602001916107bd565b820191906000526020600020905b8154815290600101906020018083116107a057829003601f168201915b5050505050905090565b6000336107d5818585610dea565b60019150505b92915050565b6107e9610f0e565b60078054911515600160a81b0260ff60a81b19909216919091179055565b61080f610f0e565b60005b825181101561087657816015600085848151811061083257610832611e4e565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061086e81611e7a565b915050610812565b505050565b600033610889858285610f68565b610894858585610fe2565b506001949350505050565b6108a7610f0e565b60005b815181101561090f576000601460008484815181106108cb576108cb611e4e565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061090781611e7a565b9150506108aa565b5050565b6000336107d58185856109268383610c3b565b6109309190611e93565b610dea565b61093d610f0e565b6109496012600a611f8a565b6109539082611f99565b60085550565b610961610f0e565b6001600160a01b03166000908152601460205260409020805460ff19166001179055565b61098d610f0e565b61099760006114af565b565b6109a1610f0e565b6001600160a01b03166000908152601460205260409020805460ff19169055565b6109ca610f0e565b6001600160a01b03919091166000908152601560205260409020805460ff1916911515919091179055565b6109fd610f0e565b600754600160b01b900460ff1615610a5c5760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c656400000000000060448201526064015b60405180910390fd5b6007805461ffff60a81b191661010160a81b17905543600955565b610a7f610f0e565b816001600160a01b031663a9059cbb610aa06005546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af1158015610aed573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108769190611fb0565b60606004805461074490611e14565b610b28610f0e565b6005546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505015801561090f573d6000803e3d6000fd5b60003381610b708286610c3b565b905083811015610bd05760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a53565b6108948286868403610dea565b6000336107d5818585610fe2565b610bf3610f0e565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b610c1d610f0e565b60408051808201909152828152602001819052600d91909155600e55565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610c6e610f0e565b600754600160b01b900460ff1615610cd65760405162461bcd60e51b815260206004820152602560248201527f43616e2774206368616e6765207768656e2074726164696e6720686173207374604482015264185c9d195960da1b6064820152608401610a53565b600a55565b610ce3610f0e565b6001600160a01b038116610d485760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a53565b610d51816114af565b50565b610d5c610f0e565b60408051808201909152828152602001819052600f91909155601055565b610d82610f0e565b60005b815181101561090f57600160146000848481518110610da657610da6611e4e565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610de281611e7a565b915050610d85565b6001600160a01b038316610e4c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a53565b6001600160a01b038216610ead5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a53565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b031633146109975760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a53565b6000610f748484610c3b565b90506000198114610fdc5781811015610fcf5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610a53565b610fdc8484848403610dea565b50505050565b600081116110445760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610a53565b6001600160a01b03831660009081526015602052604090205460ff1615801561108657506001600160a01b03821660009081526015602052604090205460ff16155b6110d25760405162461bcd60e51b815260206004820152601960248201527f596f752063616e2774207472616e7366657220746f6b656e73000000000000006044820152606401610a53565b6001600160a01b03831660009081526014602052604090205460ff1615801561111457506001600160a01b03821660009081526014602052604090205460ff16155b1561116857600754600160b01b900460ff166111685760405162461bcd60e51b8152602060048201526013602482015272151c98591a5b99c81b9bdd08195b98589b1959606a1b6044820152606401610a53565b6001600160a01b03821660009081526014602052604090205460ff161580156111aa57506001600160a01b03831660009081526014602052604090205460ff16155b80156111c357506007546001600160a01b038481169116145b156111e4576001600160a01b03821660009081526016602052604090204390555b6000806000611206604051806040016040528060008152602001600081525090565b6001600160a01b03871660009081526014602052604081205460ff1615801561124857506001600160a01b03871660009081526014602052604090205460ff16155b80156112625750600a5460095461125f9190611e93565b43105b600754909150600160a01b900460ff168061129557506001600160a01b03881660009081526014602052604090205460ff165b806112b857506001600160a01b03871660009081526014602052604090205460ff165b156112c65760009250611339565b6007546001600160a01b0388811691161480156112fa57506001600160a01b03881660009081526016602052604090205443145b8015611304575080155b15611339576011546012546113199190611e93565b604080518082019091526011548152601254602082015290955085945091505b6007546001600160a01b038881169116148015611354575080155b1561138d57600f546010546113699190611e93565b60408051808201909152600f5481526010546020820152909550859450915061140f565b806113c657600d54600e546113a29190611e93565b60408051808201909152600d548152600e546020820152909550859450915061140f565b801561140f57600b546007549095508594506001600160a01b039081169089160361140f576001600160a01b0388166000908152601360205260409020805460ff191660011790555b606461141b8588611f99565b6114259190611fcd565b600754909350600160a81b900460ff16801561144f57506007546001600160a01b03898116911614155b1561145e5761145e8583611501565b611472888861146d868a611fef565b61163e565b82156114a55784156114a5576000606461148c8789611f99565b6114969190611fcd565b90506114a389308361163e565b505b5050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600754600160a01b900460ff1661090f576007805460ff60a01b1916600160a01b179055811561162d5730600090815260208190526040902054600854811061162b576001600854111561155457506008545b6000611561846002611f99565b90506000818460200151846115769190611f99565b6115809190611fcd565b9050600061158e8285611fef565b90504761159a826117e2565b60006115a68247611fef565b905060008760200151866115ba9190611fef565b6115c49083611fcd565b905060008860200151826115d89190611f99565b905080156115ea576115ea868261193c565b88516000906115fa846002611f99565b6116049190611f99565b9050801561162257600c54611622906001600160a01b0316826119ee565b50505050505050505b505b6007805460ff60a01b191690555050565b6001600160a01b0383166116a25760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a53565b6001600160a01b0382166117045760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a53565b6001600160a01b0383166000908152602081905260409020548181101561177c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a53565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610fdc565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061181757611817611e4e565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611870573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118949190612002565b816001815181106118a7576118a7611e4e565b6001600160a01b0392831660209182029290920101526006546118cd9130911684610dea565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac9479061190690859060009086903090429060040161201f565b600060405180830381600087803b15801561192057600080fd5b505af1158015611934573d6000803e3d6000fd5b505050505050565b6006546119549030906001600160a01b031684610dea565b60065460405163f305d71960e01b815230600482015260248101849052600060448201819052606482015261dead60848201524260a48201526001600160a01b039091169063f305d71990839060c40160606040518083038185885af11580156119c2573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906119e79190612090565b5050505050565b80471015611a3e5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610a53565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611a8b576040519150601f19603f3d011682016040523d82523d6000602084013e611a90565b606091505b50509050806108765760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610a53565b600060208083528351808285015260005b81811015611b3457858101830151858201604001528201611b18565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610d5157600080fd5b8035611b7581611b55565b919050565b60008060408385031215611b8d57600080fd5b8235611b9881611b55565b946020939093013593505050565b8015158114610d5157600080fd5b600060208284031215611bc657600080fd5b8135611bd181611ba6565b9392505050565b634e487b7160e01b600052604160045260246000fd5b600082601f830112611bff57600080fd5b8135602067ffffffffffffffff80831115611c1c57611c1c611bd8565b8260051b604051601f19603f83011681018181108482111715611c4157611c41611bd8565b604052938452858101830193838101925087851115611c5f57600080fd5b83870191505b84821015611c8557611c7682611b6a565b83529183019190830190611c65565b979650505050505050565b60008060408385031215611ca357600080fd5b823567ffffffffffffffff811115611cba57600080fd5b611cc685828601611bee565b9250506020830135611cd781611ba6565b809150509250929050565b600080600060608486031215611cf757600080fd5b8335611d0281611b55565b92506020840135611d1281611b55565b929592945050506040919091013590565b600060208284031215611d3557600080fd5b813567ffffffffffffffff811115611d4c57600080fd5b611d5884828501611bee565b949350505050565b600060208284031215611d7257600080fd5b5035919050565b600060208284031215611d8b57600080fd5b8135611bd181611b55565b60008060408385031215611da957600080fd5b8235611db481611b55565b91506020830135611cd781611ba6565b60008060408385031215611dd757600080fd5b50508035926020909101359150565b60008060408385031215611df957600080fd5b8235611e0481611b55565b91506020830135611cd781611b55565b600181811c90821680611e2857607f821691505b602082108103611e4857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201611e8c57611e8c611e64565b5060010190565b808201808211156107db576107db611e64565b600181815b80851115611ee1578160001904821115611ec757611ec7611e64565b80851615611ed457918102915b93841c9390800290611eab565b509250929050565b600082611ef8575060016107db565b81611f05575060006107db565b8160018114611f1b5760028114611f2557611f41565b60019150506107db565b60ff841115611f3657611f36611e64565b50506001821b6107db565b5060208310610133831016604e8410600b8410161715611f64575081810a6107db565b611f6e8383611ea6565b8060001904821115611f8257611f82611e64565b029392505050565b6000611bd160ff841683611ee9565b80820281158282048414176107db576107db611e64565b600060208284031215611fc257600080fd5b8151611bd181611ba6565b600082611fea57634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156107db576107db611e64565b60006020828403121561201457600080fd5b8151611bd181611b55565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561206f5784516001600160a01b03168352938301939183019160010161204a565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156120a557600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212207e84708df1407db94acf253174484de6051d97f14c354c2044907c4b59f7227d64736f6c63430008130033

Deployed Bytecode

0x6080604052600436106102295760003560e01c806385141a7711610123578063aacebbe3116100ab578063f2fde38b1161006f578063f2fde38b1461069a578063f52be97c146106ba578063f570d4de146106da578063f66895a3146106fa578063f887ea401461071557600080fd5b8063aacebbe3146105ea578063c5d32bb21461060a578063d695609b1461063a578063dd62ed3e1461065a578063edaa11681461067a57600080fd5b806395d89b41116100f257806395d89b41146105555780639e252f001461056a578063a457c2d71461058a578063a8aa1b31146105aa578063a9059cbb146105ca57600080fd5b806385141a77146104d45780638a8c523c146105025780638cd4426d146105175780638da5cb5b1461053757600080fd5b806342b6fa11116101b157806370a082311161017557806370a082311461042e578063715018a614610464578063728f8eea14610479578063832c2bd2146104945780638514022d146104b457600080fd5b806342b6fa111461036d5780634ada218b1461038d57806354a2f210146103ae5780635dbdb7e3146103de5780635f2ffdeb146103fe57600080fd5b8063215d92a6116101f8578063215d92a6146102d157806323b872dd146102f1578063251ef09514610311578063313ce56714610331578063395093511461034d57600080fd5b806306fdde0314610235578063095ea7b3146102605780631340538f1461029057806318160ddd146102b257600080fd5b3661023057005b600080fd5b34801561024157600080fd5b5061024a610735565b6040516102579190611b07565b60405180910390f35b34801561026c57600080fd5b5061028061027b366004611b7a565b6107c7565b6040519015158152602001610257565b34801561029c57600080fd5b506102b06102ab366004611bb4565b6107e1565b005b3480156102be57600080fd5b506002545b604051908152602001610257565b3480156102dd57600080fd5b506102b06102ec366004611c90565b610807565b3480156102fd57600080fd5b5061028061030c366004611ce2565b61087b565b34801561031d57600080fd5b506102b061032c366004611d23565b61089f565b34801561033d57600080fd5b5060405160128152602001610257565b34801561035957600080fd5b50610280610368366004611b7a565b610913565b34801561037957600080fd5b506102b0610388366004611d60565b610935565b34801561039957600080fd5b5060075461028090600160b01b900460ff1681565b3480156103ba57600080fd5b506011546012546103c9919082565b60408051928352602083019190915201610257565b3480156103ea57600080fd5b506102b06103f9366004611d79565b610959565b34801561040a57600080fd5b50610280610419366004611d79565b60136020526000908152604090205460ff1681565b34801561043a57600080fd5b506102c3610449366004611d79565b6001600160a01b031660009081526020819052604090205490565b34801561047057600080fd5b506102b0610985565b34801561048557600080fd5b50600d54600e546103c9919082565b3480156104a057600080fd5b506102b06104af366004611d79565b610999565b3480156104c057600080fd5b506102b06104cf366004611d96565b6109c2565b3480156104e057600080fd5b506104ea61dead81565b6040516001600160a01b039091168152602001610257565b34801561050e57600080fd5b506102b06109f5565b34801561052357600080fd5b506102b0610532366004611b7a565b610a77565b34801561054357600080fd5b506005546001600160a01b03166104ea565b34801561056157600080fd5b5061024a610b11565b34801561057657600080fd5b506102b0610585366004611d60565b610b20565b34801561059657600080fd5b506102806105a5366004611b7a565b610b62565b3480156105b657600080fd5b506007546104ea906001600160a01b031681565b3480156105d657600080fd5b506102806105e5366004611b7a565b610bdd565b3480156105f657600080fd5b506102b0610605366004611d79565b610beb565b34801561061657600080fd5b50610280610625366004611d79565b60146020526000908152604090205460ff1681565b34801561064657600080fd5b506102b0610655366004611dc4565b610c15565b34801561066657600080fd5b506102c3610675366004611de6565b610c3b565b34801561068657600080fd5b506102b0610695366004611d60565b610c66565b3480156106a657600080fd5b506102b06106b5366004611d79565b610cdb565b3480156106c657600080fd5b506102b06106d5366004611dc4565b610d54565b3480156106e657600080fd5b506102b06106f5366004611d23565b610d7a565b34801561070657600080fd5b50600f546010546103c9919082565b34801561072157600080fd5b506006546104ea906001600160a01b031681565b60606003805461074490611e14565b80601f016020809104026020016040519081016040528092919081815260200182805461077090611e14565b80156107bd5780601f10610792576101008083540402835291602001916107bd565b820191906000526020600020905b8154815290600101906020018083116107a057829003601f168201915b5050505050905090565b6000336107d5818585610dea565b60019150505b92915050565b6107e9610f0e565b60078054911515600160a81b0260ff60a81b19909216919091179055565b61080f610f0e565b60005b825181101561087657816015600085848151811061083257610832611e4e565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061086e81611e7a565b915050610812565b505050565b600033610889858285610f68565b610894858585610fe2565b506001949350505050565b6108a7610f0e565b60005b815181101561090f576000601460008484815181106108cb576108cb611e4e565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061090781611e7a565b9150506108aa565b5050565b6000336107d58185856109268383610c3b565b6109309190611e93565b610dea565b61093d610f0e565b6109496012600a611f8a565b6109539082611f99565b60085550565b610961610f0e565b6001600160a01b03166000908152601460205260409020805460ff19166001179055565b61098d610f0e565b61099760006114af565b565b6109a1610f0e565b6001600160a01b03166000908152601460205260409020805460ff19169055565b6109ca610f0e565b6001600160a01b03919091166000908152601560205260409020805460ff1916911515919091179055565b6109fd610f0e565b600754600160b01b900460ff1615610a5c5760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c656400000000000060448201526064015b60405180910390fd5b6007805461ffff60a81b191661010160a81b17905543600955565b610a7f610f0e565b816001600160a01b031663a9059cbb610aa06005546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af1158015610aed573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108769190611fb0565b60606004805461074490611e14565b610b28610f0e565b6005546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505015801561090f573d6000803e3d6000fd5b60003381610b708286610c3b565b905083811015610bd05760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a53565b6108948286868403610dea565b6000336107d5818585610fe2565b610bf3610f0e565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b610c1d610f0e565b60408051808201909152828152602001819052600d91909155600e55565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610c6e610f0e565b600754600160b01b900460ff1615610cd65760405162461bcd60e51b815260206004820152602560248201527f43616e2774206368616e6765207768656e2074726164696e6720686173207374604482015264185c9d195960da1b6064820152608401610a53565b600a55565b610ce3610f0e565b6001600160a01b038116610d485760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a53565b610d51816114af565b50565b610d5c610f0e565b60408051808201909152828152602001819052600f91909155601055565b610d82610f0e565b60005b815181101561090f57600160146000848481518110610da657610da6611e4e565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610de281611e7a565b915050610d85565b6001600160a01b038316610e4c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a53565b6001600160a01b038216610ead5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a53565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b031633146109975760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a53565b6000610f748484610c3b565b90506000198114610fdc5781811015610fcf5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610a53565b610fdc8484848403610dea565b50505050565b600081116110445760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610a53565b6001600160a01b03831660009081526015602052604090205460ff1615801561108657506001600160a01b03821660009081526015602052604090205460ff16155b6110d25760405162461bcd60e51b815260206004820152601960248201527f596f752063616e2774207472616e7366657220746f6b656e73000000000000006044820152606401610a53565b6001600160a01b03831660009081526014602052604090205460ff1615801561111457506001600160a01b03821660009081526014602052604090205460ff16155b1561116857600754600160b01b900460ff166111685760405162461bcd60e51b8152602060048201526013602482015272151c98591a5b99c81b9bdd08195b98589b1959606a1b6044820152606401610a53565b6001600160a01b03821660009081526014602052604090205460ff161580156111aa57506001600160a01b03831660009081526014602052604090205460ff16155b80156111c357506007546001600160a01b038481169116145b156111e4576001600160a01b03821660009081526016602052604090204390555b6000806000611206604051806040016040528060008152602001600081525090565b6001600160a01b03871660009081526014602052604081205460ff1615801561124857506001600160a01b03871660009081526014602052604090205460ff16155b80156112625750600a5460095461125f9190611e93565b43105b600754909150600160a01b900460ff168061129557506001600160a01b03881660009081526014602052604090205460ff165b806112b857506001600160a01b03871660009081526014602052604090205460ff165b156112c65760009250611339565b6007546001600160a01b0388811691161480156112fa57506001600160a01b03881660009081526016602052604090205443145b8015611304575080155b15611339576011546012546113199190611e93565b604080518082019091526011548152601254602082015290955085945091505b6007546001600160a01b038881169116148015611354575080155b1561138d57600f546010546113699190611e93565b60408051808201909152600f5481526010546020820152909550859450915061140f565b806113c657600d54600e546113a29190611e93565b60408051808201909152600d548152600e546020820152909550859450915061140f565b801561140f57600b546007549095508594506001600160a01b039081169089160361140f576001600160a01b0388166000908152601360205260409020805460ff191660011790555b606461141b8588611f99565b6114259190611fcd565b600754909350600160a81b900460ff16801561144f57506007546001600160a01b03898116911614155b1561145e5761145e8583611501565b611472888861146d868a611fef565b61163e565b82156114a55784156114a5576000606461148c8789611f99565b6114969190611fcd565b90506114a389308361163e565b505b5050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600754600160a01b900460ff1661090f576007805460ff60a01b1916600160a01b179055811561162d5730600090815260208190526040902054600854811061162b576001600854111561155457506008545b6000611561846002611f99565b90506000818460200151846115769190611f99565b6115809190611fcd565b9050600061158e8285611fef565b90504761159a826117e2565b60006115a68247611fef565b905060008760200151866115ba9190611fef565b6115c49083611fcd565b905060008860200151826115d89190611f99565b905080156115ea576115ea868261193c565b88516000906115fa846002611f99565b6116049190611f99565b9050801561162257600c54611622906001600160a01b0316826119ee565b50505050505050505b505b6007805460ff60a01b191690555050565b6001600160a01b0383166116a25760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a53565b6001600160a01b0382166117045760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a53565b6001600160a01b0383166000908152602081905260409020548181101561177c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a53565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610fdc565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061181757611817611e4e565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611870573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118949190612002565b816001815181106118a7576118a7611e4e565b6001600160a01b0392831660209182029290920101526006546118cd9130911684610dea565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac9479061190690859060009086903090429060040161201f565b600060405180830381600087803b15801561192057600080fd5b505af1158015611934573d6000803e3d6000fd5b505050505050565b6006546119549030906001600160a01b031684610dea565b60065460405163f305d71960e01b815230600482015260248101849052600060448201819052606482015261dead60848201524260a48201526001600160a01b039091169063f305d71990839060c40160606040518083038185885af11580156119c2573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906119e79190612090565b5050505050565b80471015611a3e5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610a53565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611a8b576040519150601f19603f3d011682016040523d82523d6000602084013e611a90565b606091505b50509050806108765760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610a53565b600060208083528351808285015260005b81811015611b3457858101830151858201604001528201611b18565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610d5157600080fd5b8035611b7581611b55565b919050565b60008060408385031215611b8d57600080fd5b8235611b9881611b55565b946020939093013593505050565b8015158114610d5157600080fd5b600060208284031215611bc657600080fd5b8135611bd181611ba6565b9392505050565b634e487b7160e01b600052604160045260246000fd5b600082601f830112611bff57600080fd5b8135602067ffffffffffffffff80831115611c1c57611c1c611bd8565b8260051b604051601f19603f83011681018181108482111715611c4157611c41611bd8565b604052938452858101830193838101925087851115611c5f57600080fd5b83870191505b84821015611c8557611c7682611b6a565b83529183019190830190611c65565b979650505050505050565b60008060408385031215611ca357600080fd5b823567ffffffffffffffff811115611cba57600080fd5b611cc685828601611bee565b9250506020830135611cd781611ba6565b809150509250929050565b600080600060608486031215611cf757600080fd5b8335611d0281611b55565b92506020840135611d1281611b55565b929592945050506040919091013590565b600060208284031215611d3557600080fd5b813567ffffffffffffffff811115611d4c57600080fd5b611d5884828501611bee565b949350505050565b600060208284031215611d7257600080fd5b5035919050565b600060208284031215611d8b57600080fd5b8135611bd181611b55565b60008060408385031215611da957600080fd5b8235611db481611b55565b91506020830135611cd781611ba6565b60008060408385031215611dd757600080fd5b50508035926020909101359150565b60008060408385031215611df957600080fd5b8235611e0481611b55565b91506020830135611cd781611b55565b600181811c90821680611e2857607f821691505b602082108103611e4857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201611e8c57611e8c611e64565b5060010190565b808201808211156107db576107db611e64565b600181815b80851115611ee1578160001904821115611ec757611ec7611e64565b80851615611ed457918102915b93841c9390800290611eab565b509250929050565b600082611ef8575060016107db565b81611f05575060006107db565b8160018114611f1b5760028114611f2557611f41565b60019150506107db565b60ff841115611f3657611f36611e64565b50506001821b6107db565b5060208310610133831016604e8410600b8410161715611f64575081810a6107db565b611f6e8383611ea6565b8060001904821115611f8257611f82611e64565b029392505050565b6000611bd160ff841683611ee9565b80820281158282048414176107db576107db611e64565b600060208284031215611fc257600080fd5b8151611bd181611ba6565b600082611fea57634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156107db576107db611e64565b60006020828403121561201457600080fd5b8151611bd181611b55565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561206f5784516001600160a01b03168352938301939183019160010161204a565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156120a557600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212207e84708df1407db94acf253174484de6051d97f14c354c2044907c4b59f7227d64736f6c63430008130033

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.