ETH Price: $3,477.76 (+0.47%)
Gas: 4 Gwei

Token

PaleBlueDot (Earth)
 

Overview

Max Total Supply

1 Earth

Holders

665 (0.00%)

Market

Price

$33,658.00 @ 9.678077 ETH (-1.16%)

Onchain Market Cap

$33,658.00

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000162110468424698 Earth

Value
$5.46 ( ~0.00156997739324689 Eth) [0.0162%]
0x6ee96b134c78fd501576c210ca2be2eab0feae1f
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

User can only own a fraction of the Pale Blue Dot. As holders of EarTH, as mankind we’re not going to stop there though. We’re going to gather as a global community of earthlings and do part to address some of earth’s most pressing issues.

Market

Volume (24H):$44.11
Market Capitalization:$0.00
Circulating Supply:0.00 Earth
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Earth

Compiler Version
v0.8.25+commit.b61c2a91

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-04-08
*/

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

/*
  Web:      https://www.pale-blue.earth
  Twitter:  https://twitter.com/palebluedoteth
  Telegram: https://t.me/palebluedoteth
*/

/**
 * @dev Interface for the DEX version 2 factory contract
 */
interface IDexV2Factory {
    function createPair(
        address tokenA,
        address tokenB
    ) external returns (address pair);

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

/**
 * @dev Interface for the DEX version 2 router contract
 */
interface IDexV2Router {
    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;
}

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

/**
 * @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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of 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.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * 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 `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 value
    ) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

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

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

        emit Transfer(from, to, value);
    }

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

    /**
     * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @dev ERC20 token with taxation and liquidity swap functionalities.
 */
contract Earth is ERC20, Ownable {
    address public earthFundWallet = 0xdA3E8FdF2ca1c6372DFcFA5f0c5a3dF76E3946AE;
    address public operationsWallet = 0x474A3F2C5420535c3cC0d93cfDa34C59Ad6d48A1;
    uint256 public maxBuySellLimit = 1 * 10 ** 16;
    uint256 public maxWalletLimit = 2 * 10 ** 16;
    string public earthFundTax = "1.5%";
    string public operationsTax = "0.5%";
    uint8 private _earthFundTax = 15;
    uint8 private _operationsTax = 5;
    bool private _inSwapAndLiquify;
    
    mapping(address => bool) public isExcludedFromTax;
    mapping(address => bool) public isExcludedFromMaxBuySellLimit;
    mapping(address => bool) public isExcludedFromMaxWalletLimit;
    mapping(address => bool) public dexPairStatus;
    mapping(address => address) public pairToRouter;
    mapping(address => address) public routerToPair;

    event TaxExclusionUpdated(address indexed account, bool indexed status);
    event MaxWalletLimitExclusionUpdated(address indexed account, bool indexed status);
    event MaxBuySellLimitExclusionUpdated(address indexed account, bool indexed status);
    event EarthFundWalletChanged(address indexed oldWallet, address indexed newWallet);
    event OperationsWalletChanged(address indexed oldWallet, address indexed newWallet);
    event NewRouterAdded(address indexed routerAddress, address indexed pairAddress);

    modifier lockTheSwap() {
        _inSwapAndLiquify = true;
        _;
        _inSwapAndLiquify = false;
    }

    /**
     * @dev Constructor to initialize the Earth token contract.
     */
    constructor() ERC20("PaleBlueDot", "Earth") Ownable(earthFundWallet) {
        isExcludedFromTax[earthFundWallet] = true;
        isExcludedFromMaxBuySellLimit[earthFundWallet] = true;
        isExcludedFromMaxWalletLimit[earthFundWallet] = true;
        
        isExcludedFromTax[operationsWallet] = true;
        isExcludedFromMaxBuySellLimit[operationsWallet] = true;
        isExcludedFromMaxWalletLimit[operationsWallet] = true;

        isExcludedFromMaxWalletLimit[address(this)] = true;
        _mint(earthFundWallet, 1 * 10 ** decimals());
    }

    /**
     * @dev Adds a new DEX router to the contract.
     * @param routerAddress The address of the new DEX router.
     * Requirements:
     * - Caller must be the owner of the contract.
     */
    function addNewDexRouter(address routerAddress) external onlyOwner {
        IDexV2Router newRouter = IDexV2Router(routerAddress);
        address newPair;
        try IDexV2Factory(newRouter.factory()).createPair(address(this), newRouter.WETH())
        {}
        catch
        {}
        newPair = IDexV2Factory(newRouter.factory()).getPair(address(this), newRouter.WETH());
        dexPairStatus[newPair] = true;
        pairToRouter[newPair] = routerAddress;
        routerToPair[routerAddress] = newPair;
        isExcludedFromMaxWalletLimit[newPair] = true;

        emit NewRouterAdded(routerAddress, newPair);
    }

    /**
     * @dev Internal function to update balances and apply taxes on token transfers.
     * @param from Address from which tokens are transferred.
     * @param to Address to which tokens are transferred.
     * @param value Amount of tokens transferred.
     */
    function _update(address from, address to, uint256 value) internal override {
        if ((dexPairStatus[from] || dexPairStatus[to]) && !(isExcludedFromTax[from] || isExcludedFromTax[to]) && !_inSwapAndLiquify) {
            uint256 taxValue = (value * (_earthFundTax + _operationsTax)) / 1000;
            value -= taxValue;

            if (dexPairStatus[to]) { // sell
                _transferETH(to);
                require((isExcludedFromMaxBuySellLimit[from] || value <= maxBuySellLimit), "ERC20: maxBuySellLimit exceeded");
            }
            else { // buy
                require((isExcludedFromMaxBuySellLimit[to] || value <= maxBuySellLimit), "ERC20: maxBuySellLimit exceeded");
            }
            
            super._update(from, address(this), taxValue);
        }
        require((isExcludedFromMaxWalletLimit[to] || (value + balanceOf(to)) <= maxWalletLimit), "ERC20: maxWalletLimit exceeded");
        super._update(from, to, value);
    }

    /**
     * @dev Internal function to convert tokens to ETH and distribute taxes.
     * Transfers tokens to ETH if the token worth in ETH exceeds a threshold, distributes taxes to designated wallets, and updates balances accordingly.
     * This function is called when selling tokens on a DEX pair.
     */
    function _transferETH(address to) private {
        uint256 contractBalance = balanceOf(address(this));
        if (contractBalance >= 1000000000000000) {
            _swapTokensForEth(contractBalance, to);
            payable(earthFundWallet).transfer((address(this).balance * _earthFundTax) / 20);
            payable(operationsWallet).transfer(address(this).balance);
        }
    }

    /**
     * @dev Converts the accumulated tokens to ETH.
     */
    function _swapTokensForEth(uint256 tokenAmount, address pair) private lockTheSwap {
        IDexV2Router dexRouter = IDexV2Router(pairToRouter[pair]);
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = dexRouter.WETH();

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

        dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            (block.timestamp + 300)
        );
    }

    /**
     * @dev Sets the address of the new earth fund wallet.
     * @param newWallet The address of the new earth fund wallet.
     * Requirements:
     * `newWallet` cannot be the zero address.
     * Emits a {EarthFundWalletChanged} event.
     */
    function changeEarthFundWallet(address newWallet) external onlyOwner {
        require(newWallet != address(0), "ERC20: new wallet is zero address");
        address oldWallet = earthFundWallet;
        earthFundWallet = newWallet;

        emit EarthFundWalletChanged(oldWallet, newWallet);
    }

    /**
     * @dev Sets the address of the new operations wallet.
     * @param newWallet The address of the new operations wallet.
     * Requirements:
     * `newWallet` cannot be the zero address.
     * Emits a {OperationsWalletChanged} event.
     */
    function changeOperationsWallet(address newWallet) external onlyOwner {
        require(newWallet != address(0), "ERC20: new wallet is zero address");
        address oldWallet = operationsWallet;
        operationsWallet = newWallet;

        emit OperationsWalletChanged(oldWallet, newWallet);
    }

