ETH Price: $3,389.03 (-1.53%)
Gas: 2 Gwei

Token

UNICHAD (UNICHAD)
 

Overview

Max Total Supply

1,000,000 UNICHAD

Holders

1,052

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
14 UNICHAD

Value
$0.00
0x424e97e814322be193cc78854517cc7afb2e1910
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:
Unichad

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : UNICHAD_final.sol
/**
 WELCOME TO UNICHAD
 UNICHAD is a fun project launched by UNIBOT community members that aims to reward UNIBOT's hororable Chads.
The goal is to give back to the UNIBOT community by air-dropping UNICHAD tokens to diamond-handed UNIBOT Chads and create a complementary project to the UNIBOT ecosystem.
Tokenomics:

25% will be airdropped to long-term UNIBOT holders, 
65% to the UNICHAD/WETH LP, 
10% will be burned upfront and permanently taken out of circulation

TAXES 5/5:
TEAM : 0% 
AUTO LP : 2%
AUTO UNIBOT BUYING : 3%
**/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.21;

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

/**
 * @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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing 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);
    }
}

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

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

/**
 * @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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * 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}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * 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 value {ERC20} uses, unless this function is
     * 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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(
            currentAllowance >= amount,
            "ERC20: transfer amount exceeds allowance"
        );
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][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)
    {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(
            senderBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, 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;
        _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;
        }
        _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 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 {}
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 value);

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint256);

    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    event Mint(address indexed sender, uint256 amount0, uint256 amount1);
    event Burn(
        address indexed sender,
        uint256 amount0,
        uint256 amount1,
        address indexed to
    );
    event Swap(
        address indexed sender,
        uint256 amount0In,
        uint256 amount1In,
        uint256 amount0Out,
        uint256 amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (
            uint112 reserve0,
            uint112 reserve1,
            uint32 blockTimestampLast
        );

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

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

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

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

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

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

contract Unichad is ERC20, Ownable {
    using SafeMath for uint256;
    IUniswapV2Router02 public uniswapV2Router;

    //address data-sets
    address public uniBotAddress =
        address(0xf819d9Cb1c2A819Fd991781A822dE3ca8607c3C9);
    address public constant deadAddress = address(0xdead);
    address public teamWallet;
    address public uniswapV2Pair;

    //bool data-sets
    bool public isLimitActive;
    bool public isTradingOpen;
    bool public swapEnabled;
    bool private swapping;

    //int data-sets
    uint256 public _buyAutobuyFee = 3;
    uint256 public _buyLpFee = 2;
    uint256 public _buyTeamFee = 0;
    uint256 public buyTotalFees = _buyLpFee + _buyTeamFee + _buyAutobuyFee;

    uint256 public _sellAutobuyFee = 3;
    uint256 public _sellLpFee = 2;
    uint256 public _sellTeamFee = 0;
    uint256 public sellTotalFees = _sellLpFee + _sellTeamFee + _sellAutobuyFee;

    uint256 public _autoBuyTokenShare;
    uint256 public _LpTokenShare;
    uint256 public _teamTokenShare;

    uint256 public txMaxperWallet;
    uint256 public maxTokenPerWallet;
    uint256 public swapTokensAtAmount;

    //mapping data-sets
    mapping(address => bool) blacklisted;
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isTxMaxExcluded;
    mapping(address => bool) public automatedMarketMakerPairs;

    event ExcludeFromFees(address indexed account, bool isExcluded);
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    constructor() ERC20("UNICHAD", "UNICHAD") {
        uint256 totalSupply = 1_000_000 * 1e18;
        _mint(msg.sender, totalSupply);
    }

    // dataset
    function initContract() external onlyOwner {
        //TESTNET Router
        ///IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0xC532a74256D3Db42D0Bf7a0400fEFDbad7694008);

        //DEX data-sets  //MAINNET
        uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
            address(this),
            uniswapV2Router.WETH()
        );
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        isLimitActive = true;
        isTradingOpen = false;
        swapEnabled = false;

        txMaxperWallet = 10_000 * 1e18;
        maxTokenPerWallet = 10_000 * 1e18;
        swapTokensAtAmount = (this.totalSupply() * 5) / 10000;

        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        _excludeFromMaxTx(owner(), true);
        _excludeFromMaxTx(address(this), true);
        _excludeFromMaxTx(address(0xdead), true);
        _excludeFromMaxTx(address(uniswapV2Router), true);
        _excludeFromMaxTx(address(uniswapV2Pair), true);
    }

    function launchUnichad() external onlyOwner {
        isTradingOpen = true;
        swapEnabled = true;
    }

    function setLimit() external onlyOwner returns (bool) {
        isLimitActive = false;
        return true;
    }

    function setDegenMaxWallet(uint256 amt) external onlyOwner {
        require(
            amt >= ((totalSupply() * 10) / 1000) / 1e18,
            "Max number must be bigger than 1.0%"
        );
        maxTokenPerWallet = amt * (10**18);
    }

    function setTxMax(uint256 amt) external onlyOwner {
        require(
            amt >= ((totalSupply() * 5) / 1000) / 1e18,
            "must be bigger than 0.5%"
        );
        txMaxperWallet = amt * (10**18);
    }

    function setSwapLimit(uint256 amt) external onlyOwner returns (bool) {
        require(
            amt >= (totalSupply() * 1) / 100000,
            "Swap limit must be higher than 0.001% total supply."
        );
        require(
            amt <= (totalSupply() * 5) / 1000,
            "Swap limit cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = amt;
        return true;
    }

    //setswap action
    function setSwapEnabled(bool action) external onlyOwner {
        swapEnabled = action;
    }

    function _excludeFromMaxTx(address newAdd, bool action) public onlyOwner {
        _isTxMaxExcluded[newAdd] = action;
    }

    function setBuyFees(
        uint256 _autoFee,
        uint256 _lpFee,
        uint256 _teamFee
    ) external onlyOwner {
        _buyAutobuyFee = _autoFee;
        _buyLpFee = _lpFee;
        _buyTeamFee = _teamFee;
        buyTotalFees = _buyAutobuyFee + _buyLpFee + _buyTeamFee;
        require(buyTotalFees <= 5, "Buy fee max should 5%");
    }

    function setSellFees(
        uint256 _autoFee,
        uint256 _lpFee,
        uint256 _teamFee
    ) external onlyOwner {
        _sellAutobuyFee = _autoFee;
        _sellLpFee = _lpFee;
        _sellTeamFee = _teamFee;
        sellTotalFees = _sellAutobuyFee + _sellLpFee + _sellTeamFee;
        require(sellTotalFees <= 5, "Sell Max must be 5%");
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function setAutomatedMarketMakerPair(address pair, bool value)
        public
        onlyOwner
    {
        require(
            pair != uniswapV2Pair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function setTeamAddress(address newAdd) external onlyOwner {
        teamWallet = newAdd;
    }

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    function isBlacklisted(address account) public view returns (bool) {
        return blacklisted[account];
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(!blacklisted[from], "Sender blacklisted");
        require(!blacklisted[to], "Receiver blacklisted");

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (isLimitActive) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!isTradingOpen) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

                // buying
                if (automatedMarketMakerPairs[from] && !_isTxMaxExcluded[to]) {
                    require(
                        amount <= txMaxperWallet,
                        "Buy transfer amount exceeds the txMaxperWallet."
                    );
                    require(
                        amount + balanceOf(to) <= maxTokenPerWallet,
                        "Max wallet exceeded"
                    );
                }
                //selling
                else if (
                    automatedMarketMakerPairs[to] && !_isTxMaxExcluded[from]
                ) {
                    require(
                        amount <= txMaxperWallet,
                        "Sell transfer amount exceeds the txMaxperWallet."
                    );
                } else if (!_isTxMaxExcluded[to]) {
                    require(
                        amount + balanceOf(to) <= maxTokenPerWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;
            SwapNow();
            swapping = false;
        }

        bool takeFee = !swapping;

        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;

        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                _LpTokenShare += (fees * _sellLpFee) / sellTotalFees;
                _teamTokenShare += (fees * _sellTeamFee) / sellTotalFees;
                _autoBuyTokenShare += (fees * _sellAutobuyFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                _LpTokenShare += (fees * _buyLpFee) / buyTotalFees;
                _teamTokenShare += (fees * _buyTeamFee) / buyTotalFees;
                _autoBuyTokenShare += (fees * _buyAutobuyFee) / buyTotalFees;
            }

            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }

            amount -= fees;
        }

        super._transfer(from, to, amount);
    }

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

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

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

    function _unibotAutoBuy(uint256 ethAmt) private {
        if (ethAmt > 0) {
            address[] memory path = new address[](2);
            path[0] = uniswapV2Router.WETH();
            path[1] = uniBotAddress;
            uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{
                value: ethAmt
            }(0, path, teamWallet, block.timestamp);
            //emit unibotAutoBuy(teamWallet, ethAmt, path);
        }
    }

    function SwapNow() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = _LpTokenShare +
            _autoBuyTokenShare +
            _teamTokenShare;
        bool success;

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }

        uint256 liquidityTokens = (contractBalance * _LpTokenShare) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);
        uint256 ethForTeam = ethBalance.mul(_teamTokenShare).div(
            totalTokensToSwap - (_LpTokenShare / 2)
        );
        uint256 ethForBuyback = ethBalance.mul(_autoBuyTokenShare).div(
            totalTokensToSwap - (_LpTokenShare / 2)
        );

        uint256 ethForLiquidity = ethBalance - ethForBuyback - ethForTeam;

        _LpTokenShare = 0;
        _autoBuyTokenShare = 0;
        _teamTokenShare = 0;

        (success, ) = address(teamWallet).call{value: ethForTeam}("");

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                _LpTokenShare
            );
        }
        _unibotAutoBuy(ethForBuyback);
    }

    function changeUniswapRouterv2(address newAdd) public onlyOwner {
        uniswapV2Router = IUniswapV2Router02(newAdd);
    }

    function changeUnibotAddress(address newAdd) public onlyOwner {
        uniBotAddress = address(newAdd);
    }

    function blacklist(address newAdd) public onlyOwner {
        blacklisted[newAdd] = true;
    }

    function unblacklist(address newAdd) public onlyOwner {
        blacklisted[newAdd] = false;
    }

    function withdrawEth(address newAdd) external onlyOwner {
        (bool success, ) = newAdd.call{value: address(this).balance}("");
        require(success);
    }

    receive() external payable {}
}

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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","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":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_LpTokenShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_autoBuyTokenShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_buyAutobuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_buyLpFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_buyTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newAdd","type":"address"},{"internalType":"bool","name":"action","type":"bool"}],"name":"_excludeFromMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isTxMaxExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sellAutobuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sellLpFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sellTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_teamTokenShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"newAdd","type":"address"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newAdd","type":"address"}],"name":"changeUnibotAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAdd","type":"address"}],"name":"changeUniswapRouterv2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deadAddress","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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","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":"initContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isLimitActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isTradingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchUnichad","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTokenPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_autoFee","type":"uint256"},{"internalType":"uint256","name":"_lpFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"setDegenMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_autoFee","type":"uint256"},{"internalType":"uint256","name":"_lpFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"setSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"action","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"setSwapLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAdd","type":"address"}],"name":"setTeamAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"setTxMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"txMaxperWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newAdd","type":"address"}],"name":"unblacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniBotAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newAdd","type":"address"}],"name":"withdrawEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600780546001600160a01b03191673f819d9cb1c2a819fd991781a822de3ca8607c3c91790556003600a8190556002600b8190555f600c81905562000049916200025b565b6200005591906200025b565b600d556003600e8190556002600f8190555f601081905562000077916200025b565b6200008391906200025b565b60115534801562000092575f80fd5b5060408051808201825260078082526615539250d2105160ca1b6020808401829052845180860190955291845290830152906003620000d2838262000320565b506004620000e1828262000320565b505050620000fe620000f86200011c60201b60201c565b62000120565b69d3c21bcecceda100000062000115338262000171565b50620003e8565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038216620001cc5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060025f828254620001df91906200025b565b90915550506001600160a01b0382165f90815260208190526040812080548392906200020d9084906200025b565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b808201808211156200027b57634e487b7160e01b5f52601160045260245ffd5b92915050565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620002aa57607f821691505b602082108103620002c957634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000256575f81815260208120601f850160051c81016020861015620002f75750805b601f850160051c820191505b81811015620003185782815560010162000303565b505050505050565b81516001600160401b038111156200033c576200033c62000281565b62000354816200034d845462000295565b84620002cf565b602080601f8311600181146200038a575f8415620003725750858301515b5f19600386901b1c1916600185901b17855562000318565b5f85815260208120601f198616915b82811015620003ba5788860151825594840194600190910190840162000399565b5085821015620003d857878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b612dd480620003f65f395ff3fe608060405260043610610374575f3560e01c80636ddd1713116101c8578063a650f575116100fd578063dd62ed3e1161009d578063f2fde38b1161006d578063f2fde38b146109ce578063f9f92be4146109ed578063fc772b5014610a0c578063fe575a8714610a3a575f80fd5b8063dd62ed3e14610937578063e01af92c1461097b578063e2f456051461099a578063ebce5310146109af575f80fd5b8063c0246668116100d8578063c0246668146108d9578063c469b6dd146108f8578063cab034711461090d578063d85ba06314610922575f80fd5b8063a650f5751461086c578063a9059cbb1461088c578063b62496f5146108ab575f80fd5b80638da5cb5b116101685780639a7a23d6116101435780639a7a23d6146107fa578063a053f16c14610819578063a37003781461082e578063a457c2d71461084d575f80fd5b80638da5cb5b146107b557806394a27b4d146107d257806395d89b41146107e6575f80fd5b806375ca7969116101a357806375ca79691461075857806375e3661e1461076d5780637a8baf521461078c5780638203f5fe146107a1575f80fd5b80636ddd1713146106f057806370a0823114610710578063715018a614610744575f80fd5b806327c8f835116102a95780634d28337511610249578063642666fc11610219578063642666fc146106895780636690864e146106a857806368849ed2146106c75780636a486a8e146106db575f80fd5b80634d283375146105f45780634fbee1931461061357806356a060a21461064a578063599270441461066a575f80fd5b8063395093511161028457806339509351146105825780633ac0fc7e146105a157806349bd5a5e146105b65780634b46e301146105d5575f80fd5b806327c8f8351461053d578063313ce567146105525780633384a40d1461056d575f80fd5b80631694505e1161031457806318160ddd116102ef57806318160ddd146104d6578063182c425c146104ea57806323b872dd146104ff57806325e160631461051e575f80fd5b80631694505e1461046b57806317728692146104a2578063177288b5146104c1575f80fd5b8063095ea7b31161034f578063095ea7b3146103dd5780630d075d9c1461040c5780630d595ef41461042d5780630f683e901461044c575f80fd5b80630178bcf31461037f5780630615102d146103a757806306fdde03146103bc575f80fd5b3661037b57005b5f80fd5b34801561038a575f80fd5b5061039460145481565b6040519081526020015b60405180910390f35b3480156103b2575f80fd5b50610394600f5481565b3480156103c7575f80fd5b506103d0610a71565b60405161039e9190612963565b3480156103e8575f80fd5b506103fc6103f73660046129c2565b610b01565b604051901515815260200161039e565b348015610417575f80fd5b5061042b6104263660046129ec565b610b17565b005b348015610438575f80fd5b5061042b610447366004612a15565b610bc0565b348015610457575f80fd5b5061042b6104663660046129ec565b610c91565b348015610476575f80fd5b5060065461048a906001600160a01b031681565b6040516001600160a01b03909116815260200161039e565b3480156104ad575f80fd5b5061042b6104bc366004612a2c565b610d2a565b3480156104cc575f80fd5b5061039460155481565b3480156104e1575f80fd5b50600254610394565b3480156104f5575f80fd5b50610394600b5481565b34801561050a575f80fd5b506103fc610519366004612a47565b610d76565b348015610529575f80fd5b5061042b610538366004612a2c565b610e1e565b348015610548575f80fd5b5061048a61dead81565b34801561055d575f80fd5b506040516012815260200161039e565b348015610578575f80fd5b50610394600a5481565b34801561058d575f80fd5b506103fc61059c3660046129c2565b610ea7565b3480156105ac575f80fd5b5061039460135481565b3480156105c1575f80fd5b5060095461048a906001600160a01b031681565b3480156105e0575f80fd5b506103fc6105ef366004612a15565b610ee2565b3480156105ff575f80fd5b5061042b61060e366004612a94565b611035565b34801561061e575f80fd5b506103fc61062d366004612a2c565b6001600160a01b03165f9081526019602052604090205460ff1690565b348015610655575f80fd5b506009546103fc90600160a81b900460ff1681565b348015610675575f80fd5b5060085461048a906001600160a01b031681565b348015610694575f80fd5b5061042b6106a3366004612a2c565b611089565b3480156106b3575f80fd5b5061042b6106c2366004612a2c565b6110d5565b3480156106d2575f80fd5b506103fc611121565b3480156106e6575f80fd5b5061039460115481565b3480156106fb575f80fd5b506009546103fc90600160b01b900460ff1681565b34801561071b575f80fd5b5061039461072a366004612a2c565b6001600160a01b03165f9081526020819052604090205490565b34801561074f575f80fd5b5061042b611160565b348015610763575f80fd5b5061039460125481565b348015610778575f80fd5b5061042b610787366004612a2c565b611195565b348015610797575f80fd5b5061039460165481565b3480156107ac575f80fd5b5061042b6111df565b3480156107c0575f80fd5b506005546001600160a01b031661048a565b3480156107dd575f80fd5b5061042b6114e3565b3480156107f1575f80fd5b506103d0611524565b348015610805575f80fd5b5061042b610814366004612a94565b611533565b348015610824575f80fd5b50610394600e5481565b348015610839575f80fd5b5061042b610848366004612a15565b6115eb565b348015610858575f80fd5b506103fc6108673660046129c2565b6116b0565b348015610877575f80fd5b506009546103fc90600160a01b900460ff1681565b348015610897575f80fd5b506103fc6108a63660046129c2565b611748565b3480156108b6575f80fd5b506103fc6108c5366004612a2c565b601b6020525f908152604090205460ff1681565b3480156108e4575f80fd5b5061042b6108f3366004612a94565b611754565b348015610903575f80fd5b50610394600c5481565b348015610918575f80fd5b5061039460105481565b34801561092d575f80fd5b50610394600d5481565b348015610942575f80fd5b50610394610951366004612ac7565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610986575f80fd5b5061042b610995366004612afe565b6117dc565b3480156109a5575f80fd5b5061039460175481565b3480156109ba575f80fd5b5060075461048a906001600160a01b031681565b3480156109d9575f80fd5b5061042b6109e8366004612a2c565b611824565b3480156109f8575f80fd5b5061042b610a07366004612a2c565b6118bf565b348015610a17575f80fd5b506103fc610a26366004612a2c565b601a6020525f908152604090205460ff1681565b348015610a45575f80fd5b506103fc610a54366004612a2c565b6001600160a01b03165f9081526018602052604090205460ff1690565b606060038054610a8090612b17565b80601f0160208091040260200160405190810160405280929190818152602001828054610aac90612b17565b8015610af75780601f10610ace57610100808354040283529160200191610af7565b820191905f5260205f20905b815481529060010190602001808311610ada57829003601f168201915b5050505050905090565b5f610b0d33848461190c565b5060015b92915050565b6005546001600160a01b03163314610b4a5760405162461bcd60e51b8152600401610b4190612b4f565b60405180910390fd5b600a839055600b829055600c81905580610b648385612b98565b610b6e9190612b98565b600d81905560051015610bbb5760405162461bcd60e51b815260206004820152601560248201527442757920666565206d61782073686f756c6420352560581b6044820152606401610b41565b505050565b6005546001600160a01b03163314610bea5760405162461bcd60e51b8152600401610b4190612b4f565b670de0b6b3a76400006103e8610bff60025490565b610c0a90600a612bab565b610c149190612bc2565b610c1e9190612bc2565b811015610c795760405162461bcd60e51b815260206004820152602360248201527f4d6178206e756d626572206d75737420626520626967676572207468616e20316044820152622e302560e81b6064820152608401610b41565b610c8b81670de0b6b3a7640000612bab565b60165550565b6005546001600160a01b03163314610cbb5760405162461bcd60e51b8152600401610b4190612b4f565b600e839055600f829055601081905580610cd58385612b98565b610cdf9190612b98565b601181905560051015610bbb5760405162461bcd60e51b815260206004820152601360248201527253656c6c204d6178206d75737420626520352560681b6044820152606401610b41565b6005546001600160a01b03163314610d545760405162461bcd60e51b8152600401610b4190612b4f565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b5f610d82848484611a2f565b6001600160a01b0384165f90815260016020908152604080832033845290915290205482811015610e065760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610b41565b610e13853385840361190c565b506001949350505050565b6005546001600160a01b03163314610e485760405162461bcd60e51b8152600401610b4190612b4f565b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f8114610e91576040519150601f19603f3d011682016040523d82523d5f602084013e610e96565b606091505b5050905080610ea3575f80fd5b5050565b335f8181526001602090815260408083206001600160a01b03871684529091528120549091610b0d918590610edd908690612b98565b61190c565b6005545f906001600160a01b03163314610f0e5760405162461bcd60e51b8152600401610b4190612b4f565b620186a0610f1b60025490565b610f26906001612bab565b610f309190612bc2565b821015610f9b5760405162461bcd60e51b815260206004820152603360248201527f53776170206c696d6974206d75737420626520686967686572207468616e20306044820152721718181892903a37ba30b61039bab838363c9760691b6064820152608401610b41565b6103e8610fa760025490565b610fb2906005612bab565b610fbc9190612bc2565b8211156110275760405162461bcd60e51b815260206004820152603360248201527f53776170206c696d69742063616e6e6f7420626520686967686572207468616e6044820152721018171a92903a37ba30b61039bab838363c9760691b6064820152608401610b41565b50601781905560015b919050565b6005546001600160a01b0316331461105f5760405162461bcd60e51b8152600401610b4190612b4f565b6001600160a01b03919091165f908152601a60205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146110b35760405162461bcd60e51b8152600401610b4190612b4f565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146110ff5760405162461bcd60e51b8152600401610b4190612b4f565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6005545f906001600160a01b0316331461114d5760405162461bcd60e51b8152600401610b4190612b4f565b506009805460ff60a01b19169055600190565b6005546001600160a01b0316331461118a5760405162461bcd60e51b8152600401610b4190612b4f565b6111935f6121d7565b565b6005546001600160a01b031633146111bf5760405162461bcd60e51b8152600401610b4190612b4f565b6001600160a01b03165f908152601860205260409020805460ff19169055565b6005546001600160a01b031633146112095760405162461bcd60e51b8152600401610b4190612b4f565b600680546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801561126b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061128f9190612be1565b6001600160a01b031663c9c653963060065f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156112ee573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113129190612be1565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af115801561135c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113809190612be1565b600980546001600160a01b0319166001600160a01b039290921691821790556113aa906001612228565b6009805462ffffff60a01b1916600160a01b17905569021e19e0c9bab24000006015819055601655604080516318160ddd60e01b815290516127109130916318160ddd916004808201926020929091908290030181865afa158015611411573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114359190612bfc565b611440906005612bab565b61144a9190612bc2565b6017556114696114626005546001600160a01b031690565b6001611754565b611474306001611754565b61148161dead6001611754565b61149d6114966005546001600160a01b031690565b6001611035565b6114a8306001611035565b6114b561dead6001611035565b6006546114cc906001600160a01b03166001611035565b600954611193906001600160a01b03166001611035565b6005546001600160a01b0316331461150d5760405162461bcd60e51b8152600401610b4190612b4f565b6009805461ffff60a81b191661010160a81b179055565b606060048054610a8090612b17565b6005546001600160a01b0316331461155d5760405162461bcd60e51b8152600401610b4190612b4f565b6009546001600160a01b03908116908316036115e15760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610b41565b610ea38282612228565b6005546001600160a01b031633146116155760405162461bcd60e51b8152600401610b4190612b4f565b670de0b6b3a76400006103e861162a60025490565b611635906005612bab565b61163f9190612bc2565b6116499190612bc2565b8110156116985760405162461bcd60e51b815260206004820152601860248201527f6d75737420626520626967676572207468616e20302e352500000000000000006044820152606401610b41565b6116aa81670de0b6b3a7640000612bab565b60155550565b335f9081526001602090815260408083206001600160a01b0386168452909152812054828110156117315760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610b41565b61173e338585840361190c565b5060019392505050565b5f610b0d338484611a2f565b6005546001600160a01b0316331461177e5760405162461bcd60e51b8152600401610b4190612b4f565b6001600160a01b0382165f81815260196020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146118065760405162461bcd60e51b8152600401610b4190612b4f565b60098054911515600160b01b0260ff60b01b19909216919091179055565b6005546001600160a01b0316331461184e5760405162461bcd60e51b8152600401610b4190612b4f565b6001600160a01b0381166118b35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b41565b6118bc816121d7565b50565b6005546001600160a01b031633146118e95760405162461bcd60e51b8152600401610b4190612b4f565b6001600160a01b03165f908152601860205260409020805460ff19166001179055565b6001600160a01b03831661196e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b41565b6001600160a01b0382166119cf5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b41565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611a555760405162461bcd60e51b8152600401610b4190612c13565b6001600160a01b038216611a7b5760405162461bcd60e51b8152600401610b4190612c58565b6001600160a01b0383165f9081526018602052604090205460ff1615611ad85760405162461bcd60e51b815260206004820152601260248201527114d95b99195c88189b1858dadb1a5cdd195960721b6044820152606401610b41565b6001600160a01b0382165f9081526018602052604090205460ff1615611b375760405162461bcd60e51b8152602060048201526014602482015273149958d95a5d995c88189b1858dadb1a5cdd195960621b6044820152606401610b41565b805f03611b4957610bbb83835f61227b565b600954600160a01b900460ff1615611eb3576005546001600160a01b03848116911614801590611b8757506005546001600160a01b03838116911614155b8015611b9b57506001600160a01b03821615155b8015611bb257506001600160a01b03821661dead14155b8015611bc85750600954600160b81b900460ff16155b15611eb357600954600160a81b900460ff16611c60576001600160a01b0383165f9081526019602052604090205460ff1680611c1b57506001600160a01b0382165f9081526019602052604090205460ff165b611c605760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610b41565b6001600160a01b0383165f908152601b602052604090205460ff168015611c9f57506001600160a01b0382165f908152601a602052604090205460ff16155b15611d7c57601554811115611d0e5760405162461bcd60e51b815260206004820152602f60248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526e3a3c26b0bc3832b92bb0b63632ba1760891b6064820152608401610b41565b6016546001600160a01b0383165f90815260208190526040902054611d339083612b98565b1115611d775760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b41565b611eb3565b6001600160a01b0382165f908152601b602052604090205460ff168015611dbb57506001600160a01b0383165f908152601a602052604090205460ff16155b15611e2b57601554811115611d775760405162461bcd60e51b815260206004820152603060248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201526f103a3c26b0bc3832b92bb0b63632ba1760811b6064820152608401610b41565b6001600160a01b0382165f908152601a602052604090205460ff16611eb3576016546001600160a01b0383165f90815260208190526040902054611e6f9083612b98565b1115611eb35760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b41565b305f9081526020819052604090205460175481108015908190611edf5750600954600160b01b900460ff165b8015611ef55750600954600160b81b900460ff16155b8015611f1957506001600160a01b0385165f908152601b602052604090205460ff16155b8015611f3d57506001600160a01b0385165f9081526019602052604090205460ff16155b8015611f6157506001600160a01b0384165f9081526019602052604090205460ff16155b15611f8f576009805460ff60b81b1916600160b81b179055611f816123ce565b6009805460ff60b81b191690555b6009546001600160a01b0386165f9081526019602052604090205460ff600160b81b909204821615911680611fdb57506001600160a01b0385165f9081526019602052604090205460ff165b15611fe357505f5b5f81156121c3576001600160a01b0386165f908152601b602052604090205460ff16801561201257505f601154115b156120cd576120376064612031601154886125d190919063ffffffff16565b906125e3565b9050601154600f548261204a9190612bab565b6120549190612bc2565b60135f8282546120649190612b98565b90915550506011546010546120799083612bab565b6120839190612bc2565b60145f8282546120939190612b98565b9091555050601154600e546120a89083612bab565b6120b29190612bc2565b60125f8282546120c29190612b98565b909155506121a59050565b6001600160a01b0387165f908152601b602052604090205460ff1680156120f557505f600d54115b156121a5576121146064612031600d54886125d190919063ffffffff16565b9050600d54600b54826121279190612bab565b6121319190612bc2565b60135f8282546121419190612b98565b9091555050600d54600c546121569083612bab565b6121609190612bc2565b60145f8282546121709190612b98565b9091555050600d54600a546121859083612bab565b61218f9190612bc2565b60125f82825461219f9190612b98565b90915550505b80156121b6576121b687308361227b565b6121c08186612c9b565b94505b6121ce87878761227b565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f818152601b6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166122a15760405162461bcd60e51b8152600401610b4190612c13565b6001600160a01b0382166122c75760405162461bcd60e51b8152600401610b4190612c58565b6001600160a01b0383165f908152602081905260409020548181101561233e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610b41565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290612374908490612b98565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516123c091815260200190565b60405180910390a350505050565b305f9081526020819052604081205490505f6014546012546013546123f39190612b98565b6123fd9190612b98565b90505f82158061240b575081155b1561241557505050565b601754612423906014612bab565b83111561243b57601754612438906014612bab565b92505b5f6002836013548661244d9190612bab565b6124579190612bc2565b6124619190612bc2565b90505f61246e85836125ee565b90504761247a826125f9565b5f61248547836125ee565b90505f6124b2600260135461249a9190612bc2565b6124a49089612c9b565b6014546120319085906125d1565b90505f6124df60026013546124c79190612bc2565b6124d1908a612c9b565b6012546120319086906125d1565b90505f826124ed8386612c9b565b6124f79190612c9b565b5f6013819055601281905560148190556008546040519293506001600160a01b031691859181818185875af1925050503d805f8114612551576040519150601f19603f3d011682016040523d82523d5f602084013e612556565b606091505b5090985050861580159061256957505f81115b156125bc576125788782612749565b601354604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6125c58261281b565b50505050505050505050565b5f6125dc8284612bab565b9392505050565b5f6125dc8284612bc2565b5f6125dc8284612c9b565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061262c5761262c612cae565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015612683573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126a79190612be1565b816001815181106126ba576126ba612cae565b6001600160a01b0392831660209182029290920101526006546126e0913091168461190c565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac947906127189085905f90869030904290600401612d04565b5f604051808303815f87803b15801561272f575f80fd5b505af1158015612741573d5f803e3d5ffd5b505050505050565b6006546127619030906001600160a01b03168461190c565b6006546001600160a01b031663f305d7198230855f806127896005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156127ef573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906128149190612d3f565b5050505050565b80156118bc576040805160028082526060820183525f926020830190803683375050600654604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c4648925060048083019260209291908290030181865afa158015612888573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128ac9190612be1565b815f815181106128be576128be612cae565b6001600160a01b0392831660209182029290920101526007548251911690829060019081106128ef576128ef612cae565b6001600160a01b03928316602091820292909201015260065460085460405163b6f9de9560e01b81529183169263b6f9de9592869261293a925f928892909116904290600401612d6a565b5f604051808303818588803b158015612951575f80fd5b505af11580156121ce573d5f803e3d5ffd5b5f6020808352835180828501525f5b8181101561298e57858101830151858201604001528201612972565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146118bc575f80fd5b5f80604083850312156129d3575f80fd5b82356129de816129ae565b946020939093013593505050565b5f805f606084860312156129fe575f80fd5b505081359360208301359350604090920135919050565b5f60208284031215612a25575f80fd5b5035919050565b5f60208284031215612a3c575f80fd5b81356125dc816129ae565b5f805f60608486031215612a59575f80fd5b8335612a64816129ae565b92506020840135612a74816129ae565b929592945050506040919091013590565b80358015158114611030575f80fd5b5f8060408385031215612aa5575f80fd5b8235612ab0816129ae565b9150612abe60208401612a85565b90509250929050565b5f8060408385031215612ad8575f80fd5b8235612ae3816129ae565b91506020830135612af3816129ae565b809150509250929050565b5f60208284031215612b0e575f80fd5b6125dc82612a85565b600181811c90821680612b2b57607f821691505b602082108103612b4957634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b80820180821115610b1157610b11612b84565b8082028115828204841417610b1157610b11612b84565b5f82612bdc57634e487b7160e01b5f52601260045260245ffd5b500490565b5f60208284031215612bf1575f80fd5b81516125dc816129ae565b5f60208284031215612c0c575f80fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610b1157610b11612b84565b634e487b7160e01b5f52603260045260245ffd5b5f8151808452602080850194508084015f5b83811015612cf95781516001600160a01b031687529582019590820190600101612cd4565b509495945050505050565b85815284602082015260a060408201525f612d2260a0830186612cc2565b6001600160a01b0394909416606083015250608001529392505050565b5f805f60608486031215612d51575f80fd5b8351925060208401519150604084015190509250925092565b848152608060208201525f612d826080830186612cc2565b6001600160a01b0394909416604083015250606001529291505056fea264697066735822122014ceb3e84887d05159e963debb4180a42d65213cc4bd42bf822e201b27925a4564736f6c63430008150033

Deployed Bytecode

0x608060405260043610610374575f3560e01c80636ddd1713116101c8578063a650f575116100fd578063dd62ed3e1161009d578063f2fde38b1161006d578063f2fde38b146109ce578063f9f92be4146109ed578063fc772b5014610a0c578063fe575a8714610a3a575f80fd5b8063dd62ed3e14610937578063e01af92c1461097b578063e2f456051461099a578063ebce5310146109af575f80fd5b8063c0246668116100d8578063c0246668146108d9578063c469b6dd146108f8578063cab034711461090d578063d85ba06314610922575f80fd5b8063a650f5751461086c578063a9059cbb1461088c578063b62496f5146108ab575f80fd5b80638da5cb5b116101685780639a7a23d6116101435780639a7a23d6146107fa578063a053f16c14610819578063a37003781461082e578063a457c2d71461084d575f80fd5b80638da5cb5b146107b557806394a27b4d146107d257806395d89b41146107e6575f80fd5b806375ca7969116101a357806375ca79691461075857806375e3661e1461076d5780637a8baf521461078c5780638203f5fe146107a1575f80fd5b80636ddd1713146106f057806370a0823114610710578063715018a614610744575f80fd5b806327c8f835116102a95780634d28337511610249578063642666fc11610219578063642666fc146106895780636690864e146106a857806368849ed2146106c75780636a486a8e146106db575f80fd5b80634d283375146105f45780634fbee1931461061357806356a060a21461064a578063599270441461066a575f80fd5b8063395093511161028457806339509351146105825780633ac0fc7e146105a157806349bd5a5e146105b65780634b46e301146105d5575f80fd5b806327c8f8351461053d578063313ce567146105525780633384a40d1461056d575f80fd5b80631694505e1161031457806318160ddd116102ef57806318160ddd146104d6578063182c425c146104ea57806323b872dd146104ff57806325e160631461051e575f80fd5b80631694505e1461046b57806317728692146104a2578063177288b5146104c1575f80fd5b8063095ea7b31161034f578063095ea7b3146103dd5780630d075d9c1461040c5780630d595ef41461042d5780630f683e901461044c575f80fd5b80630178bcf31461037f5780630615102d146103a757806306fdde03146103bc575f80fd5b3661037b57005b5f80fd5b34801561038a575f80fd5b5061039460145481565b6040519081526020015b60405180910390f35b3480156103b2575f80fd5b50610394600f5481565b3480156103c7575f80fd5b506103d0610a71565b60405161039e9190612963565b3480156103e8575f80fd5b506103fc6103f73660046129c2565b610b01565b604051901515815260200161039e565b348015610417575f80fd5b5061042b6104263660046129ec565b610b17565b005b348015610438575f80fd5b5061042b610447366004612a15565b610bc0565b348015610457575f80fd5b5061042b6104663660046129ec565b610c91565b348015610476575f80fd5b5060065461048a906001600160a01b031681565b6040516001600160a01b03909116815260200161039e565b3480156104ad575f80fd5b5061042b6104bc366004612a2c565b610d2a565b3480156104cc575f80fd5b5061039460155481565b3480156104e1575f80fd5b50600254610394565b3480156104f5575f80fd5b50610394600b5481565b34801561050a575f80fd5b506103fc610519366004612a47565b610d76565b348015610529575f80fd5b5061042b610538366004612a2c565b610e1e565b348015610548575f80fd5b5061048a61dead81565b34801561055d575f80fd5b506040516012815260200161039e565b348015610578575f80fd5b50610394600a5481565b34801561058d575f80fd5b506103fc61059c3660046129c2565b610ea7565b3480156105ac575f80fd5b5061039460135481565b3480156105c1575f80fd5b5060095461048a906001600160a01b031681565b3480156105e0575f80fd5b506103fc6105ef366004612a15565b610ee2565b3480156105ff575f80fd5b5061042b61060e366004612a94565b611035565b34801561061e575f80fd5b506103fc61062d366004612a2c565b6001600160a01b03165f9081526019602052604090205460ff1690565b348015610655575f80fd5b506009546103fc90600160a81b900460ff1681565b348015610675575f80fd5b5060085461048a906001600160a01b031681565b348015610694575f80fd5b5061042b6106a3366004612a2c565b611089565b3480156106b3575f80fd5b5061042b6106c2366004612a2c565b6110d5565b3480156106d2575f80fd5b506103fc611121565b3480156106e6575f80fd5b5061039460115481565b3480156106fb575f80fd5b506009546103fc90600160b01b900460ff1681565b34801561071b575f80fd5b5061039461072a366004612a2c565b6001600160a01b03165f9081526020819052604090205490565b34801561074f575f80fd5b5061042b611160565b348015610763575f80fd5b5061039460125481565b348015610778575f80fd5b5061042b610787366004612a2c565b611195565b348015610797575f80fd5b5061039460165481565b3480156107ac575f80fd5b5061042b6111df565b3480156107c0575f80fd5b506005546001600160a01b031661048a565b3480156107dd575f80fd5b5061042b6114e3565b3480156107f1575f80fd5b506103d0611524565b348015610805575f80fd5b5061042b610814366004612a94565b611533565b348015610824575f80fd5b50610394600e5481565b348015610839575f80fd5b5061042b610848366004612a15565b6115eb565b348015610858575f80fd5b506103fc6108673660046129c2565b6116b0565b348015610877575f80fd5b506009546103fc90600160a01b900460ff1681565b348015610897575f80fd5b506103fc6108a63660046129c2565b611748565b3480156108b6575f80fd5b506103fc6108c5366004612a2c565b601b6020525f908152604090205460ff1681565b3480156108e4575f80fd5b5061042b6108f3366004612a94565b611754565b348015610903575f80fd5b50610394600c5481565b348015610918575f80fd5b5061039460105481565b34801561092d575f80fd5b50610394600d5481565b348015610942575f80fd5b50610394610951366004612ac7565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610986575f80fd5b5061042b610995366004612afe565b6117dc565b3480156109a5575f80fd5b5061039460175481565b3480156109ba575f80fd5b5060075461048a906001600160a01b031681565b3480156109d9575f80fd5b5061042b6109e8366004612a2c565b611824565b3480156109f8575f80fd5b5061042b610a07366004612a2c565b6118bf565b348015610a17575f80fd5b506103fc610a26366004612a2c565b601a6020525f908152604090205460ff1681565b348015610a45575f80fd5b506103fc610a54366004612a2c565b6001600160a01b03165f9081526018602052604090205460ff1690565b606060038054610a8090612b17565b80601f0160208091040260200160405190810160405280929190818152602001828054610aac90612b17565b8015610af75780601f10610ace57610100808354040283529160200191610af7565b820191905f5260205f20905b815481529060010190602001808311610ada57829003601f168201915b5050505050905090565b5f610b0d33848461190c565b5060015b92915050565b6005546001600160a01b03163314610b4a5760405162461bcd60e51b8152600401610b4190612b4f565b60405180910390fd5b600a839055600b829055600c81905580610b648385612b98565b610b6e9190612b98565b600d81905560051015610bbb5760405162461bcd60e51b815260206004820152601560248201527442757920666565206d61782073686f756c6420352560581b6044820152606401610b41565b505050565b6005546001600160a01b03163314610bea5760405162461bcd60e51b8152600401610b4190612b4f565b670de0b6b3a76400006103e8610bff60025490565b610c0a90600a612bab565b610c149190612bc2565b610c1e9190612bc2565b811015610c795760405162461bcd60e51b815260206004820152602360248201527f4d6178206e756d626572206d75737420626520626967676572207468616e20316044820152622e302560e81b6064820152608401610b41565b610c8b81670de0b6b3a7640000612bab565b60165550565b6005546001600160a01b03163314610cbb5760405162461bcd60e51b8152600401610b4190612b4f565b600e839055600f829055601081905580610cd58385612b98565b610cdf9190612b98565b601181905560051015610bbb5760405162461bcd60e51b815260206004820152601360248201527253656c6c204d6178206d75737420626520352560681b6044820152606401610b41565b6005546001600160a01b03163314610d545760405162461bcd60e51b8152600401610b4190612b4f565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b5f610d82848484611a2f565b6001600160a01b0384165f90815260016020908152604080832033845290915290205482811015610e065760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610b41565b610e13853385840361190c565b506001949350505050565b6005546001600160a01b03163314610e485760405162461bcd60e51b8152600401610b4190612b4f565b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f8114610e91576040519150601f19603f3d011682016040523d82523d5f602084013e610e96565b606091505b5050905080610ea3575f80fd5b5050565b335f8181526001602090815260408083206001600160a01b03871684529091528120549091610b0d918590610edd908690612b98565b61190c565b6005545f906001600160a01b03163314610f0e5760405162461bcd60e51b8152600401610b4190612b4f565b620186a0610f1b60025490565b610f26906001612bab565b610f309190612bc2565b821015610f9b5760405162461bcd60e51b815260206004820152603360248201527f53776170206c696d6974206d75737420626520686967686572207468616e20306044820152721718181892903a37ba30b61039bab838363c9760691b6064820152608401610b41565b6103e8610fa760025490565b610fb2906005612bab565b610fbc9190612bc2565b8211156110275760405162461bcd60e51b815260206004820152603360248201527f53776170206c696d69742063616e6e6f7420626520686967686572207468616e6044820152721018171a92903a37ba30b61039bab838363c9760691b6064820152608401610b41565b50601781905560015b919050565b6005546001600160a01b0316331461105f5760405162461bcd60e51b8152600401610b4190612b4f565b6001600160a01b03919091165f908152601a60205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146110b35760405162461bcd60e51b8152600401610b4190612b4f565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146110ff5760405162461bcd60e51b8152600401610b4190612b4f565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6005545f906001600160a01b0316331461114d5760405162461bcd60e51b8152600401610b4190612b4f565b506009805460ff60a01b19169055600190565b6005546001600160a01b0316331461118a5760405162461bcd60e51b8152600401610b4190612b4f565b6111935f6121d7565b565b6005546001600160a01b031633146111bf5760405162461bcd60e51b8152600401610b4190612b4f565b6001600160a01b03165f908152601860205260409020805460ff19169055565b6005546001600160a01b031633146112095760405162461bcd60e51b8152600401610b4190612b4f565b600680546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801561126b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061128f9190612be1565b6001600160a01b031663c9c653963060065f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156112ee573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113129190612be1565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af115801561135c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113809190612be1565b600980546001600160a01b0319166001600160a01b039290921691821790556113aa906001612228565b6009805462ffffff60a01b1916600160a01b17905569021e19e0c9bab24000006015819055601655604080516318160ddd60e01b815290516127109130916318160ddd916004808201926020929091908290030181865afa158015611411573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114359190612bfc565b611440906005612bab565b61144a9190612bc2565b6017556114696114626005546001600160a01b031690565b6001611754565b611474306001611754565b61148161dead6001611754565b61149d6114966005546001600160a01b031690565b6001611035565b6114a8306001611035565b6114b561dead6001611035565b6006546114cc906001600160a01b03166001611035565b600954611193906001600160a01b03166001611035565b6005546001600160a01b0316331461150d5760405162461bcd60e51b8152600401610b4190612b4f565b6009805461ffff60a81b191661010160a81b179055565b606060048054610a8090612b17565b6005546001600160a01b0316331461155d5760405162461bcd60e51b8152600401610b4190612b4f565b6009546001600160a01b03908116908316036115e15760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610b41565b610ea38282612228565b6005546001600160a01b031633146116155760405162461bcd60e51b8152600401610b4190612b4f565b670de0b6b3a76400006103e861162a60025490565b611635906005612bab565b61163f9190612bc2565b6116499190612bc2565b8110156116985760405162461bcd60e51b815260206004820152601860248201527f6d75737420626520626967676572207468616e20302e352500000000000000006044820152606401610b41565b6116aa81670de0b6b3a7640000612bab565b60155550565b335f9081526001602090815260408083206001600160a01b0386168452909152812054828110156117315760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610b41565b61173e338585840361190c565b5060019392505050565b5f610b0d338484611a2f565b6005546001600160a01b0316331461177e5760405162461bcd60e51b8152600401610b4190612b4f565b6001600160a01b0382165f81815260196020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146118065760405162461bcd60e51b8152600401610b4190612b4f565b60098054911515600160b01b0260ff60b01b19909216919091179055565b6005546001600160a01b0316331461184e5760405162461bcd60e51b8152600401610b4190612b4f565b6001600160a01b0381166118b35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b41565b6118bc816121d7565b50565b6005546001600160a01b031633146118e95760405162461bcd60e51b8152600401610b4190612b4f565b6001600160a01b03165f908152601860205260409020805460ff19166001179055565b6001600160a01b03831661196e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b41565b6001600160a01b0382166119cf5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b41565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611a555760405162461bcd60e51b8152600401610b4190612c13565b6001600160a01b038216611a7b5760405162461bcd60e51b8152600401610b4190612c58565b6001600160a01b0383165f9081526018602052604090205460ff1615611ad85760405162461bcd60e51b815260206004820152601260248201527114d95b99195c88189b1858dadb1a5cdd195960721b6044820152606401610b41565b6001600160a01b0382165f9081526018602052604090205460ff1615611b375760405162461bcd60e51b8152602060048201526014602482015273149958d95a5d995c88189b1858dadb1a5cdd195960621b6044820152606401610b41565b805f03611b4957610bbb83835f61227b565b600954600160a01b900460ff1615611eb3576005546001600160a01b03848116911614801590611b8757506005546001600160a01b03838116911614155b8015611b9b57506001600160a01b03821615155b8015611bb257506001600160a01b03821661dead14155b8015611bc85750600954600160b81b900460ff16155b15611eb357600954600160a81b900460ff16611c60576001600160a01b0383165f9081526019602052604090205460ff1680611c1b57506001600160a01b0382165f9081526019602052604090205460ff165b611c605760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610b41565b6001600160a01b0383165f908152601b602052604090205460ff168015611c9f57506001600160a01b0382165f908152601a602052604090205460ff16155b15611d7c57601554811115611d0e5760405162461bcd60e51b815260206004820152602f60248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526e3a3c26b0bc3832b92bb0b63632ba1760891b6064820152608401610b41565b6016546001600160a01b0383165f90815260208190526040902054611d339083612b98565b1115611d775760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b41565b611eb3565b6001600160a01b0382165f908152601b602052604090205460ff168015611dbb57506001600160a01b0383165f908152601a602052604090205460ff16155b15611e2b57601554811115611d775760405162461bcd60e51b815260206004820152603060248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201526f103a3c26b0bc3832b92bb0b63632ba1760811b6064820152608401610b41565b6001600160a01b0382165f908152601a602052604090205460ff16611eb3576016546001600160a01b0383165f90815260208190526040902054611e6f9083612b98565b1115611eb35760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b41565b305f9081526020819052604090205460175481108015908190611edf5750600954600160b01b900460ff165b8015611ef55750600954600160b81b900460ff16155b8015611f1957506001600160a01b0385165f908152601b602052604090205460ff16155b8015611f3d57506001600160a01b0385165f9081526019602052604090205460ff16155b8015611f6157506001600160a01b0384165f9081526019602052604090205460ff16155b15611f8f576009805460ff60b81b1916600160b81b179055611f816123ce565b6009805460ff60b81b191690555b6009546001600160a01b0386165f9081526019602052604090205460ff600160b81b909204821615911680611fdb57506001600160a01b0385165f9081526019602052604090205460ff165b15611fe357505f5b5f81156121c3576001600160a01b0386165f908152601b602052604090205460ff16801561201257505f601154115b156120cd576120376064612031601154886125d190919063ffffffff16565b906125e3565b9050601154600f548261204a9190612bab565b6120549190612bc2565b60135f8282546120649190612b98565b90915550506011546010546120799083612bab565b6120839190612bc2565b60145f8282546120939190612b98565b9091555050601154600e546120a89083612bab565b6120b29190612bc2565b60125f8282546120c29190612b98565b909155506121a59050565b6001600160a01b0387165f908152601b602052604090205460ff1680156120f557505f600d54115b156121a5576121146064612031600d54886125d190919063ffffffff16565b9050600d54600b54826121279190612bab565b6121319190612bc2565b60135f8282546121419190612b98565b9091555050600d54600c546121569083612bab565b6121609190612bc2565b60145f8282546121709190612b98565b9091555050600d54600a546121859083612bab565b61218f9190612bc2565b60125f82825461219f9190612b98565b90915550505b80156121b6576121b687308361227b565b6121c08186612c9b565b94505b6121ce87878761227b565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f818152601b6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166122a15760405162461bcd60e51b8152600401610b4190612c13565b6001600160a01b0382166122c75760405162461bcd60e51b8152600401610b4190612c58565b6001600160a01b0383165f908152602081905260409020548181101561233e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610b41565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290612374908490612b98565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516123c091815260200190565b60405180910390a350505050565b305f9081526020819052604081205490505f6014546012546013546123f39190612b98565b6123fd9190612b98565b90505f82158061240b575081155b1561241557505050565b601754612423906014612bab565b83111561243b57601754612438906014612bab565b92505b5f6002836013548661244d9190612bab565b6124579190612bc2565b6124619190612bc2565b90505f61246e85836125ee565b90504761247a826125f9565b5f61248547836125ee565b90505f6124b2600260135461249a9190612bc2565b6124a49089612c9b565b6014546120319085906125d1565b90505f6124df60026013546124c79190612bc2565b6124d1908a612c9b565b6012546120319086906125d1565b90505f826124ed8386612c9b565b6124f79190612c9b565b5f6013819055601281905560148190556008546040519293506001600160a01b031691859181818185875af1925050503d805f8114612551576040519150601f19603f3d011682016040523d82523d5f602084013e612556565b606091505b5090985050861580159061256957505f81115b156125bc576125788782612749565b601354604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6125c58261281b565b50505050505050505050565b5f6125dc8284612bab565b9392505050565b5f6125dc8284612bc2565b5f6125dc8284612c9b565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061262c5761262c612cae565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015612683573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126a79190612be1565b816001815181106126ba576126ba612cae565b6001600160a01b0392831660209182029290920101526006546126e0913091168461190c565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac947906127189085905f90869030904290600401612d04565b5f604051808303815f87803b15801561272f575f80fd5b505af1158015612741573d5f803e3d5ffd5b505050505050565b6006546127619030906001600160a01b03168461190c565b6006546001600160a01b031663f305d7198230855f806127896005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156127ef573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906128149190612d3f565b5050505050565b80156118bc576040805160028082526060820183525f926020830190803683375050600654604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c4648925060048083019260209291908290030181865afa158015612888573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128ac9190612be1565b815f815181106128be576128be612cae565b6001600160a01b0392831660209182029290920101526007548251911690829060019081106128ef576128ef612cae565b6001600160a01b03928316602091820292909201015260065460085460405163b6f9de9560e01b81529183169263b6f9de9592869261293a925f928892909116904290600401612d6a565b5f604051808303818588803b158015612951575f80fd5b505af11580156121ce573d5f803e3d5ffd5b5f6020808352835180828501525f5b8181101561298e57858101830151858201604001528201612972565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146118bc575f80fd5b5f80604083850312156129d3575f80fd5b82356129de816129ae565b946020939093013593505050565b5f805f606084860312156129fe575f80fd5b505081359360208301359350604090920135919050565b5f60208284031215612a25575f80fd5b5035919050565b5f60208284031215612a3c575f80fd5b81356125dc816129ae565b5f805f60608486031215612a59575f80fd5b8335612a64816129ae565b92506020840135612a74816129ae565b929592945050506040919091013590565b80358015158114611030575f80fd5b5f8060408385031215612aa5575f80fd5b8235612ab0816129ae565b9150612abe60208401612a85565b90509250929050565b5f8060408385031215612ad8575f80fd5b8235612ae3816129ae565b91506020830135612af3816129ae565b809150509250929050565b5f60208284031215612b0e575f80fd5b6125dc82612a85565b600181811c90821680612b2b57607f821691505b602082108103612b4957634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b80820180821115610b1157610b11612b84565b8082028115828204841417610b1157610b11612b84565b5f82612bdc57634e487b7160e01b5f52601260045260245ffd5b500490565b5f60208284031215612bf1575f80fd5b81516125dc816129ae565b5f60208284031215612c0c575f80fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610b1157610b11612b84565b634e487b7160e01b5f52603260045260245ffd5b5f8151808452602080850194508084015f5b83811015612cf95781516001600160a01b031687529582019590820190600101612cd4565b509495945050505050565b85815284602082015260a060408201525f612d2260a0830186612cc2565b6001600160a01b0394909416606083015250608001529392505050565b5f805f60608486031215612d51575f80fd5b8351925060208401519150604084015190509250925092565b848152608060208201525f612d826080830186612cc2565b6001600160a01b0394909416604083015250606001529291505056fea264697066735822122014ceb3e84887d05159e963debb4180a42d65213cc4bd42bf822e201b27925a4564736f6c63430008150033

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.