ETH Price: $1,880.39 (-1.38%)

Token

phatPEPE (FEPE)
 

Overview

Max Total Supply

940,690,000 FEPE

Holders

71

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
PhatPepe

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-09-18
*/

//SPDX-License-Identifier: MIT

/*
https://phatpepe.com | Website
https://t.me/phatpepe | Telegram
https://twitter.com/phatpepeETH | Twitter
*/

pragma solidity 0.8.21;

// File: @openzeppelin/contracts/utils/Context.sol

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

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

// File: @openzeppelin/contracts/access/Ownable.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: @openzeppelin/contracts/token/ERC20/IERC20.sol


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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.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: @openzeppelin/contracts/token/ERC20/ERC20.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 {}
}

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

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

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

    function WETH() external pure returns (address);

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

/// File: phatPepe.sol

/// @title phatPepe: An ERC20 with 1% buy and sell fees
contract PhatPepe is ERC20, Ownable {

    /// @notice uniswapRouter address
    IUniswapV2Router02 public immutable uniswapV2Router;
    /// @notice uniswap V2 pair for token/eth
    address public immutable uniswapV2Pair;
    /// @notice global burn address
    address public constant deadAddress = address(0xdead);
    /// @notice used during swapping (converting collection token tax to eth)
    bool private swapping;
    /// @notice fee wallet address
    address public feeWallet;
    /// @notice minimum threshold after which collected tax tokens are swapped for eth
    uint256 public swapTokensAtAmount;
    /// @notice max wallet
    uint256 public maxWalletLimit;
    /// @notice trade fees (on buy /sell)
    uint256 public tradeFee;

    // @notice mapping to manage exlcuding from fees 
    mapping(address => bool) private _isExcludedFromFees;
    
    //// EVENTS ////
    event ExcludeFromFees(address indexed account, bool isExcluded);

    event feeWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );
    
    /// @dev create the token using OZ erc20 and ownable.
    /// Initializes the variables like router address, create pair address
    /// set swap tokens threshold, set  tradeFees.
    /// and exclude the owner(), burn address, fee wallet and token
    /// from fees. Mint the supply to the owner.
    constructor() ERC20("phatPEPE", "FEPE") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
                      0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D );

        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        uint256 maxSupply = 940_690_000 * 1e18;
        maxWalletLimit = maxSupply / 100; // 1% of the total supply

        swapTokensAtAmount = 1000000 * 1e18; //swap tax for eth when collected tokens are 1000000 or more

        tradeFee = 1;

        feeWallet = address(0x342F3952D2A0CE522392377e46C983F073af3292); // replace this with your fee wallet

        // exclude from paying fees
        excludeFromFees(owner(), true);
        excludeFromFees(feeWallet, true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, maxSupply);
    }



    /// @notice change the minimum amount of tokens to sell from fees
    /// @param newAmount: new swap tokens amount
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= 1000 * 1e18,
            "Swap amount cannot be lower than 1000 tokens."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }
    
    /// @dev remove fees globally
    function removeFees () external onlyOwner {
        require(tradeFee > 0, "Fee is already set to zero");
        tradeFee = 0;
    }
    
    /// @dev remove max wallet limit globally
    function removeMaxWallet () external onlyOwner {
        maxWalletLimit = totalSupply();
    }
    
    /// @dev exclude or include an account to fees
    /// @param account: address of user to exclude or include
    /// @param excluded: boolean value, true means excluded, false means included
    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }
    
    /// @dev update fee wallet address
    /// @param newfeeWallet: new marekting wallet address
    function updatefeeWallet(address newfeeWallet)
        external
        onlyOwner
    {
        emit feeWalletUpdated(newfeeWallet, feeWallet);
        feeWallet = newfeeWallet;
    }
    
   
    /// @dev manage the token transfer, fees and limits
    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");

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            !swapping &&
            to == uniswapV2Pair &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {

           if(to != uniswapV2Pair){
               require (balanceOf(to) + amount <= maxWalletLimit, "Max wallet limit exceeds");
           } 

           if ((from == uniswapV2Pair && tradeFee > 0) || (to == uniswapV2Pair && tradeFee > 0)) {
              fees = (amount * tradeFee) / 100; 
            }

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

            amount -= fees;
        }

        super._transfer(from, to, amount);
    }
   
    /// @dev converts the input tokens to eth and send to
    /// feeWallet
    function swapTokensForETH(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            feeWallet,//eth receiver
            block.timestamp
        );
    }
    
    ///@dev manage the fees conversion to eth
    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        if (contractBalance == 0) {
            return;
        }
        swapTokensForETH(contractBalance);
    }
    
    /// @notice any holder can send his tokens to global burn address
    /// @param amount: amount to be burned
    function burn (uint256 amount) external {
        super._transfer(msg.sender, deadAddress, amount);
    }

    ///@return true or false if an address is excluded or not
    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

}

Contract Security Audit

Contract ABI