    /**
     * @dev Excludes or includes an account from taxation.
     * @param account The address of the account to be excluded or included.
     * @param status The status to set for tax exclusion (true for exclusion, false for inclusion).
     * Requirements:
     * - The caller must be the contract owner.
     */
    function excludeFromTax(address account, bool status) external onlyOwner {
        isExcludedFromTax[account] = status;

        emit TaxExclusionUpdated(account, status);
    }

    /**
     * @dev Excludes or includes an account from the maximum buy/sell limit.
     * @param account The address of the account to be excluded or included.
     * @param status The status to set for maximum buy/sell limit exclusion (true for exclusion, false for inclusion).
     * Requirements:
     * - The caller must be the contract owner.
     */
    function excludeFromMaxBuySellLimit(address account, bool status) external onlyOwner {
        isExcludedFromMaxBuySellLimit[account] = status;

        emit MaxBuySellLimitExclusionUpdated(account, status);
    }

    /**
     * @dev Excludes or includes an account from the maximum wallet limit.
     * @param account The address of the account to be excluded or included.
     * @param status The status to set for maximum wallet limit exclusion (true for exclusion, false for inclusion).
     * Requirements:
     * - The caller must be the contract owner.
     */
    function excludeFromMaxWalletLimit(address account, bool status) external onlyOwner {
        isExcludedFromMaxWalletLimit[account] = status;

        emit MaxWalletLimitExclusionUpdated(account, status);
    }

    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"},{"indexed":true,"internalType":"address","name":"newWallet","type":"address"}],"name":"EarthFundWalletChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"bool","name":"status","type":"bool"}],"name":"MaxBuySellLimitExclusionUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"bool","name":"status","type":"bool"}],"name":"MaxWalletLimitExclusionUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"routerAddress","type":"address"},{"indexed":true,"internalType":"address","name":"pairAddress","type":"address"}],"name":"NewRouterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"},{"indexed":true,"internalType":"address","name":"newWallet","type":"address"}],"name":"OperationsWalletChanged","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":"account","type":"address"},{"indexed":true,"internalType":"bool","name":"status","type":"bool"}],"name":"TaxExclusionUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"routerAddress","type":"address"}],"name":"addNewDexRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"changeEarthFundWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"changeOperationsWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"dexPairStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"earthFundTax","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"earthFundWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"excludeFromMaxBuySellLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"excludeFromMaxWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"excludeFromTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromMaxBuySellLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromMaxWalletLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuySellLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"operationsTax","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operationsWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"pairToRouter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"routerToPair","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

