ETH Price: $3,498.94 (+3.94%)
Gas: 3 Gwei

Token

WUXI Token (WUXI)
 

Overview

Max Total Supply

1,000 WUXI

Holders

238

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
borntobehappy.eth
Balance
0.979798573282016151 WUXI

Value
$0.00
0x5f9e5e87e19f9d86d58a75697c53447616392f62
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:
WUXI

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion
File 1 of 6 : WUXI.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.24;

import {Ownable} from "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.5/contracts/access/Ownable.sol";
import {ERC20} from "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.5/contracts/token/ERC20/ERC20.sol";

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

interface IUniswapV2Router {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function swapExactTokensForETHSupportingFeeOnTransferTokens(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external;
    function addLiquidityETH(address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline) external payable returns (uint amountToken, uint amountETH, uint liquidity);
}

interface IERC20 {
    function balanceOf(address account) external view returns (uint256);
    function transfer(address to, uint256 value) external returns (bool);
}

struct TokenConf {
    bool feeExcl;
    bool isAmmp;
    bool blacklisted;
    bool flagged;
    bool maxExcl;
}

contract WUXI is ERC20, Ownable {
    error InvalidSetup();
    error InvalidBlacklist();
    error TooLow();
    error TooHigh();
    error GtMax();
    error AMMP();
    error ZeroAddress();
    error Blacklisted();
    error Disabled();
    error MaxWallet();
    error CannotBlacklist();

    address private constant _ROUTER = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
    uint256 private constant _BASE = 1000;
    uint256 private constant _SUPPLY = 1000 * 10 ** 18;

    IUniswapV2Router public immutable router;

    address public pair;

    uint256 public maxTrade = 20000000000000000000;
    uint256 public swapAt = 2000000000000000000;
    uint256 public maxSwap = 2000000000000000000;
    uint256 public maxWallet = 20000000000000000000;

    uint256 public tradingStart;
    uint256 public tradingBlock;

    address public dev = 0xCA1b74bEbA79b23aCB4FCd09437f55E7409AB421;

    bool public blacklistRenounced;
    bool private _swapping;

    uint256 public buyFees = 50;
    uint256 public sellFees = 50;

    mapping(address => TokenConf) public confs;

    event SetDevWallet(address addr);

    receive() external payable {}

    constructor() ERC20("WUXI Token", "WUXI") payable {
        router = IUniswapV2Router(_ROUTER);
        confs[_ROUTER].maxExcl = true;

        confs[0xD152f549545093347A162Dce210e7293f1452150].maxExcl = true;
        confs[0x88888c037DF4527933fa8Ab203a89e1e6E58db70].maxExcl = true;

        confs[0x73a471025B5889B24E0016386d9320448116c9d1].maxExcl = true;
        confs[0x73a471025B5889B24E0016386d9320448116c9d1].feeExcl = true;
        confs[0xb0217c14df350241D737721ab3AC7C94E2668Deb].maxExcl = true;
        confs[0xb0217c14df350241D737721ab3AC7C94E2668Deb].feeExcl = true;
        confs[0xA1c7A635B598d395bf6263bA5987A8930cecf829].maxExcl = true;
        confs[0xA1c7A635B598d395bf6263bA5987A8930cecf829].feeExcl = true;
        confs[0x8E21Ca215f8A690cBb460CA2DAD9ab189783E2ca].maxExcl = true;
        confs[0x8E21Ca215f8A690cBb460CA2DAD9ab189783E2ca].feeExcl = true;
        confs[0x5d28418a54718b7439D397075Dfc0Fd30763465e].maxExcl = true;
        confs[0x5d28418a54718b7439D397075Dfc0Fd30763465e].feeExcl = true;

        confs[msg.sender] = TokenConf(true, false, false, false, true);
        confs[address(this)] = TokenConf(true, false, false, false, true);

        pair = IUniswapV2Factory(router.factory()).createPair(address(this), router.WETH());

        confs[address(pair)] = TokenConf(false, true, false, false, true);

        _mint(msg.sender, _SUPPLY - 304780000000000000000);
    }

    function addToLiq() external payable onlyOwner {
        if (tradingStart != 0) revert InvalidSetup();

        _mint(address(this), 304780000000000000000);
        _addLiquidity(304780000000000000000, msg.value);

        tradingStart = block.timestamp;
        tradingBlock = block.number;
    }

    function updateSwapAt(uint256 amount_) external onlyOwner {
        if (amount_ < _SUPPLY / 100000) revert TooLow();

        swapAt = amount_;
    }

    function updateMaxSwapTokens(uint256 max_) external onlyOwner {
        if (max_ < _SUPPLY / 10000) revert TooLow();

        maxSwap = max_;
    }

    function updateMaxTradingAmount(uint256 max_) external onlyOwner {
        if (max_ < _SUPPLY / 1000) revert TooLow();

        maxTrade = max_;
    }

    function updateMaxWalletAmount(uint256 max_) external onlyOwner {
        if (max_ < _SUPPLY / 100) revert TooLow();

        maxWallet = max_;
    }

    function excludeFromMaxTrading(address addr_, bool isEx_) external onlyOwner {
        confs[addr_].maxExcl = isEx_;
    }

    function updateFees(uint256 buyFees_, uint256 sellFees_) external onlyOwner {
        if (buyFees_ > 100 || sellFees_ > 100) revert TooHigh();

        buyFees = buyFees_;
        sellFees = sellFees_;
    }

    function excludeFromFees(address addr_, bool excluded_) external onlyOwner {
        confs[addr_].feeExcl = excluded_;
    }

    function setAutomatedMarketMakerPair(address pair_, bool value_) external onlyOwner {
        if (pair_ == pair) revert AMMP();

        confs[pair_].isAmmp = value_;
    }

    function setDevWallet(address wallet_) external onlyOwner {
        dev = wallet_;

        emit SetDevWallet(wallet_);
    }

    function withdrawERC20(address token_, address to_) external onlyOwner {
        if (token_ == address(0)) revert ZeroAddress();

        uint256 _contractBalance = IERC20(token_).balanceOf(address(this));

        IERC20(token_).transfer(to_, _contractBalance);
    }

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

        require(success);
    }