API
[{"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"feeWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","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":[],"name":"feeWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradeFee","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":[],"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":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newfeeWallet","type":"address"}],"name":"updatefeeWallet","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c060405234801562000010575f80fd5b5060405180604001604052806008815260200167706861745045504560c01b815250604051806040016040528060048152602001634645504560e01b815250816003908162000060919062000538565b5060046200006f828262000538565b5050506200008c62000086620002b460201b60201c565b620002b8565b737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526040805163c45a015560e01b81529051829163c45a01559160048083019260209291908290030181865afa158015620000e1573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000107919062000600565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000153573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000179919062000600565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015620001c4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001ea919062000600565b6001600160a01b031660a0526b030a1edb14eed7dd37400000620002106064826200062f565b60085569d3c21bcecceda10000006007556001600955600680546001600160a01b03191673342f3952d2a0ce522392377e46c983f073af32921790556200026b620002636005546001600160a01b031690565b600162000309565b60065462000284906001600160a01b0316600162000309565b6200029130600162000309565b620002a061dead600162000309565b620002ac338262000371565b505062000675565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6200031362000436565b6001600160a01b0382165f818152600a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620003cd5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b8060025f828254620003e091906200064f565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b03163314620004925760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620003c4565b565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620004c257607f821691505b602082108103620004e157634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000494575f81815260208120601f850160051c810160208610156200050f5750805b601f850160051c820191505b8181101562000530578281556001016200051b565b505050505050565b81516001600160401b0381111562000554576200055462000499565b6200056c81620005658454620004ad565b84620004e7565b602080601f831160018114620005a2575f84156200058a5750858301515b5f19600386901b1c1916600185901b17855562000530565b5f85815260208120601f198616915b82811015620005d257888601518255948401946001909101908401620005b1565b5085821015620005f057878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f6020828403121562000611575f80fd5b81516001600160a01b038116811462000628575f80fd5b9392505050565b5f826200064a57634e487b7160e01b5f52601260045260245ffd5b500490565b808201808211156200066f57634e487b7160e01b5f52601160045260245ffd5b92915050565b60805160a05161147b620006c85f395f81816102b201528181610ac801528181610bcf01528181610c820152610cca01525f818161020501528181610fa80152818161105f015261109e015261147b5ff3fe608060405234801561000f575f80fd5b50600436106101bb575f3560e01c8063715018a6116100f3578063dc07b61711610093578063f25f4b561161006e578063f25f4b56146103c1578063f2fde38b146103d4578063f6b20c3b146103e7578063fb1c3791146103ef575f80fd5b8063dc07b6171461039d578063dd62ed3e146103a5578063e2f45605146103b8575f80fd5b8063a457c2d7116100ce578063a457c2d714610351578063a9059cbb14610364578063c024666814610377578063d257b34f1461038a575f80fd5b8063715018a6146103305780638da5cb5b1461033857806395d89b4114610349575f80fd5b8063313ce5671161015e57806349bd5a5e1161013957806349bd5a5e146102ad5780634fbee193146102d457806366a88d96146102ff57806370a0823114610308575f80fd5b8063313ce56714610276578063395093511461028557806342966c6814610298575f80fd5b806318160ddd1161019957806318160ddd1461023f57806323b872dd1461025157806324bcdfbd1461026457806327c8f8351461026d575f80fd5b806306fdde03146101bf578063095ea7b3146101dd5780631694505e14610200575b5f80fd5b6101c7610402565b6040516101d49190611110565b60405180910390f35b6101f06101eb36600461116f565b610492565b60405190151581526020016101d4565b6102277f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016101d4565b6002545b6040519081526020016101d4565b6101f061025f366004611199565b6104ab565b61024360095481565b61022761dead81565b604051601281526020016101d4565b6101f061029336600461116f565b6104ce565b6102ab6102a63660046111d7565b6104ef565b005b6102277f000000000000000000000000000000000000000000000000000000000000000081565b6101f06102e23660046111ee565b6001600160a01b03165f908152600a602052604090205460ff1690565b61024360085481565b6102436103163660046111ee565b6001600160a01b03165f9081526020819052604090205490565b6102ab6104ff565b6005546001600160a01b0316610227565b6101c7610512565b6101f061035f36600461116f565b610521565b6101f061037236600461116f565b6105a0565b6102ab610385366004611210565b6105ad565b6101f06103983660046111d7565b610613565b6102ab610721565b6102436103b336600461124b565b610731565b61024360075481565b600654610227906001600160a01b031681565b6102ab6103e23660046111ee565b61075b565b6102ab6107d1565b6102ab6103fd3660046111ee565b610830565b60606003805461041190611277565b80601f016020809104026020016040519081016040528092919081815260200182805461043d90611277565b80156104885780601f1061045f57610100808354040283529160200191610488565b820191905f5260205f20905b81548152906001019060200180831161046b57829003601f168201915b5050505050905090565b5f3361049f818585610894565b60019150505b92915050565b5f336104b88582856109b7565b6104c3858585610a2f565b506001949350505050565b5f3361049f8185856104e08383610731565b6104ea91906112c3565b610894565b6104fc3361dead83610d5e565b50565b610507610e86565b6105105f610ee0565b565b60606004805461041190611277565b5f338161052e8286610731565b9050838110156105935760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6104c38286868403610894565b5f3361049f818585610a2f565b6105b5610e86565b6001600160a01b0382165f818152600a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b5f61061c610e86565b683635c9adc5dea0000082101561068b5760405162461bcd60e51b815260206004820152602d60248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201526c1018981818103a37b5b2b7399760991b606482015260840161058a565b6103e861069760025490565b6106a29060056112d6565b6106ac91906112ed565b8211156107185760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b606482015260840161058a565b50600755600190565b610729610e86565b600254600855565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610763610e86565b6001600160a01b0381166107c85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161058a565b6104fc81610ee0565b6107d9610e86565b5f6009541161082a5760405162461bcd60e51b815260206004820152601a60248201527f46656520697320616c72656164792073657420746f207a65726f000000000000604482015260640161058a565b5f600955565b610838610e86565b6006546040516001600160a01b03918216918316907f5deb5ef622431f0df5a39b72dd556892f68ba42aa0f3aaf0800e166ce8664928905f90a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166108f65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161058a565b6001600160a01b0382166109575760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161058a565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f6109c28484610731565b90505f198114610a295781811015610a1c5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161058a565b610a298484848403610894565b50505050565b6001600160a01b038316610a555760405162461bcd60e51b815260040161058a9061130c565b6001600160a01b038216610a7b5760405162461bcd60e51b815260040161058a90611351565b805f03610a9257610a8d83835f610d5e565b505050565b305f9081526020819052604090205460075481108015908190610abf5750600554600160a01b900460ff16155b8015610afc57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316145b8015610b2057506001600160a01b0385165f908152600a602052604090205460ff16155b8015610b4457506001600160a01b0384165f908152600a602052604090205460ff16155b15610b72576005805460ff60a01b1916600160a01b179055610b64610f31565b6005805460ff60a01b191690555b6005546001600160a01b0386165f908152600a602052604090205460ff600160a01b909204821615911680610bbe57506001600160a01b0385165f908152600a602052604090205460ff165b15610bc657505f5b5f8115610d4a577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b031614610c805760085485610c28886001600160a01b03165f9081526020819052604090205490565b610c3291906112c3565b1115610c805760405162461bcd60e51b815260206004820152601860248201527f4d61782077616c6c6574206c696d697420657863656564730000000000000000604482015260640161058a565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316876001600160a01b0316148015610cc257505f600954115b80610d0a57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b0316148015610d0a57505f600954115b15610d2c57606460095486610d1f91906112d6565b610d2991906112ed565b90505b8015610d3d57610d3d873083610d5e565b610d478186611394565b94505b610d55878787610d5e565b50505050505050565b6001600160a01b038316610d845760405162461bcd60e51b815260040161058a9061130c565b6001600160a01b038216610daa5760405162461bcd60e51b815260040161058a90611351565b6001600160a01b0383165f9081526020819052604090205481811015610e215760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161058a565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610a29565b6005546001600160a01b031633146105105760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161058a565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b305f9081526020819052604081205490819003610f4b5750565b6040805160028082526060820183526104fc9284925f92909160208301908036833701905050905030815f81518110610f8657610f866113a7565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611002573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061102691906113bb565b81600181518110611039576110396113a7565b60200260200101906001600160a01b031690816001600160a01b031681525050611084307f000000000000000000000000000000000000000000000000000000000000000084610894565b60065460405163791ac94760e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169263791ac947926110df9287925f928892919091169042906004016113d6565b5f604051808303815f87803b1580156110f6575f80fd5b505af1158015611108573d5f803e3d5ffd5b505050505050565b5f6020808352835180828501525f5b8181101561113b5785810183015185820160400152820161111f565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146104fc575f80fd5b5f8060408385031215611180575f80fd5b823561118b8161115b565b946020939093013593505050565b5f805f606084860312156111ab575f80fd5b83356111b68161115b565b925060208401356111c68161115b565b929592945050506040919091013590565b5f602082840312156111e7575f80fd5b5035919050565b5f602082840312156111fe575f80fd5b81356112098161115b565b9392505050565b5f8060408385031215611221575f80fd5b823561122c8161115b565b915060208301358015158114611240575f80fd5b809150509250929050565b5f806040838503121561125c575f80fd5b82356112678161115b565b915060208301356112408161115b565b600181811c9082168061128b57607f821691505b6020821081036112a957634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808201808211156104a5576104a56112af565b80820281158282048414176104a5576104a56112af565b5f8261130757634e487b7160e01b5f52601260045260245ffd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156104a5576104a56112af565b634e487b7160e01b5f52603260045260245ffd5b5f602082840312156113cb575f80fd5b81516112098161115b565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156114245784516001600160a01b0316835293830193918301916001016113ff565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220723498aac9832fbbe91385c52ba54110f417262df5f10ebc5f03485dcf5ab0f964736f6c63430008150033

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106101bb575f3560e01c8063715018a6116100f3578063dc07b61711610093578063f25f4b561161006e578063f25f4b56146103c1578063f2fde38b146103d4578063f6b20c3b146103e7578063fb1c3791146103ef575f80fd5b8063dc07b6171461039d578063dd62ed3e146103a5578063e2f45605146103b8575f80fd5b8063a457c2d7116100ce578063a457c2d714610351578063a9059cbb14610364578063c024666814610377578063d257b34f1461038a575f80fd5b8063715018a6146103305780638da5cb5b1461033857806395d89b4114610349575f80fd5b8063313ce5671161015e57806349bd5a5e1161013957806349bd5a5e146102ad5780634fbee193146102d457806366a88d96146102ff57806370a0823114610308575f80fd5b8063313ce56714610276578063395093511461028557806342966c6814610298575f80fd5b806318160ddd1161019957806318160ddd1461023f57806323b872dd1461025157806324bcdfbd1461026457806327c8f8351461026d575f80fd5b806306fdde03146101bf578063095ea7b3146101dd5780631694505e14610200575b5f80fd5b6101c7610402565b6040516101d49190611110565b60405180910390f35b6101f06101eb36600461116f565b610492565b60405190151581526020016101d4565b6102277f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016101d4565b6002545b6040519081526020016101d4565b6101f061025f366004611199565b6104ab565b61024360095481565b61022761dead81565b604051601281526020016101d4565b6101f061029336600461116f565b6104ce565b6102ab6102a63660046111d7565b6104ef565b005b6102277f0000000000000000000000004201c579a3f4f94b72f848fd4bd9735034736ddb81565b6101f06102e23660046111ee565b6001600160a01b03165f908152600a602052604090205460ff1690565b61024360085481565b6102436103163660046111ee565b6001600160a01b03165f9081526020819052604090205490565b6102ab6104ff565b6005546001600160a01b0316610227565b6101c7610512565b6101f061035f36600461116f565b610521565b6101f061037236600461116f565b6105a0565b6102ab610385366004611210565b6105ad565b6101f06103983660046111d7565b610613565b6102ab610721565b6102436103b336600461124b565b610731565b61024360075481565b600654610227906001600160a01b031681565b6102ab6103e23660046111ee565b61075b565b6102ab6107d1565b6102ab6103fd3660046111ee565b610830565b60606003805461041190611277565b80601f016020809104026020016040519081016040528092919081815260200182805461043d90611277565b80156104885780601f1061045f57610100808354040283529160200191610488565b820191905f5260205f20905b81548152906001019060200180831161046b57829003601f168201915b5050505050905090565b5f3361049f818585610894565b60019150505b92915050565b5f336104b88582856109b7565b6104c3858585610a2f565b506001949350505050565b5f3361049f8185856104e08383610731565b6104ea91906112c3565b610894565b6104fc3361dead83610d5e565b50565b610507610e86565b6105105f610ee0565b565b60606004805461041190611277565b5f338161052e8286610731565b9050838110156105935760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6104c38286868403610894565b5f3361049f818585610a2f565b6105b5610e86565b6001600160a01b0382165f818152600a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b5f61061c610e86565b683635c9adc5dea0000082101561068b5760405162461bcd60e51b815260206004820152602d60248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201526c1018981818103a37b5b2b7399760991b606482015260840161058a565b6103e861069760025490565b6106a29060056112d6565b6106ac91906112ed565b8211156107185760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b606482015260840161058a565b50600755600190565b610729610e86565b600254600855565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610763610e86565b6001600160a01b0381166107c85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161058a565b6104fc81610ee0565b6107d9610e86565b5f6009541161082a5760405162461bcd60e51b815260206004820152601a60248201527f46656520697320616c72656164792073657420746f207a65726f000000000000604482015260640161058a565b5f600955565b610838610e86565b6006546040516001600160a01b03918216918316907f5deb5ef622431f0df5a39b72dd556892f68ba42aa0f3aaf0800e166ce8664928905f90a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166108f65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161058a565b6001600160a01b0382166109575760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161058a565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f6109c28484610731565b90505f198114610a295781811015610a1c5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161058a565b610a298484848403610894565b50505050565b6001600160a01b038316610a555760405162461bcd60e51b815260040161058a9061130c565b6001600160a01b038216610a7b5760405162461bcd60e51b815260040161058a90611351565b805f03610a9257610a8d83835f610d5e565b505050565b305f9081526020819052604090205460075481108015908190610abf5750600554600160a01b900460ff16155b8015610afc57507f0000000000000000000000004201c579a3f4f94b72f848fd4bd9735034736ddb6001600160a01b0316846001600160a01b0316145b8015610b2057506001600160a01b0385165f908152600a602052604090205460ff16155b8015610b4457506001600160a01b0384165f908152600a602052604090205460ff16155b15610b72576005805460ff60a01b1916600160a01b179055610b64610f31565b6005805460ff60a01b191690555b6005546001600160a01b0386165f908152600a602052604090205460ff600160a01b909204821615911680610bbe57506001600160a01b0385165f908152600a602052604090205460ff165b15610bc657505f5b5f8115610d4a577f0000000000000000000000004201c579a3f4f94b72f848fd4bd9735034736ddb6001600160a01b0316866001600160a01b031614610c805760085485610c28886001600160a01b03165f9081526020819052604090205490565b610c3291906112c3565b1115610c805760405162461bcd60e51b815260206004820152601860248201527f4d61782077616c6c6574206c696d697420657863656564730000000000000000604482015260640161058a565b7f0000000000000000000000004201c579a3f4f94b72f848fd4bd9735034736ddb6001600160a01b0316876001600160a01b0316148015610cc257505f600954115b80610d0a57507f0000000000000000000000004201c579a3f4f94b72f848fd4bd9735034736ddb6001600160a01b0316866001600160a01b0316148015610d0a57505f600954115b15610d2c57606460095486610d1f91906112d6565b610d2991906112ed565b90505b8015610d3d57610d3d873083610d5e565b610d478186611394565b94505b610d55878787610d5e565b50505050505050565b6001600160a01b038316610d845760405162461bcd60e51b815260040161058a9061130c565b6001600160a01b038216610daa5760405162461bcd60e51b815260040161058a90611351565b6001600160a01b0383165f9081526020819052604090205481811015610e215760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161058a565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610a29565b6005546001600160a01b031633146105105760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161058a565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b305f9081526020819052604081205490819003610f4b5750565b6040805160028082526060820183526104fc9284925f92909160208301908036833701905050905030815f81518110610f8657610f866113a7565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611002573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061102691906113bb565b81600181518110611039576110396113a7565b60200260200101906001600160a01b031690816001600160a01b031681525050611084307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610894565b60065460405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81169263791ac947926110df9287925f928892919091169042906004016113d6565b5f604051808303815f87803b1580156110f6575f80fd5b505af1158015611108573d5f803e3d5ffd5b505050505050565b5f6020808352835180828501525f5b8181101561113b5785810183015185820160400152820161111f565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146104fc575f80fd5b5f8060408385031215611180575f80fd5b823561118b8161115b565b946020939093013593505050565b5f805f606084860312156111ab575f80fd5b83356111b68161115b565b925060208401356111c68161115b565b929592945050506040919091013590565b5f602082840312156111e7575f80fd5b5035919050565b5f602082840312156111fe575f80fd5b81356112098161115b565b9392505050565b5f8060408385031215611221575f80fd5b823561122c8161115b565b915060208301358015158114611240575f80fd5b809150509250929050565b5f806040838503121561125c575f80fd5b82356112678161115b565b915060208301356112408161115b565b600181811c9082168061128b57607f821691505b6020821081036112a957634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808201808211156104a5576104a56112af565b80820281158282048414176104a5576104a56112af565b5f8261130757634e487b7160e01b5f52601260045260245ffd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156104a5576104a56112af565b634e487b7160e01b5f52603260045260245ffd5b5f602082840312156113cb575f80fd5b81516112098161115b565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156114245784516001600160a01b0316835293830193918301916001016113ff565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220723498aac9832fbbe91385c52ba54110f417262df5f10ebc5f03485dcf5ab0f964736f6c63430008150033