600680546001600160a01b031990811673da3e8fdf2ca1c6372dfcfa5f0c5a3df76e3946ae179091556007805490911673474a3f2c5420535c3cc0d93cfda34c59ad6d48a1179055662386f26fc1000060085566470de4df82000060095560c06040526004608090815263312e352560e01b60a052600a906100819082610a54565b50604080518082019091526004815263302e352560e01b6020820152600b906100aa9082610a54565b50600c805461ffff191661050f1790553480156100c5575f80fd5b50600654604080518082018252600b81526a14185b19509b1d59511bdd60aa1b6020808301919091528251808401909352600583526408ac2e4e8d60db1b908301526001600160a01b03909216919060036101208382610a54565b50600461012d8282610a54565b5050506001600160a01b03811661015e57604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b61016781610240565b50600680546001600160a01b039081165f908152600d602081815260408084208054600160ff199182168117909255875487168652600e8085528387208054831684179055885488168752600f8086528488208054841685179055600780548a1689529686528488208054841685179055865489168852908552838720805483168417905594548716865293909252808420805484168317905530845290922080549091169091179055905461023b9116610220601290565b61022b90600a610c09565b610236906001610c1e565b610291565b610d3e565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382166102ba5760405163ec442f0560e01b81525f6004820152602401610155565b6102c55f83836102c9565b5050565b6001600160a01b0383165f9081526010602052604090205460ff168061030657506001600160a01b0382165f9081526010602052604090205460ff165b801561034c57506001600160a01b0383165f908152600d602052604090205460ff168061034a57506001600160a01b0382165f908152600d602052604090205460ff165b155b80156103615750600c5462010000900460ff16155b156104cc57600c545f906103e8906103839060ff610100820481169116610c35565b6103909060ff1684610c1e565b61039a9190610c4e565b90506103a68183610c6d565b6001600160a01b0384165f9081526010602052604090205490925060ff161561044b576103d283610571565b6001600160a01b0384165f908152600e602052604090205460ff16806103fa57506008548211155b6104465760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d617842757953656c6c4c696d6974206578636565646564006044820152606401610155565b6104bf565b6001600160a01b0383165f908152600e602052604090205460ff168061047357506008548211155b6104bf5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d617842757953656c6c4c696d6974206578636565646564006044820152606401610155565b6104ca843083610624565b505b6001600160a01b0382165f908152600f602052604090205460ff168061051557506009546001600160a01b0383165f908152602081905260409020546105129083610c80565b11155b6105615760405162461bcd60e51b815260206004820152601e60248201527f45524332303a206d617857616c6c65744c696d697420657863656564656400006044820152606401610155565b61056c838383610624565b505050565b305f9081526020819052604090205466038d7ea4c6800081106102c557610598818361074a565b600654600c546001600160a01b03909116906108fc906014906105be9060ff1647610c1e565b6105c89190610c4e565b6040518115909202915f818181858888f193505050501580156105ed573d5f803e3d5ffd5b506007546040516001600160a01b03909116904780156108fc02915f818181858888f1935050505015801561056c573d5f803e3d5ffd5b6001600160a01b03831661064e578060025f8282546106439190610c80565b909155506106be9050565b6001600160a01b0383165f90815260208190526040902054818110156106a05760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610155565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b0382166106da576002805482900390556106f8565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161073d91815260200190565b60405180910390a3505050565b600c80546201000062ff0000199091161790556001600160a01b038181165f908152601160205260408082205481516002808252606082019093529316929081602001602082028036833701905050905030815f815181106107ae576107ae610c93565b60200260200101906001600160a01b031690816001600160a01b031681525050816001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561080a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061082e9190610ca7565b8160018151811061084157610841610c93565b6001600160a01b03909216602092830291909101909101526108643083866108e2565b6001600160a01b03821663791ac947855f84306108834261012c610c80565b6040518663ffffffff1660e01b81526004016108a3959493929190610ccd565b5f604051808303815f87803b1580156108ba575f80fd5b505af11580156108cc573d5f803e3d5ffd5b5050600c805462ff000019169055505050505050565b61056c83838360016001600160a01b0384166109135760405163e602df0560e01b81525f6004820152602401610155565b6001600160a01b03831661093c57604051634a1406b160e11b81525f6004820152602401610155565b6001600160a01b038085165f90815260016020908152604080832093871683529290522082905580156109b757826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516109ae91815260200190565b60405180910390a35b50505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806109e557607f821691505b602082108103610a0357634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561056c57805f5260205f20601f840160051c81016020851015610a2e5750805b601f840160051c820191505b81811015610a4d575f8155600101610a3a565b5050505050565b81516001600160401b03811115610a6d57610a6d6109bd565b610a8181610a7b84546109d1565b84610a09565b602080601f831160018114610ab4575f8415610a9d5750858301515b5f19600386901b1c1916600185901b178555610b0b565b5f85815260208120601f198616915b82811015610ae257888601518255948401946001909101908401610ac3565b5085821015610aff57878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b634e487b7160e01b5f52601160045260245ffd5b600181815b80851115610b6157815f1904821115610b4757610b47610b13565b80851615610b5457918102915b93841c9390800290610b2c565b509250929050565b5f82610b7757506001610c03565b81610b8357505f610c03565b8160018114610b995760028114610ba357610bbf565b6001915050610c03565b60ff841115610bb457610bb4610b13565b50506001821b610c03565b5060208310610133831016604e8410600b8410161715610be2575081810a610c03565b610bec8383610b27565b805f1904821115610bff57610bff610b13565b0290505b92915050565b5f610c1760ff841683610b69565b9392505050565b8082028115828204841417610c0357610c03610b13565b60ff8181168382160190811115610c0357610c03610b13565b5f82610c6857634e487b7160e01b5f52601260045260245ffd5b500490565b81810381811115610c0357610c03610b13565b80820180821115610c0357610c03610b13565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215610cb7575f80fd5b81516001600160a01b0381168114610c17575f80fd5b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015610d1d5784516001600160a01b031683529383019391830191600101610cf8565b50506001600160a01b03969096166060850152505050608001529392505050565b61187980610d4b5f395ff3fe6080604052600436106101c8575f3560e01c806395d89b41116100f2578063dd62ed3e11610092578063f2fde38b11610062578063f2fde38b14610579578063f7371c2414610598578063f94560df146105cc578063fd72e22a146105e0575f80fd5b8063dd62ed3e146104c9578063e4643a391461050d578063e5a4a89b1461052c578063e76779ba1461055a575f80fd5b8063ab1af540116100cd578063ab1af54014610449578063c50c94b014610468578063c6a306471461047c578063cb4ca6311461049b575f80fd5b806395d89b41146103e8578063a8a69b9d146103fc578063a9059cbb1461042a575f80fd5b80633928e0011161016857806370a082311161013857806370a0823114610364578063715018a614610398578063781edb3c146103ac5780638da5cb5b146103cb575f80fd5b80633928e001146102eb5780633b67f20a1461030057806354ba54a51461032157806366a88d961461034f575f80fd5b80630ab76f72116101a35780630ab76f721461025f57806318160ddd1461029357806323b872dd146102b1578063313ce567146102d0575f80fd5b806301641180146101d357806306fdde031461020f578063095ea7b314610230575f80fd5b366101cf57005b5f80fd5b3480156101de575f80fd5b506006546101f2906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b34801561021a575f80fd5b506102236105ff565b6040516102069190611567565b34801561023b575f80fd5b5061024f61024a3660046115b0565b61068f565b6040519015158152602001610206565b34801561026a575f80fd5b506101f26102793660046115da565b60126020525f90815260409020546001600160a01b031681565b34801561029e575f80fd5b506002545b604051908152602001610206565b3480156102bc575f80fd5b5061024f6102cb3660046115fc565b6106a8565b3480156102db575f80fd5b5060405160128152602001610206565b3480156102f6575f80fd5b506102a360085481565b34801561030b575f80fd5b5061031f61031a3660046115da565b6106cb565b005b34801561032c575f80fd5b5061024f61033b3660046115da565b600e6020525f908152604090205460ff1681565b34801561035a575f80fd5b506102a360095481565b34801561036f575f80fd5b506102a361037e3660046115da565b6001600160a01b03165f9081526020819052604090205490565b3480156103a3575f80fd5b5061031f610753565b3480156103b7575f80fd5b5061031f6103c636600461163a565b610766565b3480156103d6575f80fd5b506005546001600160a01b03166101f2565b3480156103f3575f80fd5b506102236107c1565b348015610407575f80fd5b5061024f6104163660046115da565b600f6020525f908152604090205460ff1681565b348015610435575f80fd5b5061024f6104443660046115b0565b6107d0565b348015610454575f80fd5b5061031f61046336600461163a565b6107dd565b348015610473575f80fd5b50610223610838565b348015610487575f80fd5b5061031f61049636600461163a565b6108c4565b3480156104a6575f80fd5b5061024f6104b53660046115da565b600d6020525f908152604090205460ff1681565b3480156104d4575f80fd5b506102a36104e3366004611675565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610518575f80fd5b5061031f6105273660046115da565b61091f565b348015610537575f80fd5b5061024f6105463660046115da565b60106020525f908152604090205460ff1681565b348015610565575f80fd5b5061031f6105743660046115da565b61099e565b348015610584575f80fd5b5061031f6105933660046115da565b610cc3565b3480156105a3575f80fd5b506101f26105b23660046115da565b60116020525f90815260409020546001600160a01b031681565b3480156105d7575f80fd5b50610223610d00565b3480156105eb575f80fd5b506007546101f2906001600160a01b031681565b60606003805461060e906116a1565b80601f016020809104026020016040519081016040528092919081815260200182805461063a906116a1565b80156106855780601f1061065c57610100808354040283529160200191610685565b820191905f5260205f20905b81548152906001019060200180831161066857829003601f168201915b5050505050905090565b5f3361069c818585610d0d565b60019150505b92915050565b5f336106b5858285610d1f565b6106c0858585610d9a565b506001949350505050565b6106d3610df7565b6001600160a01b0381166107025760405162461bcd60e51b81526004016106f9906116d9565b60405180910390fd5b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f1d13de2de5905fa91afd4d881760820120b00480953a10163602dda148ade6c4905f90a35050565b61075b610df7565b6107645f610e24565b565b61076e610df7565b6001600160a01b0382165f818152600f6020526040808220805460ff191685151590811790915590519092917fb0e21c0d53f57d838a3a08178ccf2c29624b47bd4f5f1080f5b688603c48118891a35050565b60606004805461060e906116a1565b5f3361069c818585610d9a565b6107e5610df7565b6001600160a01b0382165f818152600e6020526040808220805460ff191685151590811790915590519092917f51584c17ee82825617903b80153bb91ca8634415e6080ca2e9a3cc2d902b476d91a35050565b600b8054610845906116a1565b80601f0160208091040260200160405190810160405280929190818152602001828054610871906116a1565b80156108bc5780601f10610893576101008083540402835291602001916108bc565b820191905f5260205f20905b81548152906001019060200180831161089f57829003601f168201915b505050505081565b6108cc610df7565b6001600160a01b0382165f818152600d6020526040808220805460ff191685151590811790915590519092917f057dc60ecf6df48e0f4af40ef0f88074d41e0ce54a1fef20925cd23c6de0386091a35050565b610927610df7565b6001600160a01b03811661094d5760405162461bcd60e51b81526004016106f9906116d9565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f7914611f042a636b2b6804fec748bd485d269386d7c952813088dd3d5cf2d8fa905f90a35050565b6109a6610df7565b5f8190505f816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109e7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a0b919061171a565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a56573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a7a919061171a565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1925050508015610ae2575060408051601f3d908101601f19168201909252610adf9181019061171a565b60015b15610ae957505b816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b25573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b49919061171a565b6001600160a01b031663e6a4390530846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b94573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bb8919061171a565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa158015610c01573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c25919061171a565b6001600160a01b038181165f8181526010602090815260408083208054600160ff1991821681179092556011845282852080546001600160a01b0319908116988d1698891790915587865260128552838620805490911687179055858552600f9093528184208054909316179091555193945090927fd54807570472d7b5bc32453ebc95b1efff2caa5857145789dee1fc1658a09d3a9190a3505050565b610ccb610df7565b6001600160a01b038116610cf457604051631e4fbdf760e01b81525f60048201526024016106f9565b610cfd81610e24565b50565b600a8054610845906116a1565b610d1a8383836001610e75565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f198114610d945781811015610d8657604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016106f9565b610d9484848484035f610e75565b50505050565b6001600160a01b038316610dc357604051634b637e8f60e11b81525f60048201526024016106f9565b6001600160a01b038216610dec5760405163ec442f0560e01b81525f60048201526024016106f9565b610d1a838383610f47565b6005546001600160a01b031633146107645760405163118cdaa760e01b81523360048201526024016106f9565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038416610e9e5760405163e602df0560e01b81525f60048201526024016106f9565b6001600160a01b038316610ec757604051634a1406b160e11b81525f60048201526024016106f9565b6001600160a01b038085165f9081526001602090815260408083209387168352929052208290558015610d9457826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610f3991815260200190565b60405180910390a350505050565b6001600160a01b0383165f9081526010602052604090205460ff1680610f8457506001600160a01b0382165f9081526010602052604090205460ff165b8015610fca57506001600160a01b0383165f908152600d602052604090205460ff1680610fc857506001600160a01b0382165f908152600d602052604090205460ff165b155b8015610fdf5750600c5462010000900460ff16155b1561114a57600c545f906103e8906110019060ff610100820481169116611749565b61100e9060ff1684611762565b6110189190611779565b90506110248183611798565b6001600160a01b0384165f9081526010602052604090205490925060ff16156110c957611050836111ea565b6001600160a01b0384165f908152600e602052604090205460ff168061107857506008548211155b6110c45760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d617842757953656c6c4c696d69742065786365656465640060448201526064016106f9565b61113d565b6001600160a01b0383165f908152600e602052604090205460ff16806110f157506008548211155b61113d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d617842757953656c6c4c696d69742065786365656465640060448201526064016106f9565b6111488430836112a1565b505b6001600160a01b0382165f908152600f602052604090205460ff168061119357506009546001600160a01b0383165f9081526020819052604090205461119090836117ab565b11155b6111df5760405162461bcd60e51b815260206004820152601e60248201527f45524332303a206d617857616c6c65744c696d6974206578636565646564000060448201526064016106f9565b610d1a8383836112a1565b305f9081526020819052604090205466038d7ea4c68000811061129d5761121181836113c7565b600654600c546001600160a01b03909116906108fc906014906112379060ff1647611762565b6112419190611779565b6040518115909202915f818181858888f19350505050158015611266573d5f803e3d5ffd5b506007546040516001600160a01b03909116904780156108fc02915f818181858888f19350505050158015610d1a573d5f803e3d5ffd5b5050565b6001600160a01b0383166112cb578060025f8282546112c091906117ab565b9091555061133b9050565b6001600160a01b0383165f908152602081905260409020548181101561131d5760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016106f9565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821661135757600280548290039055611375565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113ba91815260200190565b60405180910390a3505050565b600c80546201000062ff0000199091161790556001600160a01b038181165f908152601160205260408082205481516002808252606082019093529316929081602001602082028036833701905050905030815f8151811061142b5761142b6117be565b60200260200101906001600160a01b031690816001600160a01b031681525050816001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611487573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114ab919061171a565b816001815181106114be576114be6117be565b60200260200101906001600160a01b031690816001600160a01b0316815250506114e9308386610d0d565b6001600160a01b03821663791ac947855f84306115084261012c6117ab565b6040518663ffffffff1660e01b81526004016115289594939291906117d2565b5f604051808303815f87803b15801561153f575f80fd5b505af1158015611551573d5f803e3d5ffd5b5050600c805462ff000019169055505050505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b0381168114610cfd575f80fd5b5f80604083850312156115c1575f80fd5b82356115cc8161159c565b946020939093013593505050565b5f602082840312156115ea575f80fd5b81356115f58161159c565b9392505050565b5f805f6060848603121561160e575f80fd5b83356116198161159c565b925060208401356116298161159c565b929592945050506040919091013590565b5f806040838503121561164b575f80fd5b82356116568161159c565b91506020830135801515811461166a575f80fd5b809150509250929050565b5f8060408385031215611686575f80fd5b82356116918161159c565b9150602083013561166a8161159c565b600181811c908216806116b557607f821691505b6020821081036116d357634e487b7160e01b5f52602260045260245ffd5b50919050565b60208082526021908201527f45524332303a206e65772077616c6c6574206973207a65726f206164647265736040820152607360f81b606082015260800190565b5f6020828403121561172a575f80fd5b81516115f58161159c565b634e487b7160e01b5f52601160045260245ffd5b60ff81811683821601908111156106a2576106a2611735565b80820281158282048414176106a2576106a2611735565b5f8261179357634e487b7160e01b5f52601260045260245ffd5b500490565b818103818111156106a2576106a2611735565b808201808211156106a2576106a2611735565b634e487b7160e01b5f52603260045260245ffd5b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b818110156118225784516001600160a01b0316835293830193918301916001016117fd565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122007093e3fd562413be9df6ed31699f46f8e0fbef10e5484f1209c5a0797edad8b64736f6c63430008190033