    function renounceBlacklist() external onlyOwner {
        blacklistRenounced = true;
    }

    function updateBlacklist(address addr_, bool value_) external onlyOwner {
        if (blacklistRenounced) revert CannotBlacklist();
        if (addr_ == address(pair) || addr_ == _ROUTER) revert CannotBlacklist();

        confs[addr_].blacklisted = value_;
    }

    function updateBlacklistLp(address addr_, bool value_) external onlyOwner {
        if (blacklistRenounced) revert CannotBlacklist();
        if (addr_ == address(pair) || addr_ == _ROUTER) revert CannotBlacklist();

        confs[addr_].blacklisted = value_;
    }

    function burn(uint256 amount_) external {
        _burn(msg.sender, amount_);
    }

    function _transfer(address from_, address to_, uint256 amount_) internal override {
        if (from_ == address(0) || to_ == address(0)) revert ZeroAddress();

        TokenConf memory fromTokenConf = confs[from_];
        TokenConf memory toTokenConf = confs[to_];

        if (fromTokenConf.blacklisted || toTokenConf.blacklisted) revert Blacklisted();

        if (amount_ == 0) return super._transfer(from_, to_, 0);

        bool notSwapping = !_swapping;
        address owner = owner();
        uint256 cachedTradingStart = tradingStart;

        if (from_ != owner && to_ != owner && to_ != address(0) && notSwapping) {
          if (cachedTradingStart == 0)
            if (!fromTokenConf.feeExcl && !toTokenConf.feeExcl)
                revert Disabled();

          if (fromTokenConf.isAmmp && !toTokenConf.maxExcl) {
              if (amount_ > maxTrade)
                  revert GtMax();
              if (amount_ + balanceOf(to_) > maxWallet)
                  revert MaxWallet();
          } else if (toTokenConf.isAmmp && !fromTokenConf.maxExcl) {
              if (amount_ > maxTrade)
                  revert GtMax();
          } else if (!toTokenConf.maxExcl) {
              if (amount_ + balanceOf(to_) > maxWallet)
                  revert MaxWallet();
          }
        }

        bool canSwap = balanceOf(address(this)) >= swapAt;

        if (canSwap && notSwapping && !fromTokenConf.isAmmp && !fromTokenConf.feeExcl && !toTokenConf.feeExcl) {
            _swapping = true;

            _swapBack();

            _swapping = false;
        }

        bool takeFee = !fromTokenConf.feeExcl && !toTokenConf.feeExcl && notSwapping;

        if (takeFee) {
            uint256 fees = amount_ * _getFees(from_, to_, fromTokenConf.isAmmp, toTokenConf.isAmmp) / _BASE;

            amount_ -= fees;

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

        super._transfer(from_, to_, amount_);
    }

    function _getFees(address from_, address to_, bool fromAmmp_, bool toAmmp_) internal returns (uint256) {
        if (confs[from_].flagged) return 400;
        if (block.number > tradingBlock + 3) {
            if (fromAmmp_) return buyFees;
            if (toAmmp_) return sellFees;

            return 0;
        }

        confs[to_].flagged = true;

        if (fromAmmp_) return buyFees;
        if (toAmmp_) return sellFees;

        return 0;
    }

    function _swapForEth(uint256 amount_) private {
        IUniswapV2Router cachedRouter = router;

        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = cachedRouter.WETH();

        _approve(address(this), address(cachedRouter), amount_);

        cachedRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amount_, 0, path, address(this), block.timestamp);
    }

    function _swapBack() private {
        uint256 toSwap = balanceOf(address(this));

        if (toSwap == 0) return;

        uint256 cachedMaxSwap = maxSwap;

        if (toSwap > cachedMaxSwap) toSwap = cachedMaxSwap;

        uint256 balanceBefore = address(this).balance;

        _swapForEth(toSwap);

        uint256 collected = address(this).balance - balanceBefore;

        bool success;

        (success, ) = address(dev).call{value: collected}("");
    }

    function _addLiquidity(uint256 amount_, uint256 eth_) private {
        _approve(address(this), address(router), amount_);

        router.addLiquidityETH{value: eth_}(address(this), amount_, 0, 0, msg.sender, block.timestamp);
    }
}

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

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 3 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

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

File 4 of 6 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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