Deployed Bytecode Sourcemap

20777:7343:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8982:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11342:201;;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;11342:201:0;1023:187:1;20861:51:0;;;;;;;;-1:-1:-1;;;;;1405:32:1;;;1387:51;;1375:2;1360:18;20861:51:0;1215:229:1;10111:108:0;10199:12;;10111:108;;;1595:25:1;;;1583:2;1568:18;10111:108:0;1449:177:1;12123:261:0;;;;;;:::i;:::-;;:::i;21517:23::-;;;;;;21048:53;;21094:6;21048:53;;9953:93;;;10036:2;2442:36:1;;2430:2;2415:18;9953:93:0;2300:184:1;12793:238:0;;;;;;:::i;:::-;;:::i;27811:107::-;;;;;;:::i;:::-;;:::i;:::-;;20966:38;;;;;27989:126;;;;;;:::i;:::-;-1:-1:-1;;;;;28079:28:0;28055:4;28079:28;;;:19;:28;;;;;;;;;27989:126;21438:29;;;;;;10282:127;;;;;;:::i;:::-;-1:-1:-1;;;;;10383:18:0;10356:7;10383:18;;;;;;;;;;;;10282:127;2761:103;;;:::i;2120:87::-;2193:6;;-1:-1:-1;;;;;2193:6:0;2120:87;;9201:104;;;:::i;13534:436::-;;;;;;:::i;:::-;;:::i;10615:193::-;;;;;;:::i;:::-;;:::i;24483:182::-;;;;;;:::i;:::-;;:::i;23464:472::-;;;;;;:::i;:::-;;:::i;24177:96::-;;;:::i;10871:151::-;;;;;;:::i;:::-;;:::i;21370:33::-;;;;;;21251:24;;;;;-1:-1:-1;;;;;21251:24:0;;;3019:201;;;;;;:::i;:::-;;:::i;23983:135::-;;;:::i;24776:189::-;;;;;;:::i;:::-;;:::i;8982:100::-;9036:13;9069:5;9062:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8982:100;:::o;11342:201::-;11425:4;854:10;11481:32;854:10;11497:7;11506:6;11481:8;:32::i;:::-;11531:4;11524:11;;;11342:201;;;;;:::o;12123:261::-;12220:4;854:10;12278:38;12294:4;854:10;12309:6;12278:15;:38::i;:::-;12327:27;12337:4;12343:2;12347:6;12327:9;:27::i;:::-;-1:-1:-1;12372:4:0;;12123:261;-1:-1:-1;;;;12123:261:0:o;12793:238::-;12881:4;854:10;12937:64;854:10;12953:7;12990:10;12962:25;854:10;12953:7;12962:9;:25::i;:::-;:38;;;;:::i;:::-;12937:8;:64::i;27811:107::-;27862:48;27878:10;21094:6;27903;27862:15;:48::i;:::-;27811:107;:::o;2761:103::-;2006:13;:11;:13::i;:::-;2826:30:::1;2853:1;2826:18;:30::i;:::-;2761:103::o:0;9201:104::-;9257:13;9290:7;9283:14;;;;;:::i;13534:436::-;13627:4;854:10;13627:4;13710:25;854:10;13727:7;13710:9;:25::i;:::-;13683:52;;13774:15;13754:16;:35;;13746:85;;;;-1:-1:-1;;;13746:85:0;;4589:2:1;13746:85:0;;;4571:21:1;4628:2;4608:18;;;4601:30;4667:34;4647:18;;;4640:62;-1:-1:-1;;;4718:18:1;;;4711:35;4763:19;;13746:85:0;;;;;;;;;13867:60;13876:5;13883:7;13911:15;13892:16;:34;13867:8;:60::i;10615:193::-;10694:4;854:10;10750:28;854:10;10767:2;10771:6;10750:9;:28::i;24483:182::-;2006:13;:11;:13::i;:::-;-1:-1:-1;;;;;24568:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;24568:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;24623:34;;1163:41:1;;;24623:34:0::1;::::0;1136:18:1;24623:34:0::1;;;;;;;24483:182:::0;;:::o;23464:472::-;23572:4;2006:13;:11;:13::i;:::-;23629:11:::1;23616:9;:24;;23594:119;;;::::0;-1:-1:-1;;;23594:119:0;;4995:2:1;23594:119:0::1;::::0;::::1;4977:21:1::0;5034:2;5014:18;;;5007:30;5073:34;5053:18;;;5046:62;-1:-1:-1;;;5124:18:1;;;5117:43;5177:19;;23594:119:0::1;4793:409:1::0;23594:119:0::1;23781:4;23760:13;10199:12:::0;;;10111:108;23760:13:::1;:17;::::0;23776:1:::1;23760:17;:::i;:::-;23759:26;;;;:::i;:::-;23746:9;:39;;23724:141;;;::::0;-1:-1:-1;;;23724:141:0;;5804:2:1;23724:141:0::1;::::0;::::1;5786:21:1::0;5843:2;5823:18;;;5816:30;5882:34;5862:18;;;5855:62;-1:-1:-1;;;5933:18:1;;;5926:50;5993:19;;23724:141:0::1;5602:416:1::0;23724:141:0::1;-1:-1:-1::0;23876:18:0::1;:30:::0;23924:4:::1;::::0;23464:472::o;24177:96::-;2006:13;:11;:13::i;:::-;10199:12;;24235:14:::1;:30:::0;24177:96::o;10871:151::-;-1:-1:-1;;;;;10987:18:0;;;10960:7;10987:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10871:151::o;3019:201::-;2006:13;:11;:13::i;:::-;-1:-1:-1;;;;;3108:22:0;::::1;3100:73;;;::::0;-1:-1:-1;;;3100:73:0;;6225:2:1;3100:73:0::1;::::0;::::1;6207:21:1::0;6264:2;6244:18;;;6237:30;6303:34;6283:18;;;6276:62;-1:-1:-1;;;6354:18:1;;;6347:36;6400:19;;3100:73:0::1;6023:402:1::0;3100:73:0::1;3184:28;3203:8;3184:18;:28::i;23983:135::-:0;2006:13;:11;:13::i;:::-;24055:1:::1;24044:8;;:12;24036:51;;;::::0;-1:-1:-1;;;24036:51:0;;6632:2:1;24036:51:0::1;::::0;::::1;6614:21:1::0;6671:2;6651:18;;;6644:30;6710:28;6690:18;;;6683:56;6756:18;;24036:51:0::1;6430:350:1::0;24036:51:0::1;24109:1;24098:8;:12:::0;23983:135::o;24776:189::-;2006:13;:11;:13::i;:::-;24912:9:::1;::::0;24881:41:::1;::::0;-1:-1:-1;;;;;24912:9:0;;::::1;::::0;24881:41;::::1;::::0;::::1;::::0;24912:9:::1;::::0;24881:41:::1;24933:9;:24:::0;;-1:-1:-1;;;;;;24933:24:0::1;-1:-1:-1::0;;;;;24933:24:0;;;::::1;::::0;;;::::1;::::0;;24776:189::o;17527:346::-;-1:-1:-1;;;;;17629:19:0;;17621:68;;;;-1:-1:-1;;;17621:68:0;;6987:2:1;17621:68:0;;;6969:21:1;7026:2;7006:18;;;6999:30;7065:34;7045:18;;;7038:62;-1:-1:-1;;;7116:18:1;;;7109:34;7160:19;;17621:68:0;6785:400:1;17621:68:0;-1:-1:-1;;;;;17708:21:0;;17700:68;;;;-1:-1:-1;;;17700:68:0;;7392:2:1;17700:68:0;;;7374:21:1;7431:2;7411:18;;;7404:30;7470:34;7450:18;;;7443:62;-1:-1:-1;;;7521:18:1;;;7514:32;7563:19;;17700:68:0;7190:398:1;17700:68:0;-1:-1:-1;;;;;17781:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17833:32;;1595:25:1;;;17833:32:0;;1568:18:1;17833:32:0;;;;;;;17527:346;;;:::o;18164:419::-;18265:24;18292:25;18302:5;18309:7;18292:9;:25::i;:::-;18265:52;;-1:-1:-1;;18332:16:0;:37;18328:248;;18414:6;18394:16;:26;;18386:68;;;;-1:-1:-1;;;18386:68:0;;7795:2:1;18386:68:0;;;7777:21:1;7834:2;7814:18;;;7807:30;7873:31;7853:18;;;7846:59;7922:18;;18386:68:0;7593:353:1;18386:68:0;18498:51;18507:5;18514:7;18542:6;18523:16;:25;18498:8;:51::i;:::-;18254:329;18164:419;;;:::o;25039:1688::-;-1:-1:-1;;;;;25171:18:0;;25163:68;;;;-1:-1:-1;;;25163:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25250:16:0;;25242:64;;;;-1:-1:-1;;;25242:64:0;;;;;;;:::i;:::-;25323:6;25333:1;25323:11;25319:93;;25351:28;25367:4;25373:2;25377:1;25351:15;:28::i;:::-;25039:1688;;;:::o;25319:93::-;25473:4;25424:28;10383:18;;;;;;;;;;;25531;;25507:42;;;;;;;25580:33;;-1:-1:-1;25605:8:0;;-1:-1:-1;;;25605:8:0;;;;25604:9;25580:33;:69;;;;;25636:13;-1:-1:-1;;;;;25630:19:0;:2;-1:-1:-1;;;;;25630:19:0;;25580:69;:112;;;;-1:-1:-1;;;;;;25667:25:0;;;;;;:19;:25;;;;;;;;25666:26;25580:112;:153;;;;-1:-1:-1;;;;;;25710:23:0;;;;;;:19;:23;;;;;;;;25709:24;25580:153;25562:285;;;25760:8;:15;;-1:-1:-1;;;;25760:15:0;-1:-1:-1;;;25760:15:0;;;25792:10;:8;:10::i;:::-;25819:8;:16;;-1:-1:-1;;;;25819:16:0;;;25562:285;25875:8;;-1:-1:-1;;;;;25985:25:0;;25859:12;25985:25;;;:19;:25;;;;;;25875:8;-1:-1:-1;;;25875:8:0;;;;;25874:9;;25985:25;;:52;;-1:-1:-1;;;;;;26014:23:0;;;;;;:19;:23;;;;;;;;25985:52;25981:100;;;-1:-1:-1;26064:5:0;25981:100;26093:12;26198:7;26194:480;;;26232:13;-1:-1:-1;;;;;26226:19:0;:2;-1:-1:-1;;;;;26226:19:0;;26223:134;;26299:14;;26289:6;26273:13;26283:2;-1:-1:-1;;;;;10383:18:0;10356:7;10383:18;;;;;;;;;;;;10282:127;26273:13;:22;;;;:::i;:::-;:40;;26264:78;;;;-1:-1:-1;;;26264:78:0;;8963:2:1;26264:78:0;;;8945:21:1;9002:2;8982:18;;;8975:30;9041:26;9021:18;;;9014:54;9085:18;;26264:78:0;8761:348:1;26264:78:0;26386:13;-1:-1:-1;;;;;26378:21:0;:4;-1:-1:-1;;;;;26378:21:0;;:37;;;;;26414:1;26403:8;;:12;26378:37;26377:80;;;;26427:13;-1:-1:-1;;;;;26421:19:0;:2;-1:-1:-1;;;;;26421:19:0;;:35;;;;;26455:1;26444:8;;:12;26421:35;26373:152;;;26505:3;26493:8;;26484:6;:17;;;;:::i;:::-;26483:25;;;;:::i;:::-;26476:32;;26373:152;26545:8;;26541:91;;26574:42;26590:4;26604;26611;26574:15;:42::i;:::-;26648:14;26658:4;26648:14;;:::i;:::-;;;26194:480;26686:33;26702:4;26708:2;26712:6;26686:15;:33::i;:::-;25152:1575;;;;25039:1688;;;:::o;14440:806::-;-1:-1:-1;;;;;14537:18:0;;14529:68;;;;-1:-1:-1;;;14529:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14616:16:0;;14608:64;;;;-1:-1:-1;;;14608:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14758:15:0;;14736:19;14758:15;;;;;;;;;;;14792:21;;;;14784:72;;;;-1:-1:-1;;;14784:72:0;;9449:2:1;14784:72:0;;;9431:21:1;9488:2;9468:18;;;9461:30;9527:34;9507:18;;;9500:62;-1:-1:-1;;;9578:18:1;;;9571:36;9624:19;;14784:72:0;9247:402:1;14784:72:0;-1:-1:-1;;;;;14892:15:0;;;:9;:15;;;;;;;;;;;14910:20;;;14892:38;;15110:13;;;;;;;;;;:23;;;;;;15162:26;;1595:25:1;;;15110:13:0;;15162:26;;1568:18:1;15162:26:0;;;;;;;15201:37;25039:1688;2285:132;2193:6;;-1:-1:-1;;;;;2193:6:0;854:10;2349:23;2341:68;;;;-1:-1:-1;;;2341:68:0;;9856:2:1;2341:68:0;;;9838:21:1;;;9875:18;;;9868:30;9934:34;9914:18;;;9907:62;9986:18;;2341:68:0;9654:356:1;3380:191:0;3473:6;;;-1:-1:-1;;;;;3490:17:0;;;-1:-1:-1;;;;;;3490:17:0;;;;;;;3523:40;;3473:6;;;3490:17;3473:6;;3523:40;;3454:16;;3523:40;3443:128;3380:191;:::o;27474:210::-;27557:4;27513:23;10383:18;;;;;;;;;;;;27578:20;;;27574:59;;27615:7;27474:210::o;27574:59::-;26966:16;;;26980:1;26966:16;;;;;;;;27643:33;;27660:15;;26942:21;;26966:16;;;;;;;;;;;;-1:-1:-1;26966:16:0;26942:40;;27011:4;26993;26998:1;26993:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;26993:23:0;;;-1:-1:-1;;;;;26993:23:0;;;;;27037:15;-1:-1:-1;;;;;27037:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27027:4;27032:1;27027:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;27027:32:0;;;-1:-1:-1;;;;;27027:32:0;;;;;27072:62;27089:4;27104:15;27122:11;27072:8;:62::i;:::-;27343:9;;27173:234;;-1:-1:-1;;;27173:234:0;;-1:-1:-1;;;;;27173:15:0;:66;;;;;:234;;27254:11;;27280:1;;27324:4;;27343:9;;;;;27381:15;;27173:234;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26871:544;26816:599;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1631:456::-;1708:6;1716;1724;1777:2;1765:9;1756:7;1752:23;1748:32;1745:52;;;1793:1;1790;1783:12;1745:52;1832:9;1819:23;1851:31;1876:5;1851:31;:::i;:::-;1901:5;-1:-1:-1;1958:2:1;1943:18;;1930:32;1971:33;1930:32;1971:33;:::i;:::-;1631:456;;2023:7;;-1:-1:-1;;;2077:2:1;2062:18;;;;2049:32;;1631:456::o;2489:180::-;2548:6;2601:2;2589:9;2580:7;2576:23;2572:32;2569:52;;;2617:1;2614;2607:12;2569:52;-1:-1:-1;2640:23:1;;2489:180;-1:-1:-1;2489:180:1:o;2674:247::-;2733:6;2786:2;2774:9;2765:7;2761:23;2757:32;2754:52;;;2802:1;2799;2792:12;2754:52;2841:9;2828:23;2860:31;2885:5;2860:31;:::i;:::-;2910:5;2674:247;-1:-1:-1;;;2674:247:1:o;2926:416::-;2991:6;2999;3052:2;3040:9;3031:7;3027:23;3023:32;3020:52;;;3068:1;3065;3058:12;3020:52;3107:9;3094:23;3126:31;3151:5;3126:31;:::i;:::-;3176:5;-1:-1:-1;3233:2:1;3218:18;;3205:32;3275:15;;3268:23;3256:36;;3246:64;;3306:1;3303;3296:12;3246:64;3329:7;3319:17;;;2926:416;;;;;:::o;3347:388::-;3415:6;3423;3476:2;3464:9;3455:7;3451:23;3447:32;3444:52;;;3492:1;3489;3482:12;3444:52;3531:9;3518:23;3550:31;3575:5;3550:31;:::i;:::-;3600:5;-1:-1:-1;3657:2:1;3642:18;;3629:32;3670:33;3629:32;3670:33;:::i;3740:380::-;3819:1;3815:12;;;;3862;;;3883:61;;3937:4;3929:6;3925:17;3915:27;;3883:61;3990:2;3982:6;3979:14;3959:18;3956:38;3953:161;;4036:10;4031:3;4027:20;4024:1;4017:31;4071:4;4068:1;4061:15;4099:4;4096:1;4089:15;3953:161;;3740:380;;;:::o;4125:127::-;4186:10;4181:3;4177:20;4174:1;4167:31;4217:4;4214:1;4207:15;4241:4;4238:1;4231:15;4257:125;4322:9;;;4343:10;;;4340:36;;;4356:18;;:::i;5207:168::-;5280:9;;;5311;;5328:15;;;5322:22;;5308:37;5298:71;;5349:18;;:::i;5380:217::-;5420:1;5446;5436:132;;5490:10;5485:3;5481:20;5478:1;5471:31;5525:4;5522:1;5515:15;5553:4;5550:1;5543:15;5436:132;-1:-1:-1;5582:9:1;;5380:217::o;7951:401::-;8153:2;8135:21;;;8192:2;8172:18;;;8165:30;8231:34;8226:2;8211:18;;8204:62;-1:-1:-1;;;8297:2:1;8282:18;;8275:35;8342:3;8327:19;;7951:401::o;8357:399::-;8559:2;8541:21;;;8598:2;8578:18;;;8571:30;8637:34;8632:2;8617:18;;8610:62;-1:-1:-1;;;8703:2:1;8688:18;;8681:33;8746:3;8731:19;;8357:399::o;9114:128::-;9181:9;;;9202:11;;;9199:37;;;9216:18;;:::i;10147:127::-;10208:10;10203:3;10199:20;10196:1;10189:31;10239:4;10236:1;10229:15;10263:4;10260:1;10253:15;10279:251;10349:6;10402:2;10390:9;10381:7;10377:23;10373:32;10370:52;;;10418:1;10415;10408:12;10370:52;10450:9;10444:16;10469:31;10494:5;10469:31;:::i;10535:980::-;10797:4;10845:3;10834:9;10830:19;10876:6;10865:9;10858:25;10902:2;10940:6;10935:2;10924:9;10920:18;10913:34;10983:3;10978:2;10967:9;10963:18;10956:31;11007:6;11042;11036:13;11073:6;11065;11058:22;11111:3;11100:9;11096:19;11089:26;;11150:2;11142:6;11138:15;11124:29;;11171:1;11181:195;11195:6;11192:1;11189:13;11181:195;;;11260:13;;-1:-1:-1;;;;;11256:39:1;11244:52;;11351:15;;;;11316:12;;;;11292:1;11210:9;11181:195;;;-1:-1:-1;;;;;;;11432:32:1;;;;11427:2;11412:18;;11405:60;-1:-1:-1;;;11496:3:1;11481:19;11474:35;11393:3;10535:980;-1:-1:-1;;;10535:980:1:o

Swarm Source

ipfs://723498aac9832fbbe91385c52ba54110f417262df5f10ebc5f03485dcf5ab0f9
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.