Deployed Bytecode

0x6080604052600436106101c8575f3560e01c806395d89b41116100f2578063dd62ed3e11610092578063f2fde38b11610062578063f2fde38b14610579578063f7371c2414610598578063f94560df146105cc578063fd72e22a146105e0575f80fd5b8063dd62ed3e146104c9578063e4643a391461050d578063e5a4a89b1461052c578063e76779ba1461055a575f80fd5b8063ab1af540116100cd578063ab1af54014610449578063c50c94b014610468578063c6a306471461047c578063cb4ca6311461049b575f80fd5b806395d89b41146103e8578063a8a69b9d146103fc578063a9059cbb1461042a575f80fd5b80633928e0011161016857806370a082311161013857806370a0823114610364578063715018a614610398578063781edb3c146103ac5780638da5cb5b146103cb575f80fd5b80633928e001146102eb5780633b67f20a1461030057806354ba54a51461032157806366a88d961461034f575f80fd5b80630ab76f72116101a35780630ab76f721461025f57806318160ddd1461029357806323b872dd146102b1578063313ce567146102d0575f80fd5b806301641180146101d357806306fdde031461020f578063095ea7b314610230575f80fd5b366101cf57005b5f80fd5b3480156101de575f80fd5b506006546101f2906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b34801561021a575f80fd5b506102236105ff565b6040516102069190611567565b34801561023b575f80fd5b5061024f61024a3660046115b0565b61068f565b6040519015158152602001610206565b34801561026a575f80fd5b506101f26102793660046115da565b60126020525f90815260409020546001600160a01b031681565b34801561029e575f80fd5b506002545b604051908152602001610206565b3480156102bc575f80fd5b5061024f6102cb3660046115fc565b6106a8565b3480156102db575f80fd5b5060405160128152602001610206565b3480156102f6575f80fd5b506102a360085481565b34801561030b575f80fd5b5061031f61031a3660046115da565b6106cb565b005b34801561032c575f80fd5b5061024f61033b3660046115da565b600e6020525f908152604090205460ff1681565b34801561035a575f80fd5b506102a360095481565b34801561036f575f80fd5b506102a361037e3660046115da565b6001600160a01b03165f9081526020819052604090205490565b3480156103a3575f80fd5b5061031f610753565b3480156103b7575f80fd5b5061031f6103c636600461163a565b610766565b3480156103d6575f80fd5b506005546001600160a01b03166101f2565b3480156103f3575f80fd5b506102236107c1565b348015610407575f80fd5b5061024f6104163660046115da565b600f6020525f908152604090205460ff1681565b348015610435575f80fd5b5061024f6104443660046115b0565b6107d0565b348015610454575f80fd5b5061031f61046336600461163a565b6107dd565b348015610473575f80fd5b50610223610838565b348015610487575f80fd5b5061031f61049636600461163a565b6108c4565b3480156104a6575f80fd5b5061024f6104b53660046115da565b600d6020525f908152604090205460ff1681565b3480156104d4575f80fd5b506102a36104e3366004611675565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610518575f80fd5b5061031f6105273660046115da565b61091f565b348015610537575f80fd5b5061024f6105463660046115da565b60106020525f908152604090205460ff1681565b348015610565575f80fd5b5061031f6105743660046115da565b61099e565b348015610584575f80fd5b5061031f6105933660046115da565b610cc3565b3480156105a3575f80fd5b506101f26105b23660046115da565b60116020525f90815260409020546001600160a01b031681565b3480156105d7575f80fd5b50610223610d00565b3480156105eb575f80fd5b506007546101f2906001600160a01b031681565b60606003805461060e906116a1565b80601f016020809104026020016040519081016040528092919081815260200182805461063a906116a1565b80156106855780601f1061065c57610100808354040283529160200191610685565b820191905f5260205f20905b81548152906001019060200180831161066857829003601f168201915b5050505050905090565b5f3361069c818585610d0d565b60019150505b92915050565b5f336106b5858285610d1f565b6106c0858585610d9a565b506001949350505050565b6106d3610df7565b6001600160a01b0381166107025760405162461bcd60e51b81526004016106f9906116d9565b60405180910390fd5b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f1d13de2de5905fa91afd4d881760820120b00480953a10163602dda148ade6c4905f90a35050565b61075b610df7565b6107645f610e24565b565b61076e610df7565b6001600160a01b0382165f818152600f6020526040808220805460ff191685151590811790915590519092917fb0e21c0d53f57d838a3a08178ccf2c29624b47bd4f5f1080f5b688603c48118891a35050565b60606004805461060e906116a1565b5f3361069c818585610d9a565b6107e5610df7565b6001600160a01b0382165f818152600e6020526040808220805460ff191685151590811790915590519092917f51584c17ee82825617903b80153bb91ca8634415e6080ca2e9a3cc2d902b476d91a35050565b600b8054610845906116a1565b80601f0160208091040260200160405190810160405280929190818152602001828054610871906116a1565b80156108bc5780601f10610893576101008083540402835291602001916108bc565b820191905f5260205f20905b81548152906001019060200180831161089f57829003601f168201915b505050505081565b6108cc610df7565b6001600160a01b0382165f818152600d6020526040808220805460ff191685151590811790915590519092917f057dc60ecf6df48e0f4af40ef0f88074d41e0ce54a1fef20925cd23c6de0386091a35050565b610927610df7565b6001600160a01b03811661094d5760405162461bcd60e51b81526004016106f9906116d9565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f7914611f042a636b2b6804fec748bd485d269386d7c952813088dd3d5cf2d8fa905f90a35050565b6109a6610df7565b5f8190505f816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109e7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a0b919061171a565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a56573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a7a919061171a565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1925050508015610ae2575060408051601f3d908101601f19168201909252610adf9181019061171a565b60015b15610ae957505b816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b25573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b49919061171a565b6001600160a01b031663e6a4390530846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b94573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bb8919061171a565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa158015610c01573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c25919061171a565b6001600160a01b038181165f8181526010602090815260408083208054600160ff1991821681179092556011845282852080546001600160a01b0319908116988d1698891790915587865260128552838620805490911687179055858552600f9093528184208054909316179091555193945090927fd54807570472d7b5bc32453ebc95b1efff2caa5857145789dee1fc1658a09d3a9190a3505050565b610ccb610df7565b6001600160a01b038116610cf457604051631e4fbdf760e01b81525f60048201526024016106f9565b610cfd81610e24565b50565b600a8054610845906116a1565b610d1a8383836001610e75565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f198114610d945781811015610d8657604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016106f9565b610d9484848484035f610e75565b50505050565b6001600160a01b038316610dc357604051634b637e8f60e11b81525f60048201526024016106f9565b6001600160a01b038216610dec5760405163ec442f0560e01b81525f60048201526024016106f9565b610d1a838383610f47565b6005546001600160a01b031633146107645760405163118cdaa760e01b81523360048201526024016106f9565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038416610e9e5760405163e602df0560e01b81525f60048201526024016106f9565b6001600160a01b038316610ec757604051634a1406b160e11b81525f60048201526024016106f9565b6001600160a01b038085165f9081526001602090815260408083209387168352929052208290558015610d9457826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610f3991815260200190565b60405180910390a350505050565b6001600160a01b0383165f9081526010602052604090205460ff1680610f8457506001600160a01b0382165f9081526010602052604090205460ff165b8015610fca57506001600160a01b0383165f908152600d602052604090205460ff1680610fc857506001600160a01b0382165f908152600d602052604090205460ff165b155b8015610fdf5750600c5462010000900460ff16155b1561114a57600c545f906103e8906110019060ff610100820481169116611749565b61100e9060ff1684611762565b6110189190611779565b90506110248183611798565b6001600160a01b0384165f9081526010602052604090205490925060ff16156110c957611050836111ea565b6001600160a01b0384165f908152600e602052604090205460ff168061107857506008548211155b6110c45760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d617842757953656c6c4c696d69742065786365656465640060448201526064016106f9565b61113d565b6001600160a01b0383165f908152600e602052604090205460ff16806110f157506008548211155b61113d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d617842757953656c6c4c696d69742065786365656465640060448201526064016106f9565b6111488430836112a1565b505b6001600160a01b0382165f908152600f602052604090205460ff168061119357506009546001600160a01b0383165f9081526020819052604090205461119090836117ab565b11155b6111df5760405162461bcd60e51b815260206004820152601e60248201527f45524332303a206d617857616c6c65744c696d6974206578636565646564000060448201526064016106f9565b610d1a8383836112a1565b305f9081526020819052604090205466038d7ea4c68000811061129d5761121181836113c7565b600654600c546001600160a01b03909116906108fc906014906112379060ff1647611762565b6112419190611779565b6040518115909202915f818181858888f19350505050158015611266573d5f803e3d5ffd5b506007546040516001600160a01b03909116904780156108fc02915f818181858888f19350505050158015610d1a573d5f803e3d5ffd5b5050565b6001600160a01b0383166112cb578060025f8282546112c091906117ab565b9091555061133b9050565b6001600160a01b0383165f908152602081905260409020548181101561131d5760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016106f9565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821661135757600280548290039055611375565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113ba91815260200190565b60405180910390a3505050565b600c80546201000062ff0000199091161790556001600160a01b038181165f908152601160205260408082205481516002808252606082019093529316929081602001602082028036833701905050905030815f8151811061142b5761142b6117be565b60200260200101906001600160a01b031690816001600160a01b031681525050816001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611487573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114ab919061171a565b816001815181106114be576114be6117be565b60200260200101906001600160a01b031690816001600160a01b0316815250506114e9308386610d0d565b6001600160a01b03821663791ac947855f84306115084261012c6117ab565b6040518663ffffffff1660e01b81526004016115289594939291906117d2565b5f604051808303815f87803b15801561153f575f80fd5b505af1158015611551573d5f803e3d5ffd5b5050600c805462ff000019169055505050505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b0381168114610cfd575f80fd5b5f80604083850312156115c1575f80fd5b82356115cc8161159c565b946020939093013593505050565b5f602082840312156115ea575f80fd5b81356115f58161159c565b9392505050565b5f805f6060848603121561160e575f80fd5b83356116198161159c565b925060208401356116298161159c565b929592945050506040919091013590565b5f806040838503121561164b575f80fd5b82356116568161159c565b91506020830135801515811461166a575f80fd5b809150509250929050565b5f8060408385031215611686575f80fd5b82356116918161159c565b9150602083013561166a8161159c565b600181811c908216806116b557607f821691505b6020821081036116d357634e487b7160e01b5f52602260045260245ffd5b50919050565b60208082526021908201527f45524332303a206e65772077616c6c6574206973207a65726f206164647265736040820152607360f81b606082015260800190565b5f6020828403121561172a575f80fd5b81516115f58161159c565b634e487b7160e01b5f52601160045260245ffd5b60ff81811683821601908111156106a2576106a2611735565b80820281158282048414176106a2576106a2611735565b5f8261179357634e487b7160e01b5f52601260045260245ffd5b500490565b818103818111156106a2576106a2611735565b808201808211156106a2576106a2611735565b634e487b7160e01b5f52603260045260245ffd5b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b818110156118225784516001600160a01b0316835293830193918301916001016117fd565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122007093e3fd562413be9df6ed31699f46f8e0fbef10e5484f1209c5a0797edad8b64736f6c63430008190033