File 5 of 6 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"inputs":[],"name":"AMMP","type":"error"},{"inputs":[],"name":"Blacklisted","type":"error"},{"inputs":[],"name":"CannotBlacklist","type":"error"},{"inputs":[],"name":"Disabled","type":"error"},{"inputs":[],"name":"GtMax","type":"error"},{"inputs":[],"name":"InvalidBlacklist","type":"error"},{"inputs":[],"name":"InvalidSetup","type":"error"},{"inputs":[],"name":"MaxWallet","type":"error"},{"inputs":[],"name":"TooHigh","type":"error"},{"inputs":[],"name":"TooLow","type":"error"},{"inputs":[],"name":"ZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"addr","type":"address"}],"name":"SetDevWallet","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":"addToLiq","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blacklistRenounced","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"confs","outputs":[{"internalType":"bool","name":"feeExcl","type":"bool"},{"internalType":"bool","name":"isAmmp","type":"bool"},{"internalType":"bool","name":"blacklisted","type":"bool"},{"internalType":"bool","name":"flagged","type":"bool"},{"internalType":"bool","name":"maxExcl","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dev","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr_","type":"address"},{"internalType":"bool","name":"excluded_","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr_","type":"address"},{"internalType":"bool","name":"isEx_","type":"bool"}],"name":"excludeFromMaxTrading","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":"maxSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTrade","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapV2Router","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellFees","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":"address","name":"wallet_","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAt","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr_","type":"address"},{"internalType":"bool","name":"value_","type":"bool"}],"name":"updateBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr_","type":"address"},{"internalType":"bool","name":"value_","type":"bool"}],"name":"updateBlacklistLp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"buyFees_","type":"uint256"},{"internalType":"uint256","name":"sellFees_","type":"uint256"}],"name":"updateFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"max_","type":"uint256"}],"name":"updateMaxSwapTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"max_","type":"uint256"}],"name":"updateMaxTradingAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"max_","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"updateSwapAt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token_","type":"address"},{"internalType":"address","name":"to_","type":"address"}],"name":"withdrawERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr_","type":"address"}],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6801158e460913d000006007819055671bc16d674ec800006008819055600955600a908155600d80546001600160a01b03191673ca1b74beba79b23acb4fcd09437f55e7409ab4211790556032600e819055600f5560a0908152692baaac24902a37b5b2b760b11b60c052610120604052600460e0908152635755584960e01b61010052600362000091838262000aed565b506004620000a0828262000aed565b505050620000bd620000b76200093260201b60201c565b62000936565b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03166080816001600160a01b031681525050600160105f737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03166001600160a01b031681526020019081526020015f205f0160046101000a81548160ff021916908315150217905550600160105f73d152f549545093347a162dce210e7293f14521506001600160a01b03166001600160a01b031681526020019081526020015f205f0160046101000a81548160ff021916908315150217905550600160105f7388888c037df4527933fa8ab203a89e1e6e58db706001600160a01b03166001600160a01b031681526020019081526020015f205f0160046101000a81548160ff021916908315150217905550600160105f7373a471025b5889b24e0016386d9320448116c9d16001600160a01b03166001600160a01b031681526020019081526020015f205f0160046101000a81548160ff021916908315150217905550600160105f7373a471025b5889b24e0016386d9320448116c9d16001600160a01b03166001600160a01b031681526020019081526020015f205f015f6101000a81548160ff021916908315150217905550600160105f73b0217c14df350241d737721ab3ac7c94e2668deb6001600160a01b03166001600160a01b031681526020019081526020015f205f0160046101000a81548160ff021916908315150217905550600160105f73b0217c14df350241d737721ab3ac7c94e2668deb6001600160a01b03166001600160a01b031681526020019081526020015f205f015f6101000a81548160ff021916908315150217905550600160105f73a1c7a635b598d395bf6263ba5987a8930cecf8296001600160a01b03166001600160a01b031681526020019081526020015f205f0160046101000a81548160ff021916908315150217905550600160105f73a1c7a635b598d395bf6263ba5987a8930cecf8296001600160a01b03166001600160a01b031681526020019081526020015f205f015f6101000a81548160ff021916908315150217905550600160105f738e21ca215f8a690cbb460ca2dad9ab189783e2ca6001600160a01b03166001600160a01b031681526020019081526020015f205f0160046101000a81548160ff021916908315150217905550600160105f738e21ca215f8a690cbb460ca2dad9ab189783e2ca6001600160a01b03166001600160a01b031681526020019081526020015f205f015f6101000a81548160ff021916908315150217905550600160105f735d28418a54718b7439d397075dfc0fd30763465e6001600160a01b03166001600160a01b031681526020019081526020015f205f0160046101000a81548160ff021916908315150217905550600160105f735d28418a54718b7439d397075dfc0fd30763465e6001600160a01b03166001600160a01b031681526020019081526020015f205f015f6101000a81548160ff0219169083151502179055506040518060a001604052806001151581526020015f151581526020015f151581526020015f151581526020016001151581525060105f336001600160a01b03166001600160a01b031681526020019081526020015f205f820151815f015f6101000a81548160ff0219169083151502179055506020820151815f0160016101000a81548160ff0219169083151502179055506040820151815f0160026101000a81548160ff0219169083151502179055506060820151815f0160036101000a81548160ff0219169083151502179055506080820151815f0160046101000a81548160ff0219169083151502179055509050506040518060a001604052806001151581526020015f151581526020015f151581526020015f151581526020016001151581525060105f306001600160a01b03166001600160a01b031681526020019081526020015f205f820151815f015f6101000a81548160ff0219169083151502179055506020820151815f0160016101000a81548160ff0219169083151502179055506040820151815f0160026101000a81548160ff0219169083151502179055506060820151815f0160036101000a81548160ff0219169083151502179055506080820151815f0160046101000a81548160ff0219169083151502179055509050506080516001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000733573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000759919062000bb9565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620007a7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620007cd919062000bb9565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af115801562000818573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200083e919062000bb9565b600680546001600160a01b0319166001600160a01b039290921691821790556040805160a0810182525f80825260016020808401828152848601848152606086018581526080870194855297855260109092529490922092518354945192519551915161ffff1990951690151561ff00191617610100921515929092029190911763ffff00001916620100009415159490940263ff0000001916939093176301000000931515939093029290921760ff60201b1916640100000000911515919091021790556200092c3362000926681085ac1334d38e0000683635c9adc5dea0000062000bfc565b62000987565b62000c2e565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038216620009e25760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060025f828254620009f5919062000c18565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168062000a7957607f821691505b60208210810362000a9857634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000a4b57805f5260205f20601f840160051c8101602085101562000ac55750805b601f840160051c820191505b8181101562000ae6575f815560010162000ad1565b5050505050565b81516001600160401b0381111562000b095762000b0962000a50565b62000b218162000b1a845462000a64565b8462000a9e565b602080601f83116001811462000b57575f841562000b3f5750858301515b5f19600386901b1c1916600185901b17855562000bb1565b5f85815260208120601f198616915b8281101562000b875788860151825594840194600190910190840162000b66565b508582101562000ba557878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b5f6020828403121562000bca575f80fd5b81516001600160a01b038116811462000be1575f80fd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b8181038181111562000c125762000c1262000be8565b92915050565b8082018082111562000c125762000c1262000be8565b60805161234462000c5c5f395f818161080f01528181611a1a01528181611a8d0152611e5501526123445ff3fe6080604052600436106102cf575f3560e01c80639456fbcc1161017b578063cd51e6d4116100d1578063ef36184e11610087578063f887ea4011610062578063f887ea40146107fe578063f8b45b0514610831578063fcad817114610846575f80fd5b8063ef36184e146107b5578063f11743f6146107ca578063f2fde38b146107df575f80fd5b8063dd62ed3e116100b7578063dd62ed3e14610747578063e0f3ccf51461078b578063e4748b9e146107a0575f80fd5b8063cd51e6d414610732578063dcdfe2bc1461054b575f80fd5b8063a8aa1b3111610131578063c18bc1951161010c578063c18bc19514610676578063c4918b4e14610695578063ca2881b4146106aa575f80fd5b8063a8aa1b3114610619578063a9059cbb14610638578063c024666814610657575f80fd5b80639a7a23d6116101615780639a7a23d6146105bc5780639b66731b146105db578063a457c2d7146105fa575f80fd5b80639456fbcc1461058957806395d89b41146105a8575f80fd5b806342966c68116102305780636db79437116101e65780638da5cb5b116101c15780638da5cb5b1461051a5780639155e0831461054b57806391cca3db1461056a575f80fd5b80636db79437146104b357806370a08231146104d2578063715018a614610506575f80fd5b806364f99f821161021657806364f99f8214610456578063690d8320146104755780636abfe84614610494575f80fd5b806342966c68146104235780635f18936114610442575f80fd5b806323b872dd1161028557806338377d0a1161026b57806338377d0a146103c557806339509351146103e45780633dc599ff14610403575f80fd5b806323b872dd1461038b578063313ce567146103aa575f80fd5b8063095ea7b3116102b5578063095ea7b31461032757806318160ddd146103565780631f53ac021461036a575f80fd5b806306fdde03146102da57806308aa269514610304575f80fd5b366102d657005b5f80fd5b3480156102e5575f80fd5b506102ee61084e565b6040516102fb9190611fd8565b60405180910390f35b34801561030f575f80fd5b5061031960085481565b6040519081526020016102fb565b348015610332575f80fd5b50610346610341366004612038565b6108de565b60405190151581526020016102fb565b348015610361575f80fd5b50600254610319565b348015610375575f80fd5b50610389610384366004612062565b6108f7565b005b348015610396575f80fd5b506103466103a5366004612084565b610960565b3480156103b5575f80fd5b50604051601281526020016102fb565b3480156103d0575f80fd5b506103896103df3660046120c2565b610983565b3480156103ef575f80fd5b506103466103fe366004612038565b6109c5565b34801561040e575f80fd5b50600d5461034690600160a01b900460ff1681565b34801561042e575f80fd5b5061038961043d3660046120c2565b610a03565b34801561044d575f80fd5b50610389610a10565b348015610461575f80fd5b506103896104703660046120e6565b610a48565b348015610480575f80fd5b5061038961048f366004612062565b610a86565b34801561049f575f80fd5b506103896104ae3660046120c2565b610aed565b3480156104be575f80fd5b506103896104cd36600461211d565b610b30565b3480156104dd575f80fd5b506103196104ec366004612062565b6001600160a01b03165f9081526020819052604090205490565b348015610511575f80fd5b50610389610b89565b348015610525575f80fd5b506005546001600160a01b03165b6040516001600160a01b0390911681526020016102fb565b348015610556575f80fd5b506103896105653660046120e6565b610b9c565b348015610575575f80fd5b50600d54610533906001600160a01b031681565b348015610594575f80fd5b506103896105a336600461213d565b610c57565b3480156105b3575f80fd5b506102ee610d9a565b3480156105c7575f80fd5b506103896105d63660046120e6565b610da9565b3480156105e6575f80fd5b506103896105f53660046120c2565b610e29565b348015610605575f80fd5b50610346610614366004612038565b610e6b565b348015610624575f80fd5b50600654610533906001600160a01b031681565b348015610643575f80fd5b50610346610652366004612038565b610f19565b348015610662575f80fd5b506103896106713660046120e6565b610f26565b348015610681575f80fd5b506103896106903660046120c2565b610f58565b3480156106a0575f80fd5b5061031960095481565b3480156106b5575f80fd5b506107006106c4366004612062565b60106020525f908152604090205460ff808216916101008104821691620100008204811691630100000081048216916401000000009091041685565b60408051951515865293151560208601529115159284019290925290151560608301521515608082015260a0016102fb565b34801561073d575f80fd5b50610319600c5481565b348015610752575f80fd5b5061031961076136600461213d565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610796575f80fd5b50610319600f5481565b3480156107ab575f80fd5b50610319600e5481565b3480156107c0575f80fd5b5061031960075481565b3480156107d5575f80fd5b50610319600b5481565b3480156107ea575f80fd5b506103896107f9366004612062565b610f99565b348015610809575f80fd5b506105337f000000000000000000000000000000000000000000000000000000000000000081565b34801561083c575f80fd5b50610319600a5481565b610389611026565b60606003805461085d90612169565b80601f016020809104026020016040519081016040528092919081815260200182805461088990612169565b80156108d45780601f106108ab576101008083540402835291602001916108d4565b820191905f5260205f20905b8154815290600101906020018083116108b757829003601f168201915b5050505050905090565b5f336108eb818585611098565b60019150505b92915050565b6108ff6111f0565b600d805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040519081527f16008eb015afebcace4f13695f42993e750d5f4899d0592275c3b25e9212a7d99060200160405180910390a150565b5f3361096d85828561124a565b6109788585856112d4565b506001949350505050565b61098b6111f0565b6109a06103e8683635c9adc5dea000006121b5565b8110156109c057604051631e52aa2160e11b815260040160405180910390fd5b600755565b335f8181526001602090815260408083206001600160a01b03871684529091528120549091906108eb90829086906109fe9087906121d4565b611098565b610a0d338261179a565b50565b610a186111f0565b600d80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16600160a01b179055565b610a506111f0565b6001600160a01b039091165f90815260106020526040902080549115156401000000000264ff0000000019909216919091179055565b610a8e6111f0565b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f8114610ad7576040519150601f19603f3d011682016040523d82523d5f602084013e610adc565b606091505b5050905080610ae9575f80fd5b5050565b610af56111f0565b610b0b620186a0683635c9adc5dea000006121b5565b811015610b2b57604051631e52aa2160e11b815260040160405180910390fd5b600855565b610b386111f0565b6064821180610b475750606481115b15610b7e576040517ff2034b4e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600e91909155600f55565b610b916111f0565b610b9a5f6118f9565b565b610ba46111f0565b600d54600160a01b900460ff1615610bcf57604051631c50821760e01b815260040160405180910390fd5b6006546001600160a01b0383811691161480610c0757506001600160a01b038216737a250d5630b4cf539739df2c5dacb4c659f2488d145b15610c2557604051631c50821760e01b815260040160405180910390fd5b6001600160a01b039091165f9081526010602052604090208054911515620100000262ff000019909216919091179055565b610c5f6111f0565b6001600160a01b038216610c865760405163d92e233d60e01b815260040160405180910390fd5b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa158015610ce3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d0791906121e7565b6040517fa9059cbb0000000000000000000000000000000000000000000000000000000081526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303815f875af1158015610d70573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d9491906121fe565b50505050565b60606004805461085d90612169565b610db16111f0565b6006546001600160a01b0390811690831603610df9576040517fd8d5cbd800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b039091165f90815260106020526040902080549115156101000261ff0019909216919091179055565b610e316111f0565b610e46612710683635c9adc5dea000006121b5565b811015610e6657604051631e52aa2160e11b815260040160405180910390fd5b600955565b335f8181526001602090815260408083206001600160a01b038716845290915281205490919083811015610f0c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6109788286868403611098565b5f336108eb8185856112d4565b610f2e6111f0565b6001600160a01b03919091165f908152601060205260409020805460ff1916911515919091179055565b610f606111f0565b610f746064683635c9adc5dea000006121b5565b811015610f9457604051631e52aa2160e11b815260040160405180910390fd5b600a55565b610fa16111f0565b6001600160a01b03811661101d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610f03565b610a0d816118f9565b61102e6111f0565b600b5415611068576040517f3007073700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61107b30681085ac1334d38e0000611957565b61108e681085ac1334d38e000034611a14565b42600b5543600c55565b6001600160a01b0383166111135760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610f03565b6001600160a01b03821661118f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610f03565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6005546001600160a01b03163314610b9a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610f03565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f198114610d9457818110156112c75760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610f03565b610d948484848403611098565b6001600160a01b03831615806112f157506001600160a01b038216155b1561130f5760405163d92e233d60e01b815260040160405180910390fd5b5f60105f856001600160a01b03166001600160a01b031681526020019081526020015f206040518060a00160405290815f82015f9054906101000a900460ff161515151581526020015f820160019054906101000a900460ff161515151581526020015f820160029054906101000a900460ff161515151581526020015f820160039054906101000a900460ff161515151581526020015f820160049054906101000a900460ff16151515158152505090505f60105f856001600160a01b03166001600160a01b031681526020019081526020015f206040518060a00160405290815f82015f9054906101000a900460ff161515151581526020015f820160019054906101000a900460ff161515151581526020015f820160029054906101000a900460ff161515151581526020015f820160039054906101000a900460ff161515151581526020015f820160049054906101000a900460ff1615151515815250509050816040015180611484575080604001515b156114bb576040517f09550c7700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b825f036114d4576114cd85855f611b02565b5050505050565b600d5460ff600160a81b90910416155f6114f66005546001600160a01b031690565b600b549091506001600160a01b038881169083161480159061152a5750816001600160a01b0316876001600160a01b031614155b801561153e57506001600160a01b03871615155b80156115475750825b156116a457805f0361159857845115801561156157508351155b15611598576040517f75884cda00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b846020015180156115ab57508360800151155b1561161c576007548611156115d3576040516303f9d7b560e41b815260040160405180910390fd5b600a546001600160a01b0388165f908152602081905260409020546115f890886121d4565b111561161757604051630949534d60e31b815260040160405180910390fd5b6116a4565b8360200151801561162f57508460800151155b1561165757600754861115611617576040516303f9d7b560e41b815260040160405180910390fd5b83608001516116a457600a546001600160a01b0388165f9081526020819052604090205461168590886121d4565b11156116a457604051630949534d60e31b815260040160405180910390fd5b600854305f908152602081905260409020541080159081906116c35750835b80156116d157508560200151155b80156116dc57508551155b80156116e757508451155b1561171557600d805460ff60a81b1916600160a81b179055611707611ced565b600d805460ff60a81b191690555b85515f9015801561172557508551155b801561172e5750845b90508015611783575f6103e861174e8c8c8b602001518b60200151611d89565b611758908b612219565b61176291906121b5565b905061176e818a612230565b98508015611781576117818b3083611b02565b505b61178e8a8a8a611b02565b50505050505050505050565b6001600160a01b0382166118165760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610f03565b6001600160a01b0382165f90815260208190526040902054818110156118a45760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610f03565b6001600160a01b0383165f818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016111e3565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382166119ad5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610f03565b8060025f8282546119be91906121d4565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b611a3f307f000000000000000000000000000000000000000000000000000000000000000084611098565b6040517ff305d719000000000000000000000000000000000000000000000000000000008152306004820152602481018390525f6044820181905260648201523360848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015611add573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906114cd9190612243565b6001600160a01b038316611b7e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610f03565b6001600160a01b038216611bfa5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610f03565b6001600160a01b0383165f9081526020819052604090205481811015611c885760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610f03565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610d94565b305f9081526020819052604081205490819003611d075750565b60095480821115611d16578091505b47611d2083611e44565b5f611d2b8247612230565b600d546040519192505f916001600160a01b039091169083908381818185875af1925050503d805f8114611d7a576040519150601f19603f3d011682016040523d82523d5f602084013e611d7f565b606091505b5050505050505050565b6001600160a01b0384165f908152601060205260408120546301000000900460ff1615611db95750610190611e3c565b600c54611dc79060036121d4565b431115611df3578215611ddd5750600e54611e3c565b8115611dec5750600f54611e3c565b505f611e3c565b6001600160a01b0384165f908152601060205260409020805463ff000000191663010000001790558215611e2a5750600e54611e3c565b8115611e395750600f54611e3c565b505f5b949350505050565b6040805160028082526060820183527f0000000000000000000000000000000000000000000000000000000000000000925f92919060208301908036833701905050905030815f81518110611e9b57611e9b61226e565b60200260200101906001600160a01b031690816001600160a01b031681525050816001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ef7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f1b9190612282565b81600181518110611f2e57611f2e61226e565b60200260200101906001600160a01b031690816001600160a01b031681525050611f59308385611098565b6040517f791ac9470000000000000000000000000000000000000000000000000000000081526001600160a01b0383169063791ac94790611fa69086905f9086903090429060040161229d565b5f604051808303815f87803b158015611fbd575f80fd5b505af1158015611fcf573d5f803e3d5ffd5b50505050505050565b5f602080835283518060208501525f5b8181101561200457858101830151858201604001528201611fe8565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610a0d575f80fd5b5f8060408385031215612049575f80fd5b823561205481612024565b946020939093013593505050565b5f60208284031215612072575f80fd5b813561207d81612024565b9392505050565b5f805f60608486031215612096575f80fd5b83356120a181612024565b925060208401356120b181612024565b929592945050506040919091013590565b5f602082840312156120d2575f80fd5b5035919050565b8015158114610a0d575f80fd5b5f80604083850312156120f7575f80fd5b823561210281612024565b91506020830135612112816120d9565b809150509250929050565b5f806040838503121561212e575f80fd5b50508035926020909101359150565b5f806040838503121561214e575f80fd5b823561215981612024565b9150602083013561211281612024565b600181811c9082168061217d57607f821691505b60208210810361219b57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b5f826121cf57634e487b7160e01b5f52601260045260245ffd5b500490565b808201808211156108f1576108f16121a1565b5f602082840312156121f7575f80fd5b5051919050565b5f6020828403121561220e575f80fd5b815161207d816120d9565b80820281158282048414176108f1576108f16121a1565b818103818111156108f1576108f16121a1565b5f805f60608486031215612255575f80fd5b8351925060208401519150604084015190509250925092565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215612292575f80fd5b815161207d81612024565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b818110156122ed5784516001600160a01b0316835293830193918301916001016122c8565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220d8d923eba4dfec65c0d8ddffb25ed1211c79897fe69f221a8a813e339dca216664736f6c63430008180033