Deployed Bytecode Sourcemap

20908:8529:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20948:75;;;;;;;;;;-1:-1:-1;20948:75:0;;;;-1:-1:-1;;;;;20948:75:0;;;;;;-1:-1:-1;;;;;178:32:1;;;160:51;;148:2;133:18;20948:75:0;;;;;;;;8746:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;11064:215::-;;;;;;;;;;-1:-1:-1;11064:215:0;;;;;:::i;:::-;;:::i;:::-;;;1266:14:1;;1259:22;1241:41;;1229:2;1214:18;11064:215:0;1101:187:1;21719:47:0;;;;;;;;;;-1:-1:-1;21719:47:0;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;21719:47:0;;;9848:99;;;;;;;;;;-1:-1:-1;9927:12:0;;9848:99;;;1691:25:1;;;1679:2;1664:18;9848:99:0;1545:177:1;11857:283:0;;;;;;;;;;-1:-1:-1;11857:283:0;;;;;:::i;:::-;;:::i;9699:84::-;;;;;;;;;;-1:-1:-1;9699:84:0;;9773:2;2330:36:1;;2318:2;2303:18;9699:84:0;2188:184:1;21113:45:0;;;;;;;;;;;;;;;;27400:307;;;;;;;;;;-1:-1:-1;27400:307:0;;;;;:::i;:::-;;:::i;:::-;;21478:61;;;;;;;;;;-1:-1:-1;21478:61:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;21165:44;;;;;;;;;;;;;;;;10010:118;;;;;;;;;;-1:-1:-1;10010:118:0;;;;;:::i;:::-;-1:-1:-1;;;;;10102:18:0;10075:7;10102:18;;;;;;;;;;;;10010:118;19991:103;;;;;;;;;;;;;:::i;29183:214::-;;;;;;;;;;-1:-1:-1;29183:214:0;;;;;:::i;:::-;;:::i;19316:87::-;;;;;;;;;;-1:-1:-1;19389:6:0;;-1:-1:-1;;;;;19389:6:0;19316:87;;8956:95;;;;;;;;;;;;;:::i;21546:60::-;;;;;;;;;;-1:-1:-1;21546:60:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;10333:182;;;;;;;;;;-1:-1:-1;10333:182:0;;;;;:::i;:::-;;:::i;28597:217::-;;;;;;;;;;-1:-1:-1;28597:217:0;;;;;:::i;:::-;;:::i;21258:36::-;;;;;;;;;;;;;:::i;28043:181::-;;;;;;;;;;-1:-1:-1;28043:181:0;;;;;:::i;:::-;;:::i;21422:49::-;;;;;;;;;;-1:-1:-1;21422:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;10578:167;;;;;;;;;;-1:-1:-1;10578:167:0;;;;;:::i;:::-;-1:-1:-1;;;;;10710:18:0;;;10683:7;10710:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10578:167;26825:303;;;;;;;;;;-1:-1:-1;26825:303:0;;;;;:::i;:::-;;:::i;21613:45::-;;;;;;;;;;-1:-1:-1;21613:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;23287:638;;;;;;;;;;-1:-1:-1;23287:638:0;;;;;:::i;:::-;;:::i;20249:220::-;;;;;;;;;;-1:-1:-1;20249:220:0;;;;;:::i;:::-;;:::i;21665:47::-;;;;;;;;;;-1:-1:-1;21665:47:0;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;21665:47:0;;;21216:35;;;;;;;;;;;;;:::i;21030:76::-;;;;;;;;;;-1:-1:-1;21030:76:0;;;;-1:-1:-1;;;;;21030:76:0;;;8746:91;8791:13;8824:5;8817:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8746:91;:::o;11064:215::-;11162:4;1589:10;11218:31;1589:10;11234:7;11243:5;11218:8;:31::i;:::-;11267:4;11260:11;;;11064:215;;;;;:::o;11857:283::-;11978:4;1589:10;12036:37;12052:4;1589:10;12067:5;12036:15;:37::i;:::-;12084:26;12094:4;12100:2;12104:5;12084:9;:26::i;:::-;-1:-1:-1;12128:4:0;;11857:283;-1:-1:-1;;;;11857:283:0:o;27400:307::-;19202:13;:11;:13::i;:::-;-1:-1:-1;;;;;27489:23:0;::::1;27481:69;;;;-1:-1:-1::0;;;27481:69:0::1;;;;;;;:::i;:::-;;;;;;;;;27581:16;::::0;;-1:-1:-1;;;;;27608:28:0;;::::1;-1:-1:-1::0;;;;;;27608:28:0;::::1;::::0;::::1;::::0;;;27654:45:::1;::::0;27581:16;::::1;::::0;27608:28;27581:16;;27654:45:::1;::::0;27561:17:::1;::::0;27654:45:::1;27470:237;27400:307:::0;:::o;19991:103::-;19202:13;:11;:13::i;:::-;20056:30:::1;20083:1;20056:18;:30::i;:::-;19991:103::o:0;29183:214::-;19202:13;:11;:13::i;:::-;-1:-1:-1;;;;;29278:37:0;::::1;;::::0;;;:28:::1;:37;::::0;;;;;:46;;-1:-1:-1;;29278:46:0::1;::::0;::::1;;::::0;;::::1;::::0;;;29342:47;;29278:46;;:37;29342:47:::1;::::0;::::1;29183:214:::0;;:::o;8956:95::-;9003:13;9036:7;9029:14;;;;;:::i;10333:182::-;10402:4;1589:10;10458:27;1589:10;10475:2;10479:5;10458:9;:27::i;28597:217::-;19202:13;:11;:13::i;:::-;-1:-1:-1;;;;;28693:38:0;::::1;;::::0;;;:29:::1;:38;::::0;;;;;:47;;-1:-1:-1;;28693:47:0::1;::::0;::::1;;::::0;;::::1;::::0;;;28758:48;;28693:47;;:38;28758:48:::1;::::0;::::1;28597:217:::0;;:::o;21258:36::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28043:181::-;19202:13;:11;:13::i;:::-;-1:-1:-1;;;;;28127:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;:35;;-1:-1:-1;;28127:35:0::1;::::0;::::1;;::::0;;::::1;::::0;;;28180:36;;28127:35;;:26;28180:36:::1;::::0;::::1;28043:181:::0;;:::o;26825:303::-;19202:13;:11;:13::i;:::-;-1:-1:-1;;;;;26913:23:0;::::1;26905:69;;;;-1:-1:-1::0;;;26905:69:0::1;;;;;;;:::i;:::-;27005:15;::::0;;-1:-1:-1;;;;;27031:27:0;;::::1;-1:-1:-1::0;;;;;;27031:27:0;::::1;::::0;::::1;::::0;;;27076:44:::1;::::0;27005:15;::::1;::::0;27031:27;27005:15;;27076:44:::1;::::0;26985:17:::1;::::0;27076:44:::1;26894:234;26825:303:::0;:::o;23287:638::-;19202:13;:11;:13::i;:::-;23365:22:::1;23403:13;23365:52;;23428:15;23472:9;-1:-1:-1::0;;;;;23472:17:0::1;;:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;23458:45:0::1;;23512:4;23519:9;-1:-1:-1::0;;;;;23519:14:0::1;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;23458:78;::::0;-1:-1:-1;;;;;;23458:78:0::1;::::0;;;;;;-1:-1:-1;;;;;4464:15:1;;;23458:78:0::1;::::0;::::1;4446:34:1::0;4516:15;;4496:18;;;4489:43;4381:18;;23458:78:0::1;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;23458:78:0::1;::::0;;::::1;;::::0;;::::1;-1:-1:-1::0;;23458:78:0::1;::::0;::::1;::::0;;;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;;;23454:121:::0;::::1;;;;23609:9;-1:-1:-1::0;;;;;23609:17:0::1;;:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;23595:42:0::1;;23646:4;23653:9;-1:-1:-1::0;;;;;23653:14:0::1;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;23595:75;::::0;-1:-1:-1;;;;;;23595:75:0::1;::::0;;;;;;-1:-1:-1;;;;;4464:15:1;;;23595:75:0::1;::::0;::::1;4446:34:1::0;4516:15;;4496:18;;;4489:43;4381:18;;23595:75:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;23681:22:0;;::::1;;::::0;;;:13:::1;:22;::::0;;;;;;;:29;;23706:4:::1;-1:-1:-1::0;;23681:29:0;;::::1;::::0;::::1;::::0;;;23721:12:::1;:21:::0;;;;;:37;;-1:-1:-1;;;;;;23721:37:0;;::::1;::::0;;::::1;::::0;;::::1;::::0;;;23769:27;;;:12:::1;:27:::0;;;;;:37;;;;::::1;::::0;::::1;::::0;;23817;;;:28:::1;:37:::0;;;;;;:44;;;;::::1;;::::0;;;23879:38;23681:22;;-1:-1:-1;23681:22:0;;23879:38:::1;::::0;23681:22;23879:38:::1;23354:571;;23287:638:::0;:::o;20249:220::-;19202:13;:11;:13::i;:::-;-1:-1:-1;;;;;20334:22:0;::::1;20330:93;;20380:31;::::0;-1:-1:-1;;;20380:31:0;;20408:1:::1;20380:31;::::0;::::1;160:51:1::0;133:18;;20380:31:0::1;14:203:1::0;20330:93:0::1;20433:28;20452:8;20433:18;:28::i;:::-;20249:220:::0;:::o;21216:35::-;;;;;;;:::i;15411:130::-;15496:37;15505:5;15512:7;15521:5;15528:4;15496:8;:37::i;:::-;15411:130;;;:::o;17170:603::-;-1:-1:-1;;;;;10710:18:0;;;17304:24;10710:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;17371:37:0;;17367:399;;17448:5;17429:16;:24;17425:214;;;17481:142;;-1:-1:-1;;;17481:142:0;;-1:-1:-1;;;;;4763:32:1;;17481:142:0;;;4745:51:1;4812:18;;;4805:34;;;4855:18;;;4848:34;;;4718:18;;17481:142:0;4543:345:1;17425:214:0;17682:57;17691:5;17698:7;17726:5;17707:16;:24;17733:5;17682:8;:57::i;:::-;17293:480;17170:603;;;:::o;12525:308::-;-1:-1:-1;;;;;12609:18:0;;12605:88;;12651:30;;-1:-1:-1;;;12651:30:0;;12678:1;12651:30;;;160:51:1;133:18;;12651:30:0;14:203:1;12605:88:0;-1:-1:-1;;;;;12707:16:0;;12703:88;;12747:32;;-1:-1:-1;;;12747:32:0;;12776:1;12747:32;;;160:51:1;133:18;;12747:32:0;14:203:1;12703:88:0;12801:24;12809:4;12815:2;12819:5;12801:7;:24::i;19481:166::-;19389:6;;-1:-1:-1;;;;;19389:6:0;1589:10;19541:23;19537:103;;19588:40;;-1:-1:-1;;;19588:40:0;;1589:10;19588:40;;;160:51:1;133:18;;19588:40:0;14:203:1;20629:191:0;20722:6;;;-1:-1:-1;;;;;20739:17:0;;;-1:-1:-1;;;;;;20739:17:0;;;;;;;20772:40;;20722:6;;;20739:17;20722:6;;20772:40;;20703:16;;20772:40;20692:128;20629:191;:::o;16392:486::-;-1:-1:-1;;;;;16548:19:0;;16544:91;;16591:32;;-1:-1:-1;;;16591:32:0;;16620:1;16591:32;;;160:51:1;133:18;;16591:32:0;14:203:1;16544:91:0;-1:-1:-1;;;;;16649:21:0;;16645:92;;16694:31;;-1:-1:-1;;;16694:31:0;;16722:1;16694:31;;;160:51:1;133:18;;16694:31:0;14:203:1;16645:92:0;-1:-1:-1;;;;;16747:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;16793:78;;;;16844:7;-1:-1:-1;;;;;16828:31:0;16837:5;-1:-1:-1;;;;;16828:31:0;;16853:5;16828:31;;;;1691:25:1;;1679:2;1664:18;;1545:177;16828:31:0;;;;;;;;16392:486;;;;:::o;24210:987::-;-1:-1:-1;;;;;24302:19:0;;;;;;:13;:19;;;;;;;;;:40;;-1:-1:-1;;;;;;24325:17:0;;;;;;:13;:17;;;;;;;;24302:40;24301:97;;;;-1:-1:-1;;;;;;24349:23:0;;;;;;:17;:23;;;;;;;;;:48;;-1:-1:-1;;;;;;24376:21:0;;;;;;:17;:21;;;;;;;;24349:48;24347:51;24301:97;:119;;;;-1:-1:-1;24403:17:0;;;;;;;24402:18;24301:119;24297:719;;;24482:14;;24437:16;;24501:4;;24466:30;;24482:14;;;;;;;24466:13;:30;:::i;:::-;24457:40;;;;:5;:40;:::i;:::-;24456:49;;;;:::i;:::-;24437:68;-1:-1:-1;24520:17:0;24437:68;24520:17;;:::i;:::-;-1:-1:-1;;;;;24558:17:0;;;;;;:13;:17;;;;;;24520;;-1:-1:-1;24558:17:0;;24554:378;;;24604:16;24617:2;24604:12;:16::i;:::-;-1:-1:-1;;;;;24648:35:0;;;;;;:29;:35;;;;;;;;;:63;;;24696:15;;24687:5;:24;;24648:63;24639:109;;;;-1:-1:-1;;;24639:109:0;;5908:2:1;24639:109:0;;;5890:21:1;5947:2;5927:18;;;5920:30;5986:33;5966:18;;;5959:61;6037:18;;24639:109:0;5706:355:1;24639:109:0;24554:378;;;-1:-1:-1;;;;;24818:33:0;;;;;;:29;:33;;;;;;;;;:61;;;24864:15;;24855:5;:24;;24818:61;24809:107;;;;-1:-1:-1;;;24809:107:0;;5908:2:1;24809:107:0;;;5890:21:1;5947:2;5927:18;;;5920:30;5986:33;5966:18;;;5959:61;6037:18;;24809:107:0;5706:355:1;24809:107:0;24960:44;24974:4;24988;24995:8;24960:13;:44::i;:::-;24422:594;24297:719;-1:-1:-1;;;;;25035:32:0;;;;;;:28;:32;;;;;;;;;:77;;-1:-1:-1;25098:14:0;;-1:-1:-1;;;;;10102:18:0;;10075:7;10102:18;;;;;;;;;;;25072:21;;:5;:21;:::i;:::-;25071:41;;25035:77;25026:122;;;;-1:-1:-1;;;25026:122:0;;6398:2:1;25026:122:0;;;6380:21:1;6437:2;6417:18;;;6410:30;6476:32;6456:18;;;6449:60;6526:18;;25026:122:0;6196:354:1;25026:122:0;25159:30;25173:4;25179:2;25183:5;25159:13;:30::i;25522:393::-;25619:4;25575:23;10102:18;;;;;;;;;;;25659:16;25640:35;;25636:272;;25692:38;25710:15;25727:2;25692:17;:38::i;:::-;25753:15;;25804:13;;-1:-1:-1;;;;;25753:15:0;;;;25745:79;;25821:2;;25780:37;;25804:13;;25780:21;:37;:::i;:::-;25779:44;;;;:::i;:::-;25745:79;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25847:16:0;;25839:57;;-1:-1:-1;;;;;25847:16:0;;;;25874:21;25839:57;;;;;25847:16;25839:57;25847:16;25839:57;25874:21;25847:16;25839:57;;;;;;;;;;;;;;;;;;;25636:272;25564:351;25522:393;:::o;13157:1135::-;-1:-1:-1;;;;;13247:18:0;;13243:552;;13401:5;13385:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;13243:552:0;;-1:-1:-1;13243:552:0;;-1:-1:-1;;;;;13461:15:0;;13439:19;13461:15;;;;;;;;;;;13495:19;;;13491:117;;;13542:50;;-1:-1:-1;;;13542:50:0;;-1:-1:-1;;;;;4763:32:1;;13542:50:0;;;4745:51:1;4812:18;;;4805:34;;;4855:18;;;4848:34;;;4718:18;;13542:50:0;4543:345:1;13491:117:0;-1:-1:-1;;;;;13731:15:0;;:9;:15;;;;;;;;;;13749:19;;;;13731:37;;13243:552;-1:-1:-1;;;;;13811:16:0;;13807:435;;13977:12;:21;;;;;;;13807:435;;;-1:-1:-1;;;;;14193:13:0;;:9;:13;;;;;;;;;;:22;;;;;;13807:435;14274:2;-1:-1:-1;;;;;14259:25:0;14268:4;-1:-1:-1;;;;;14259:25:0;;14278:5;14259:25;;;;1691::1;;1679:2;1664:18;;1545:177;14259:25:0;;;;;;;;13157:1135;;;:::o;25994:560::-;22334:17;:24;;;-1:-1:-1;;22334:24:0;;;;;;-1:-1:-1;;;;;26125:18:0;;::::1;-1:-1:-1::0;26125:18:0;;;:12:::1;:18;::::0;;;;;;26179:16;;22334:17;26179:16;;;;;::::1;::::0;;;26125:18;::::1;::::0;26179:16;::::1;;;;;;;;;;;::::0;-1:-1:-1;26179:16:0::1;26155:40;;26224:4;26206;26211:1;26206:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1::0;;;;;26206:23:0::1;;;-1:-1:-1::0;;;;;26206:23:0::1;;;::::0;::::1;26250:9;-1:-1:-1::0;;;;;26250:14:0::1;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;26240:4;26245:1;26240:7;;;;;;;;:::i;:::-;;;;;;:26;-1:-1:-1::0;;;;;26240:26:0::1;;;-1:-1:-1::0;;;;;26240:26:0::1;;;::::0;::::1;26279:56;26296:4;26311:9;26323:11;26279:8;:56::i;:::-;-1:-1:-1::0;;;;;26348:60:0;::::1;;26423:11:::0;26449:1:::1;26465:4:::0;26492::::1;26513:21;:15;26531:3;26513:21;:::i;:::-;26348:198;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;22381:17:0;:25;;-1:-1:-1;;22381:25:0;;;-1:-1:-1;;;;;;25994:560:0:o;222:418:1:-;371:2;360:9;353:21;334:4;403:6;397:13;446:6;441:2;430:9;426:18;419:34;505:6;500:2;492:6;488:15;483:2;472:9;468:18;462:50;561:1;556:2;547:6;536:9;532:22;528:31;521:42;631:2;624;620:7;615:2;607:6;603:15;599:29;588:9;584:45;580:54;572:62;;;222:418;;;;:::o;645:131::-;-1:-1:-1;;;;;720:31:1;;710:42;;700:70;;766:1;763;756:12;781:315;849:6;857;910:2;898:9;889:7;885:23;881:32;878:52;;;926:1;923;916:12;878:52;965:9;952:23;984:31;1009:5;984:31;:::i;:::-;1034:5;1086:2;1071:18;;;;1058:32;;-1:-1:-1;;;781:315:1:o;1293:247::-;1352:6;1405:2;1393:9;1384:7;1380:23;1376:32;1373:52;;;1421:1;1418;1411:12;1373:52;1460:9;1447:23;1479:31;1504:5;1479:31;:::i;:::-;1529:5;1293:247;-1:-1:-1;;;1293:247:1:o;1727:456::-;1804:6;1812;1820;1873:2;1861:9;1852:7;1848:23;1844:32;1841:52;;;1889:1;1886;1879:12;1841:52;1928:9;1915:23;1947:31;1972:5;1947:31;:::i;:::-;1997:5;-1:-1:-1;2054:2:1;2039:18;;2026:32;2067:33;2026:32;2067:33;:::i;:::-;1727:456;;2119:7;;-1:-1:-1;;;2173:2:1;2158:18;;;;2145:32;;1727:456::o;2377:416::-;2442:6;2450;2503:2;2491:9;2482:7;2478:23;2474:32;2471:52;;;2519:1;2516;2509:12;2471:52;2558:9;2545:23;2577:31;2602:5;2577:31;:::i;:::-;2627:5;-1:-1:-1;2684:2:1;2669:18;;2656:32;2726:15;;2719:23;2707:36;;2697:64;;2757:1;2754;2747:12;2697:64;2780:7;2770:17;;;2377:416;;;;;:::o;2798:388::-;2866:6;2874;2927:2;2915:9;2906:7;2902:23;2898:32;2895:52;;;2943:1;2940;2933:12;2895:52;2982:9;2969:23;3001:31;3026:5;3001:31;:::i;:::-;3051:5;-1:-1:-1;3108:2:1;3093:18;;3080:32;3121:33;3080:32;3121:33;:::i;3191:380::-;3270:1;3266:12;;;;3313;;;3334:61;;3388:4;3380:6;3376:17;3366:27;;3334:61;3441:2;3433:6;3430:14;3410:18;3407:38;3404:161;;3487:10;3482:3;3478:20;3475:1;3468:31;3522:4;3519:1;3512:15;3550:4;3547:1;3540:15;3404:161;;3191:380;;;:::o;3576:397::-;3778:2;3760:21;;;3817:2;3797:18;;;3790:30;3856:34;3851:2;3836:18;;3829:62;-1:-1:-1;;;3922:2:1;3907:18;;3900:31;3963:3;3948:19;;3576:397::o;3978:251::-;4048:6;4101:2;4089:9;4080:7;4076:23;4072:32;4069:52;;;4117:1;4114;4107:12;4069:52;4149:9;4143:16;4168:31;4193:5;4168:31;:::i;4893:127::-;4954:10;4949:3;4945:20;4942:1;4935:31;4985:4;4982:1;4975:15;5009:4;5006:1;4999:15;5025:148;5113:4;5092:12;;;5106;;;5088:31;;5131:13;;5128:39;;;5147:18;;:::i;5178:168::-;5251:9;;;5282;;5299:15;;;5293:22;;5279:37;5269:71;;5320:18;;:::i;5351:217::-;5391:1;5417;5407:132;;5461:10;5456:3;5452:20;5449:1;5442:31;5496:4;5493:1;5486:15;5524:4;5521:1;5514:15;5407:132;-1:-1:-1;5553:9:1;;5351:217::o;5573:128::-;5640:9;;;5661:11;;;5658:37;;;5675:18;;:::i;6066:125::-;6131:9;;;6152:10;;;6149:36;;;6165:18;;:::i;6687:127::-;6748:10;6743:3;6739:20;6736:1;6729:31;6779:4;6776:1;6769:15;6803:4;6800:1;6793:15;6819:980;7081:4;7129:3;7118:9;7114:19;7160:6;7149:9;7142:25;7186:2;7224:6;7219:2;7208:9;7204:18;7197:34;7267:3;7262:2;7251:9;7247:18;7240:31;7291:6;7326;7320:13;7357:6;7349;7342:22;7395:3;7384:9;7380:19;7373:26;;7434:2;7426:6;7422:15;7408:29;;7455:1;7465:195;7479:6;7476:1;7473:13;7465:195;;;7544:13;;-1:-1:-1;;;;;7540:39:1;7528:52;;7635:15;;;;7600:12;;;;7576:1;7494:9;7465:195;;;-1:-1:-1;;;;;;;7716:32:1;;;;7711:2;7696:18;;7689:60;-1:-1:-1;;;7780:3:1;7765:19;7758:35;7677:3;6819:980;-1:-1:-1;;;6819:980:1:o

Swarm Source

ipfs://07093e3fd562413be9df6ed31699f46f8e0fbef10e5484f1209c5a0797edad8b
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.