Deployed Bytecode

0x6080604052600436106102cf575f3560e01c80639456fbcc1161017b578063cd51e6d4116100d1578063ef36184e11610087578063f887ea4011610062578063f887ea40146107fe578063f8b45b0514610831578063fcad817114610846575f80fd5b8063ef36184e146107b5578063f11743f6146107ca578063f2fde38b146107df575f80fd5b8063dd62ed3e116100b7578063dd62ed3e14610747578063e0f3ccf51461078b578063e4748b9e146107a0575f80fd5b8063cd51e6d414610732578063dcdfe2bc1461054b575f80fd5b8063a8aa1b3111610131578063c18bc1951161010c578063c18bc19514610676578063c4918b4e14610695578063ca2881b4146106aa575f80fd5b8063a8aa1b3114610619578063a9059cbb14610638578063c024666814610657575f80fd5b80639a7a23d6116101615780639a7a23d6146105bc5780639b66731b146105db578063a457c2d7146105fa575f80fd5b80639456fbcc1461058957806395d89b41146105a8575f80fd5b806342966c68116102305780636db79437116101e65780638da5cb5b116101c15780638da5cb5b1461051a5780639155e0831461054b57806391cca3db1461056a575f80fd5b80636db79437146104b357806370a08231146104d2578063715018a614610506575f80fd5b806364f99f821161021657806364f99f8214610456578063690d8320146104755780636abfe84614610494575f80fd5b806342966c68146104235780635f18936114610442575f80fd5b806323b872dd1161028557806338377d0a1161026b57806338377d0a146103c557806339509351146103e45780633dc599ff14610403575f80fd5b806323b872dd1461038b578063313ce567146103aa575f80fd5b8063095ea7b3116102b5578063095ea7b31461032757806318160ddd146103565780631f53ac021461036a575f80fd5b806306fdde03146102da57806308aa269514610304575f80fd5b366102d657005b5f80fd5b3480156102e5575f80fd5b506102ee61084e565b6040516102fb9190611fd8565b60405180910390f35b34801561030f575f80fd5b5061031960085481565b6040519081526020016102fb565b348015610332575f80fd5b50610346610341366004612038565b6108de565b60405190151581526020016102fb565b348015610361575f80fd5b50600254610319565b348015610375575f80fd5b50610389610384366004612062565b6108f7565b005b348015610396575f80fd5b506103466103a5366004612084565b610960565b3480156103b5575f80fd5b50604051601281526020016102fb565b3480156103d0575f80fd5b506103896103df3660046120c2565b610983565b3480156103ef575f80fd5b506103466103fe366004612038565b6109c5565b34801561040e575f80fd5b50600d5461034690600160a01b900460ff1681565b34801561042e575f80fd5b5061038961043d3660046120c2565b610a03565b34801561044d575f80fd5b50610389610a10565b348015610461575f80fd5b506103896104703660046120e6565b610a48565b348015610480575f80fd5b5061038961048f366004612062565b610a86565b34801561049f575f80fd5b506103896104ae3660046120c2565b610aed565b3480156104be575f80fd5b506103896104cd36600461211d565b610b30565b3480156104dd575f80fd5b506103196104ec366004612062565b6001600160a01b03165f9081526020819052604090205490565b348015610511575f80fd5b50610389610b89565b348015610525575f80fd5b506005546001600160a01b03165b6040516001600160a01b0390911681526020016102fb565b348015610556575f80fd5b506103896105653660046120e6565b610b9c565b348015610575575f80fd5b50600d54610533906001600160a01b031681565b348015610594575f80fd5b506103896105a336600461213d565b610c57565b3480156105b3575f80fd5b506102ee610d9a565b3480156105c7575f80fd5b506103896105d63660046120e6565b610da9565b3480156105e6575f80fd5b506103896105f53660046120c2565b610e29565b348015610605575f80fd5b50610346610614366004612038565b610e6b565b348015610624575f80fd5b50600654610533906001600160a01b031681565b348015610643575f80fd5b50610346610652366004612038565b610f19565b348015610662575f80fd5b506103896106713660046120e6565b610f26565b348015610681575f80fd5b506103896106903660046120c2565b610f58565b3480156106a0575f80fd5b5061031960095481565b3480156106b5575f80fd5b506107006106c4366004612062565b60106020525f908152604090205460ff808216916101008104821691620100008204811691630100000081048216916401000000009091041685565b60408051951515865293151560208601529115159284019290925290151560608301521515608082015260a0016102fb565b34801561073d575f80fd5b50610319600c5481565b348015610752575f80fd5b5061031961076136600461213d565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610796575f80fd5b50610319600f5481565b3480156107ab575f80fd5b50610319600e5481565b3480156107c0575f80fd5b5061031960075481565b3480156107d5575f80fd5b50610319600b5481565b3480156107ea575f80fd5b506103896107f9366004612062565b610f99565b348015610809575f80fd5b506105337f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b34801561083c575f80fd5b50610319600a5481565b610389611026565b60606003805461085d90612169565b80601f016020809104026020016040519081016040528092919081815260200182805461088990612169565b80156108d45780601f106108ab576101008083540402835291602001916108d4565b820191905f5260205f20905b8154815290600101906020018083116108b757829003601f168201915b5050505050905090565b5f336108eb818585611098565b60019150505b92915050565b6108ff6111f0565b600d805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040519081527f16008eb015afebcace4f13695f42993e750d5f4899d0592275c3b25e9212a7d99060200160405180910390a150565b5f3361096d85828561124a565b6109788585856112d4565b506001949350505050565b61098b6111f0565b6109a06103e8683635c9adc5dea000006121b5565b8110156109c057604051631e52aa2160e11b815260040160405180910390fd5b600755565b335f8181526001602090815260408083206001600160a01b03871684529091528120549091906108eb90829086906109fe9087906121d4565b611098565b610a0d338261179a565b50565b610a186111f0565b600d80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16600160a01b179055565b610a506111f0565b6001600160a01b039091165f90815260106020526040902080549115156401000000000264ff0000000019909216919091179055565b610a8e6111f0565b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f8114610ad7576040519150601f19603f3d011682016040523d82523d5f602084013e610adc565b606091505b5050905080610ae9575f80fd5b5050565b610af56111f0565b610b0b620186a0683635c9adc5dea000006121b5565b811015610b2b57604051631e52aa2160e11b815260040160405180910390fd5b600855565b610b386111f0565b6064821180610b475750606481115b15610b7e576040517ff2034b4e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600e91909155600f55565b610b916111f0565b610b9a5f6118f9565b565b610ba46111f0565b600d54600160a01b900460ff1615610bcf57604051631c50821760e01b815260040160405180910390fd5b6006546001600160a01b0383811691161480610c0757506001600160a01b038216737a250d5630b4cf539739df2c5dacb4c659f2488d145b15610c2557604051631c50821760e01b815260040160405180910390fd5b6001600160a01b039091165f9081526010602052604090208054911515620100000262ff000019909216919091179055565b610c5f6111f0565b6001600160a01b038216610c865760405163d92e233d60e01b815260040160405180910390fd5b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa158015610ce3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d0791906121e7565b6040517fa9059cbb0000000000000000000000000000000000000000000000000000000081526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303815f875af1158015610d70573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d9491906121fe565b50505050565b60606004805461085d90612169565b610db16111f0565b6006546001600160a01b0390811690831603610df9576040517fd8d5cbd800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b039091165f90815260106020526040902080549115156101000261ff0019909216919091179055565b610e316111f0565b610e46612710683635c9adc5dea000006121b5565b811015610e6657604051631e52aa2160e11b815260040160405180910390fd5b600955565b335f8181526001602090815260408083206001600160a01b038716845290915281205490919083811015610f0c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6109788286868403611098565b5f336108eb8185856112d4565b610f2e6111f0565b6001600160a01b03919091165f908152601060205260409020805460ff1916911515919091179055565b610f606111f0565b610f746064683635c9adc5dea000006121b5565b811015610f9457604051631e52aa2160e11b815260040160405180910390fd5b600a55565b610fa16111f0565b6001600160a01b03811661101d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610f03565b610a0d816118f9565b61102e6111f0565b600b5415611068576040517f3007073700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61107b30681085ac1334d38e0000611957565b61108e681085ac1334d38e000034611a14565b42600b5543600c55565b6001600160a01b0383166111135760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610f03565b6001600160a01b03821661118f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610f03565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6005546001600160a01b03163314610b9a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610f03565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f198114610d9457818110156112c75760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610f03565b610d948484848403611098565b6001600160a01b03831615806112f157506001600160a01b038216155b1561130f5760405163d92e233d60e01b815260040160405180910390fd5b5f60105f856001600160a01b03166001600160a01b031681526020019081526020015f206040518060a00160405290815f82015f9054906101000a900460ff161515151581526020015f820160019054906101000a900460ff161515151581526020015f820160029054906101000a900460ff161515151581526020015f820160039054906101000a900460ff161515151581526020015f820160049054906101000a900460ff16151515158152505090505f60105f856001600160a01b03166001600160a01b031681526020019081526020015f206040518060a00160405290815f82015f9054906101000a900460ff161515151581526020015f820160019054906101000a900460ff161515151581526020015f820160029054906101000a900460ff161515151581526020015f820160039054906101000a900460ff161515151581526020015f820160049054906101000a900460ff1615151515815250509050816040015180611484575080604001515b156114bb576040517f09550c7700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b825f036114d4576114cd85855f611b02565b5050505050565b600d5460ff600160a81b90910416155f6114f66005546001600160a01b031690565b600b549091506001600160a01b038881169083161480159061152a5750816001600160a01b0316876001600160a01b031614155b801561153e57506001600160a01b03871615155b80156115475750825b156116a457805f0361159857845115801561156157508351155b15611598576040517f75884cda00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b846020015180156115ab57508360800151155b1561161c576007548611156115d3576040516303f9d7b560e41b815260040160405180910390fd5b600a546001600160a01b0388165f908152602081905260409020546115f890886121d4565b111561161757604051630949534d60e31b815260040160405180910390fd5b6116a4565b8360200151801561162f57508460800151155b1561165757600754861115611617576040516303f9d7b560e41b815260040160405180910390fd5b83608001516116a457600a546001600160a01b0388165f9081526020819052604090205461168590886121d4565b11156116a457604051630949534d60e31b815260040160405180910390fd5b600854305f908152602081905260409020541080159081906116c35750835b80156116d157508560200151155b80156116dc57508551155b80156116e757508451155b1561171557600d805460ff60a81b1916600160a81b179055611707611ced565b600d805460ff60a81b191690555b85515f9015801561172557508551155b801561172e5750845b90508015611783575f6103e861174e8c8c8b602001518b60200151611d89565b611758908b612219565b61176291906121b5565b905061176e818a612230565b98508015611781576117818b3083611b02565b505b61178e8a8a8a611b02565b50505050505050505050565b6001600160a01b0382166118165760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610f03565b6001600160a01b0382165f90815260208190526040902054818110156118a45760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610f03565b6001600160a01b0383165f818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016111e3565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382166119ad5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610f03565b8060025f8282546119be91906121d4565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b611a3f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611098565b6040517ff305d719000000000000000000000000000000000000000000000000000000008152306004820152602481018390525f6044820181905260648201523360848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015611add573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906114cd9190612243565b6001600160a01b038316611b7e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610f03565b6001600160a01b038216611bfa5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610f03565b6001600160a01b0383165f9081526020819052604090205481811015611c885760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610f03565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610d94565b305f9081526020819052604081205490819003611d075750565b60095480821115611d16578091505b47611d2083611e44565b5f611d2b8247612230565b600d546040519192505f916001600160a01b039091169083908381818185875af1925050503d805f8114611d7a576040519150601f19603f3d011682016040523d82523d5f602084013e611d7f565b606091505b5050505050505050565b6001600160a01b0384165f908152601060205260408120546301000000900460ff1615611db95750610190611e3c565b600c54611dc79060036121d4565b431115611df3578215611ddd5750600e54611e3c565b8115611dec5750600f54611e3c565b505f611e3c565b6001600160a01b0384165f908152601060205260409020805463ff000000191663010000001790558215611e2a5750600e54611e3c565b8115611e395750600f54611e3c565b505f5b949350505050565b6040805160028082526060820183527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d925f92919060208301908036833701905050905030815f81518110611e9b57611e9b61226e565b60200260200101906001600160a01b031690816001600160a01b031681525050816001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ef7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f1b9190612282565b81600181518110611f2e57611f2e61226e565b60200260200101906001600160a01b031690816001600160a01b031681525050611f59308385611098565b6040517f791ac9470000000000000000000000000000000000000000000000000000000081526001600160a01b0383169063791ac94790611fa69086905f9086903090429060040161229d565b5f604051808303815f87803b158015611fbd575f80fd5b505af1158015611fcf573d5f803e3d5ffd5b50505050505050565b5f602080835283518060208501525f5b8181101561200457858101830151858201604001528201611fe8565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610a0d575f80fd5b5f8060408385031215612049575f80fd5b823561205481612024565b946020939093013593505050565b5f60208284031215612072575f80fd5b813561207d81612024565b9392505050565b5f805f60608486031215612096575f80fd5b83356120a181612024565b925060208401356120b181612024565b929592945050506040919091013590565b5f602082840312156120d2575f80fd5b5035919050565b8015158114610a0d575f80fd5b5f80604083850312156120f7575f80fd5b823561210281612024565b91506020830135612112816120d9565b809150509250929050565b5f806040838503121561212e575f80fd5b50508035926020909101359150565b5f806040838503121561214e575f80fd5b823561215981612024565b9150602083013561211281612024565b600181811c9082168061217d57607f821691505b60208210810361219b57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b5f826121cf57634e487b7160e01b5f52601260045260245ffd5b500490565b808201808211156108f1576108f16121a1565b5f602082840312156121f7575f80fd5b5051919050565b5f6020828403121561220e575f80fd5b815161207d816120d9565b80820281158282048414176108f1576108f16121a1565b818103818111156108f1576108f16121a1565b5f805f60608486031215612255575f80fd5b8351925060208401519150604084015190509250925092565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215612292575f80fd5b815161207d81612024565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b818110156122ed5784516001600160a01b0316835293830193918301916001016122c8565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220d8d923eba4dfec65c0d8ddffb25ed1211c79897fe69f221a8a813e339dca216664736f6c63430008180033

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.