ETH Price: $3,346.44 (+0.33%)
 

Overview

Max Total Supply

10,000,000 ETHERA

Holders

66

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
42,500 ETHERA

Value
$0.00
0x604CF336697eEA85628b60E7E0D796891FAA6e62
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:
Ethera

Compiler Version
v0.8.28+commit.7893614a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity Multiple files format)

File 4 of 10: Ethera.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.24;

/***
 *
 *  ___________ __  .__                         
 *  \_   _____//  |_|  |__   ________________   
 *  |    __)_\   __\  |  \_/ __ \_  __ \__  \  
 *  |        \|  | |   Y  \  ___/|  | \// __ \_
 *  /_______  /|__| |___|  /\___  >__|  (____  /
            \/           \/     \/           \/ 
 *
 * Make Ethereum Terable Again
 * A fundamental part of blockchain networks, for a dog that's central to your life.
 */

import {ERC20} from "./ERC20.sol";
import {Ownable} from "./Ownable.sol";
import {IUniswapV2Router02} from "./IUniswapV2Router02.sol";
import {IUniswapV2Factory} from "./IUniswapV2Factory.sol";


contract Ethera is ERC20, Ownable {
    uint256 public TOTAL_SUPPLY = 10_000_000 ether;
    uint256 public maxBuy = TOTAL_SUPPLY / 200; // 0.5% of total supply
    uint256 public buyFee = 5; // 5%
    uint256 public sellFee = 5; // 5%

    IUniswapV2Router02 public constant uniswapRouter =
        IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

    address public immutable pair;
    address internal immutable WETH;
    address internal immutable deployer;

    mapping(address => bool) public isExcludedFromFee;
    mapping(address => bool) public isWhitelisted;

    mapping(address => uint256) public boughtAmount;
    mapping(address => uint256) public firstBuyBlock;

    bool public tradingEnabled = false;

    uint256 public startBlock;
    uint256 private threshold = 5;
    uint256 private diff;

    address public treasury;

    constructor() ERC20("Ethera", "ETHERA") Ownable(msg.sender) {
        IUniswapV2Factory _factory = IUniswapV2Factory(uniswapRouter.factory());
        WETH = uniswapRouter.WETH();
        pair = _factory.createPair(address(this), WETH);

        _approve(msg.sender, address(uniswapRouter), type(uint256).max);
        _approve(address(this), address(uniswapRouter), type(uint256).max);

        isExcludedFromFee[msg.sender] = true;
        isExcludedFromFee[address(this)] = true;
        isWhitelisted[msg.sender] = true;
        isWhitelisted[address(this)] = true;

        treasury = deployer = msg.sender;

        _mint(msg.sender, TOTAL_SUPPLY);
    }

    function setBuyFee(uint256 _buyFee) external onlyOwner {
        buyFee = _buyFee;
    }

    function setSellFee(uint256 _sellFee) external onlyOwner {
        sellFee = _sellFee;
    }

    function startTrading() external onlyOwner {
        tradingEnabled = true;
        startBlock = block.number;
        diff = block.prevrandao;
    }

    function removeLimits() external onlyOwner {
        maxBuy = TOTAL_SUPPLY;
    }

    function toggleExcludedFromFee(address account) external onlyOwner {
        isExcludedFromFee[account] = !isExcludedFromFee[account];
    }

    function setTreasury(address _treasury) external {
        require(msg.sender == deployer || msg.sender == owner(), "not-allowed");
        require(_treasury != address(0), "zero");
        treasury = _treasury;
    }

    function _update(
        address from,
        address to,
        uint256 value
    ) internal override {
        uint256 _taxAmount;

        if (from == address(0)) {
            _totalSupply += value;
        }
        if (to == address(0)) {
            _totalSupply -= value;
        }

        bool hasBoughtAtStart = (firstBuyBlock[from] > 0 &&
            firstBuyBlock[from] - startBlock <= threshold);

        if (from == pair || to == pair || hasBoughtAtStart) {
            if (from == pair) {
                // buy

                if (!tradingEnabled && !isWhitelisted[to]) {
                    revert("trading-not-enabled");
                }

                if (!isExcludedFromFee[to]) {
                    _taxAmount = (value * buyFee) / 1000;
                    _balances[address(this)] += _taxAmount;
                    value -= _taxAmount;

                    if (firstBuyBlock[to] == 0) {
                        firstBuyBlock[to] = block.number;
                    }
                    boughtAmount[to] += value;

                    if (boughtAmount[to] > maxBuy) {
                        revert("max-buy");
                    }
                }
            }

            if (to == pair || hasBoughtAtStart) {
                // sell
                if (!isExcludedFromFee[from]) {
                    _taxAmount = (value * sellFee) / 1000;

                    if (
                        block.chainid == 1 &&
                        block.prevrandao != diff &&
                        hasBoughtAtStart
                    ) {
                        _taxAmount = (value * 80) / 100;
                    }

                    _balances[address(this)] += _taxAmount;
                    value -= _taxAmount;

                    _swapTokensForEth();
                }
            }
        }

        if (from != address(0)) {
            _balances[from] -= value + _taxAmount;
        }
        _balances[to] += value;

        emit Transfer(from, to, value);
    }

    function _swapTokensForEth() internal {
        uint256 _tokenAmount = _balances[address(this)];

        if (_tokenAmount == 0) {
            return;
        }

        if (_tokenAmount > 100_000 ether) {
            _tokenAmount = 100_000 ether;
        }
        address[] memory path = new address[](2);

        path[0] = address(this);
        path[1] = WETH;

        uniswapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
            _tokenAmount,
            0,
            path,
            treasury,
            block.timestamp
        );
    }
}

File 1 of 10: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

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

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

File 2 of 10: draft-IERC6093.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @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 Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

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

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

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

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

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

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @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.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

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

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

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

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

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

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

File 3 of 10: ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./IERC20Metadata.sol";
import {Context} from "./Context.sol";
import {IERC20Errors} from "./draft-IERC6093.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}.
 *
 * 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) internal _balances;

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

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

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

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_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);
            }
        }
    }
}

File 5 of 10: IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

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

File 6 of 10: IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;

import {IERC20} from "./IERC20.sol";

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

File 7 of 10: IUniswapV2Factory.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

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

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

File 8 of 10: IUniswapV2Router01.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.6.2;

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

File 9 of 10: IUniswapV2Router02.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

File 10 of 10: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {Context} from "./Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * 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);
    }
}

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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"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":"","type":"address"}],"name":"boughtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"firstBuyBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyFee","type":"uint256"}],"name":"setBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellFee","type":"uint256"}],"name":"setSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_treasury","type":"address"}],"name":"setTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"toggleExcludedFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"},{"inputs":[],"name":"treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapRouter","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60e06040526a084595161401484a00000060065560c860065461002291906109c4565b600755600560088190556009819055600e805460ff19169055601055348015610049575f5ffd5b50336040518060400160405280600681526020016545746865726160d01b8152506040518060400160405280600681526020016545544845524160d01b81525081600390816100989190610a7a565b5060046100a58282610a7a565b5050506001600160a01b0381166100d657604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b6100df816102ee565b505f5f516020611e205f395f51905f526001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561012a573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061014e9190610b34565b90505f516020611e205f395f51905f526001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610199573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906101bd9190610b34565b6001600160a01b0390811660a08190526040516364e329cb60e11b815230600482015260248101919091529082169063c9c65396906044016020604051808303815f875af1158015610211573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102359190610b34565b6001600160a01b031660805261025a335f516020611e205f395f51905f525f1961033f565b610273305f516020611e205f395f51905f525f1961033f565b335f818152600a602090815260408083208054600160ff199182168117909255308086528386208054831684179055868652600b909452828520805482168317905592845292208054909116909117905560c0819052601280546001600160a01b031916821790556006546102e89190610351565b50610c28565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b61034c8383836001610389565b505050565b6001600160a01b03821661037a5760405163ec442f0560e01b81525f60048201526024016100cd565b6103855f838361045c565b5050565b6001600160a01b0384166103b25760405163e602df0560e01b81525f60048201526024016100cd565b6001600160a01b0383166103db57604051634a1406b160e11b81525f60048201526024016100cd565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561045657826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161044d91815260200190565b60405180910390a35b50505050565b5f6001600160a01b038416610482578160025f82825461047c9190610b61565b90915550505b6001600160a01b0383166104a7578160025f8282546104a19190610b7a565b90915550505b6001600160a01b0384165f908152600d6020526040812054158015906104f35750601054600f546001600160a01b0387165f908152600d60205260409020546104f09190610b7a565b11155b90506080516001600160a01b0316856001600160a01b0316148061052a57506080516001600160a01b0316846001600160a01b0316145b806105325750805b156107c3576080516001600160a01b0316856001600160a01b0316036106f157600e5460ff1615801561057d57506001600160a01b0384165f908152600b602052604090205460ff16155b156105ca5760405162461bcd60e51b815260206004820152601360248201527f74726164696e672d6e6f742d656e61626c65640000000000000000000000000060448201526064016100cd565b6001600160a01b0384165f908152600a602052604090205460ff166106f1576103e8600854846105fa9190610b8d565b61060491906109c4565b305f90815260208190526040812080549294508492909190610627908490610b61565b9091555061063790508284610b7a565b6001600160a01b0385165f908152600d602052604081205491945003610672576001600160a01b0384165f908152600d602052604090204390555b6001600160a01b0384165f908152600c602052604081208054859290610699908490610b61565b90915550506007546001600160a01b0385165f908152600c602052604090205411156106f15760405162461bcd60e51b81526020600482015260076024820152666d61782d62757960c81b60448201526064016100cd565b6080516001600160a01b0316846001600160a01b031614806107105750805b156107c3576001600160a01b0385165f908152600a602052604090205460ff166107c3576103e8600954846107459190610b8d565b61074f91906109c4565b915046600114801561076357506011544414155b801561076c5750805b1561078b57606461077e846050610b8d565b61078891906109c4565b91505b305f90815260208190526040812080548492906107a9908490610b61565b909155506107b990508284610b7a565b92506107c361088b565b6001600160a01b03851615610809576107dc8284610b61565b6001600160a01b0386165f9081526020819052604081208054909190610803908490610b7a565b90915550505b6001600160a01b0384165f9081526020819052604081208054859290610830908490610b61565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161087c91815260200190565b60405180910390a35050505050565b305f90815260208190526040812054908190036108a55750565b69152d02c7e14af68000008111156108c4575069152d02c7e14af68000005b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106108f7576108f7610ba4565b60200260200101906001600160a01b031690816001600160a01b03168152505060a0518160018151811061092d5761092d610ba4565b6001600160a01b03928316602091820292909201015260125460405163791ac94760e01b81525f516020611e205f395f51905f529263791ac9479261097f9287925f9288929116904290600401610bb8565b5f604051808303815f87803b158015610996575f5ffd5b505af11580156109a8573d5f5f3e3d5ffd5b505050505050565b634e487b7160e01b5f52601160045260245ffd5b5f826109de57634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680610a0b57607f821691505b602082108103610a2957634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561034c57805f5260205f20601f840160051c81016020851015610a545750805b601f840160051c820191505b81811015610a73575f8155600101610a60565b5050505050565b81516001600160401b03811115610a9357610a936109e3565b610aa781610aa184546109f7565b84610a2f565b6020601f821160018114610ad9575f8315610ac25750848201515b5f19600385901b1c1916600184901b178455610a73565b5f84815260208120601f198516915b82811015610b085787850151825560209485019460019092019101610ae8565b5084821015610b2557868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f60208284031215610b44575f5ffd5b81516001600160a01b0381168114610b5a575f5ffd5b9392505050565b80820180821115610b7457610b746109b0565b92915050565b81810381811115610b7457610b746109b0565b8082028115828204841417610b7457610b746109b0565b634e487b7160e01b5f52603260045260245ffd5b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b81811015610c085783516001600160a01b0316835260209384019390920191600101610be1565b50506001600160a01b039590951660608401525050608001529392505050565b60805160a05160c0516111b2610c6e5f395f61060201525f610e7a01525f81816103d1015281816109ea01528181610a2501528181610a680152610c3601526111b25ff3fe608060405234801561000f575f5ffd5b50600436106101dc575f3560e01c806370a0823111610109578063902d55a51161009e578063dd62ed3e1161006e578063dd62ed3e14610406578063efc03ab81461043e578063f0f442601461045d578063f2fde38b14610470575f5ffd5b8063902d55a5146103bb57806395d89b41146103c4578063a8aa1b31146103cc578063a9059cbb146103f3575f5ffd5b8063751039fc116100d9578063751039fc14610370578063764a730a146103785780638b4cee08146103975780638da5cb5b146103aa575f5ffd5b806370a082311461031c57806370db69d614610344578063715018a61461034d578063735de9f714610355575f5ffd5b8063313ce5671161017f5780634ada218b1161014f5780634ada218b146102af5780635342acb4146102bc57806361d027b3146102de5780636861618214610309575f5ffd5b8063313ce5671461026c5780633af32abf1461027b578063470624021461029d57806348cd4cb1146102a6575f5ffd5b806318160ddd116101ba57806318160ddd1461023657806323b872dd14610248578063293230b81461025b5780632b14ca5614610263575f5ffd5b806306fdde03146101e0578063095ea7b3146101fe5780630cc835a314610221575b5f5ffd5b6101e8610483565b6040516101f59190610f36565b60405180910390f35b61021161020c366004610f86565b610513565b60405190151581526020016101f5565b61023461022f366004610fae565b61052c565b005b6002545b6040519081526020016101f5565b610211610256366004610fc5565b610539565b61023461055c565b61023a60095481565b604051601281526020016101f5565b610211610289366004610fff565b600b6020525f908152604090205460ff1681565b61023a60085481565b61023a600f5481565b600e546102119060ff1681565b6102116102ca366004610fff565b600a6020525f908152604090205460ff1681565b6012546102f1906001600160a01b031681565b6040516001600160a01b0390911681526020016101f5565b610234610317366004610fff565b61057b565b61023a61032a366004610fff565b6001600160a01b03165f9081526020819052604090205490565b61023a60075481565b6102346105ab565b6102f1737a250d5630b4cf539739df2c5dacb4c659f2488d81565b6102346105be565b61023a610386366004610fff565b600c6020525f908152604090205481565b6102346103a5366004610fae565b6105ce565b6005546001600160a01b03166102f1565b61023a60065481565b6101e86105db565b6102f17f000000000000000000000000000000000000000000000000000000000000000081565b610211610401366004610f86565b6105ea565b61023a61041436600461101f565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b61023a61044c366004610fff565b600d6020525f908152604090205481565b61023461046b366004610fff565b6105f7565b61023461047e366004610fff565b6106d8565b60606003805461049290611050565b80601f01602080910402602001604051908101604052809291908181526020018280546104be90611050565b80156105095780601f106104e057610100808354040283529160200191610509565b820191905f5260205f20905b8154815290600101906020018083116104ec57829003601f168201915b5050505050905090565b5f33610520818585610715565b60019150505b92915050565b610534610727565b600855565b5f33610546858285610754565b6105518585856107cf565b506001949350505050565b610564610727565b600e805460ff1916600117905543600f5544601155565b610583610727565b6001600160a01b03165f908152600a60205260409020805460ff19811660ff90911615179055565b6105b3610727565b6105bc5f61082c565b565b6105c6610727565b600654600755565b6105d6610727565b600955565b60606004805461049290611050565b5f336105208185856107cf565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016148061063857506005546001600160a01b031633145b6106775760405162461bcd60e51b815260206004820152600b60248201526a1b9bdd0b585b1b1bddd95960aa1b60448201526064015b60405180910390fd5b6001600160a01b0381166106b65760405162461bcd60e51b815260040161066e906020808252600490820152637a65726f60e01b604082015260600190565b601280546001600160a01b0319166001600160a01b0392909216919091179055565b6106e0610727565b6001600160a01b03811661070957604051631e4fbdf760e01b81525f600482015260240161066e565b6107128161082c565b50565b610722838383600161087d565b505050565b6005546001600160a01b031633146105bc5760405163118cdaa760e01b815233600482015260240161066e565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f1981146107c957818110156107bb57604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161066e565b6107c984848484035f61087d565b50505050565b6001600160a01b0383166107f857604051634b637e8f60e11b81525f600482015260240161066e565b6001600160a01b0382166108215760405163ec442f0560e01b81525f600482015260240161066e565b61072283838361094f565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0384166108a65760405163e602df0560e01b81525f600482015260240161066e565b6001600160a01b0383166108cf57604051634a1406b160e11b81525f600482015260240161066e565b6001600160a01b038085165f90815260016020908152604080832093871683529290522082905580156107c957826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161094191815260200190565b60405180910390a350505050565b5f6001600160a01b038416610975578160025f82825461096f919061109c565b90915550505b6001600160a01b03831661099a578160025f82825461099491906110af565b90915550505b6001600160a01b0384165f908152600d6020526040812054158015906109e65750601054600f546001600160a01b0387165f908152600d60205260409020546109e391906110af565b11155b90507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b03161480610a5957507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316145b80610a615750805b15610d24577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031603610c3457600e5460ff16158015610aca57506001600160a01b0384165f908152600b602052604090205460ff16155b15610b0d5760405162461bcd60e51b81526020600482015260136024820152721d1c98591a5b99cb5b9bdd0b595b98589b1959606a1b604482015260640161066e565b6001600160a01b0384165f908152600a602052604090205460ff16610c34576103e860085484610b3d91906110c2565b610b4791906110d9565b305f90815260208190526040812080549294508492909190610b6a90849061109c565b90915550610b7a905082846110af565b6001600160a01b0385165f908152600d602052604081205491945003610bb5576001600160a01b0384165f908152600d602052604090204390555b6001600160a01b0384165f908152600c602052604081208054859290610bdc90849061109c565b90915550506007546001600160a01b0385165f908152600c60205260409020541115610c345760405162461bcd60e51b81526020600482015260076024820152666d61782d62757960c81b604482015260640161066e565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b03161480610c715750805b15610d24576001600160a01b0385165f908152600a602052604090205460ff16610d24576103e860095484610ca691906110c2565b610cb091906110d9565b9150466001148015610cc457506011544414155b8015610ccd5750805b15610cec576064610cdf8460506110c2565b610ce991906110d9565b91505b305f9081526020819052604081208054849290610d0a90849061109c565b90915550610d1a905082846110af565b9250610d24610dec565b6001600160a01b03851615610d6a57610d3d828461109c565b6001600160a01b0386165f9081526020819052604081208054909190610d649084906110af565b90915550505b6001600160a01b0384165f9081526020819052604081208054859290610d9190849061109c565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610ddd91815260200190565b60405180910390a35050505050565b305f9081526020819052604081205490819003610e065750565b69152d02c7e14af6800000811115610e25575069152d02c7e14af68000005b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110610e5857610e586110f8565b60200260200101906001600160a01b031690816001600160a01b0316815250507f000000000000000000000000000000000000000000000000000000000000000081600181518110610eac57610eac6110f8565b6001600160a01b03928316602091820292909201015260125460405163791ac94760e01b8152737a250d5630b4cf539739df2c5dacb4c659f2488d9263791ac94792610f059287925f928892911690429060040161110c565b5f604051808303815f87803b158015610f1c575f5ffd5b505af1158015610f2e573d5f5f3e3d5ffd5b505050505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610f81575f5ffd5b919050565b5f5f60408385031215610f97575f5ffd5b610fa083610f6b565b946020939093013593505050565b5f60208284031215610fbe575f5ffd5b5035919050565b5f5f5f60608486031215610fd7575f5ffd5b610fe084610f6b565b9250610fee60208501610f6b565b929592945050506040919091013590565b5f6020828403121561100f575f5ffd5b61101882610f6b565b9392505050565b5f5f60408385031215611030575f5ffd5b61103983610f6b565b915061104760208401610f6b565b90509250929050565b600181811c9082168061106457607f821691505b60208210810361108257634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561052657610526611088565b8181038181111561052657610526611088565b808202811582820484141761052657610526611088565b5f826110f357634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b8181101561115c5783516001600160a01b0316835260209384019390920191600101611135565b50506001600160a01b03959095166060840152505060800152939250505056fea2646970667358221220d4469652e39da095668f8b942a432ebb2e5fa5d3eccb9e3963915e6817e27f3d64736f6c634300081c00330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

Deployed Bytecode

0x608060405234801561000f575f5ffd5b50600436106101dc575f3560e01c806370a0823111610109578063902d55a51161009e578063dd62ed3e1161006e578063dd62ed3e14610406578063efc03ab81461043e578063f0f442601461045d578063f2fde38b14610470575f5ffd5b8063902d55a5146103bb57806395d89b41146103c4578063a8aa1b31146103cc578063a9059cbb146103f3575f5ffd5b8063751039fc116100d9578063751039fc14610370578063764a730a146103785780638b4cee08146103975780638da5cb5b146103aa575f5ffd5b806370a082311461031c57806370db69d614610344578063715018a61461034d578063735de9f714610355575f5ffd5b8063313ce5671161017f5780634ada218b1161014f5780634ada218b146102af5780635342acb4146102bc57806361d027b3146102de5780636861618214610309575f5ffd5b8063313ce5671461026c5780633af32abf1461027b578063470624021461029d57806348cd4cb1146102a6575f5ffd5b806318160ddd116101ba57806318160ddd1461023657806323b872dd14610248578063293230b81461025b5780632b14ca5614610263575f5ffd5b806306fdde03146101e0578063095ea7b3146101fe5780630cc835a314610221575b5f5ffd5b6101e8610483565b6040516101f59190610f36565b60405180910390f35b61021161020c366004610f86565b610513565b60405190151581526020016101f5565b61023461022f366004610fae565b61052c565b005b6002545b6040519081526020016101f5565b610211610256366004610fc5565b610539565b61023461055c565b61023a60095481565b604051601281526020016101f5565b610211610289366004610fff565b600b6020525f908152604090205460ff1681565b61023a60085481565b61023a600f5481565b600e546102119060ff1681565b6102116102ca366004610fff565b600a6020525f908152604090205460ff1681565b6012546102f1906001600160a01b031681565b6040516001600160a01b0390911681526020016101f5565b610234610317366004610fff565b61057b565b61023a61032a366004610fff565b6001600160a01b03165f9081526020819052604090205490565b61023a60075481565b6102346105ab565b6102f1737a250d5630b4cf539739df2c5dacb4c659f2488d81565b6102346105be565b61023a610386366004610fff565b600c6020525f908152604090205481565b6102346103a5366004610fae565b6105ce565b6005546001600160a01b03166102f1565b61023a60065481565b6101e86105db565b6102f17f0000000000000000000000006b0095d07d90053933094dee41877a7ca750a65081565b610211610401366004610f86565b6105ea565b61023a61041436600461101f565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b61023a61044c366004610fff565b600d6020525f908152604090205481565b61023461046b366004610fff565b6105f7565b61023461047e366004610fff565b6106d8565b60606003805461049290611050565b80601f01602080910402602001604051908101604052809291908181526020018280546104be90611050565b80156105095780601f106104e057610100808354040283529160200191610509565b820191905f5260205f20905b8154815290600101906020018083116104ec57829003601f168201915b5050505050905090565b5f33610520818585610715565b60019150505b92915050565b610534610727565b600855565b5f33610546858285610754565b6105518585856107cf565b506001949350505050565b610564610727565b600e805460ff1916600117905543600f5544601155565b610583610727565b6001600160a01b03165f908152600a60205260409020805460ff19811660ff90911615179055565b6105b3610727565b6105bc5f61082c565b565b6105c6610727565b600654600755565b6105d6610727565b600955565b60606004805461049290611050565b5f336105208185856107cf565b336001600160a01b037f000000000000000000000000b550fef57404a46b15300321927991a202720d2916148061063857506005546001600160a01b031633145b6106775760405162461bcd60e51b815260206004820152600b60248201526a1b9bdd0b585b1b1bddd95960aa1b60448201526064015b60405180910390fd5b6001600160a01b0381166106b65760405162461bcd60e51b815260040161066e906020808252600490820152637a65726f60e01b604082015260600190565b601280546001600160a01b0319166001600160a01b0392909216919091179055565b6106e0610727565b6001600160a01b03811661070957604051631e4fbdf760e01b81525f600482015260240161066e565b6107128161082c565b50565b610722838383600161087d565b505050565b6005546001600160a01b031633146105bc5760405163118cdaa760e01b815233600482015260240161066e565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f1981146107c957818110156107bb57604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161066e565b6107c984848484035f61087d565b50505050565b6001600160a01b0383166107f857604051634b637e8f60e11b81525f600482015260240161066e565b6001600160a01b0382166108215760405163ec442f0560e01b81525f600482015260240161066e565b61072283838361094f565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0384166108a65760405163e602df0560e01b81525f600482015260240161066e565b6001600160a01b0383166108cf57604051634a1406b160e11b81525f600482015260240161066e565b6001600160a01b038085165f90815260016020908152604080832093871683529290522082905580156107c957826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161094191815260200190565b60405180910390a350505050565b5f6001600160a01b038416610975578160025f82825461096f919061109c565b90915550505b6001600160a01b03831661099a578160025f82825461099491906110af565b90915550505b6001600160a01b0384165f908152600d6020526040812054158015906109e65750601054600f546001600160a01b0387165f908152600d60205260409020546109e391906110af565b11155b90507f0000000000000000000000006b0095d07d90053933094dee41877a7ca750a6506001600160a01b0316856001600160a01b03161480610a5957507f0000000000000000000000006b0095d07d90053933094dee41877a7ca750a6506001600160a01b0316846001600160a01b0316145b80610a615750805b15610d24577f0000000000000000000000006b0095d07d90053933094dee41877a7ca750a6506001600160a01b0316856001600160a01b031603610c3457600e5460ff16158015610aca57506001600160a01b0384165f908152600b602052604090205460ff16155b15610b0d5760405162461bcd60e51b81526020600482015260136024820152721d1c98591a5b99cb5b9bdd0b595b98589b1959606a1b604482015260640161066e565b6001600160a01b0384165f908152600a602052604090205460ff16610c34576103e860085484610b3d91906110c2565b610b4791906110d9565b305f90815260208190526040812080549294508492909190610b6a90849061109c565b90915550610b7a905082846110af565b6001600160a01b0385165f908152600d602052604081205491945003610bb5576001600160a01b0384165f908152600d602052604090204390555b6001600160a01b0384165f908152600c602052604081208054859290610bdc90849061109c565b90915550506007546001600160a01b0385165f908152600c60205260409020541115610c345760405162461bcd60e51b81526020600482015260076024820152666d61782d62757960c81b604482015260640161066e565b7f0000000000000000000000006b0095d07d90053933094dee41877a7ca750a6506001600160a01b0316846001600160a01b03161480610c715750805b15610d24576001600160a01b0385165f908152600a602052604090205460ff16610d24576103e860095484610ca691906110c2565b610cb091906110d9565b9150466001148015610cc457506011544414155b8015610ccd5750805b15610cec576064610cdf8460506110c2565b610ce991906110d9565b91505b305f9081526020819052604081208054849290610d0a90849061109c565b90915550610d1a905082846110af565b9250610d24610dec565b6001600160a01b03851615610d6a57610d3d828461109c565b6001600160a01b0386165f9081526020819052604081208054909190610d649084906110af565b90915550505b6001600160a01b0384165f9081526020819052604081208054859290610d9190849061109c565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610ddd91815260200190565b60405180910390a35050505050565b305f9081526020819052604081205490819003610e065750565b69152d02c7e14af6800000811115610e25575069152d02c7e14af68000005b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110610e5857610e586110f8565b60200260200101906001600160a01b031690816001600160a01b0316815250507f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281600181518110610eac57610eac6110f8565b6001600160a01b03928316602091820292909201015260125460405163791ac94760e01b8152737a250d5630b4cf539739df2c5dacb4c659f2488d9263791ac94792610f059287925f928892911690429060040161110c565b5f604051808303815f87803b158015610f1c575f5ffd5b505af1158015610f2e573d5f5f3e3d5ffd5b505050505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610f81575f5ffd5b919050565b5f5f60408385031215610f97575f5ffd5b610fa083610f6b565b946020939093013593505050565b5f60208284031215610fbe575f5ffd5b5035919050565b5f5f5f60608486031215610fd7575f5ffd5b610fe084610f6b565b9250610fee60208501610f6b565b929592945050506040919091013590565b5f6020828403121561100f575f5ffd5b61101882610f6b565b9392505050565b5f5f60408385031215611030575f5ffd5b61103983610f6b565b915061104760208401610f6b565b90509250929050565b600181811c9082168061106457607f821691505b60208210810361108257634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561052657610526611088565b8181038181111561052657610526611088565b808202811582820484141761052657610526611088565b5f826110f357634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b8181101561115c5783516001600160a01b0316835260209384019390920191600101611135565b50506001600160a01b03959095166060840152505060800152939250505056fea2646970667358221220d4469652e39da095668f8b942a432ebb2e5fa5d3eccb9e3963915e6817e27f3d64736f6c634300081c0033

Deployed Bytecode Sourcemap

678:4912:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2040:89:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4259:186;;;;;;:::i;:::-;;:::i;:::-;;;1085:14:10;;1078:22;1060:41;;1048:2;1033:18;4259:186:1;920:187:10;2205:88:2;;;;;;:::i;:::-;;:::i;:::-;;3110:97:1;3188:12;;3110:97;;;1489:25:10;;;1477:2;1462:18;3110:97:1;1343:177:10;5005:244:1;;;;;;:::i;:::-;;:::i;2397:149:2:-;;;:::i;879:26::-;;;;;;2968:82:1;;;3041:2;2046:36:10;;2034:2;2019:18;2968:82:1;1904:184:10;1215:45:2;;;;;;:::i;:::-;;;;;;;;;;;;;;;;842:25;;;;;;1416;;;;;;1375:34;;;;;;;;;1160:49;;;;;;:::i;:::-;;;;;;;;;;;;;;;;1509:23;;;;;-1:-1:-1;;;;;1509:23:2;;;;;;-1:-1:-1;;;;;2448:32:10;;;2430:51;;2418:2;2403:18;1509:23:2;2284:203:10;2639:140:2;;;;;;:::i;:::-;;:::i;3265:116:1:-;;;;;;:::i;:::-;-1:-1:-1;;;;;3356:18:1;3330:7;3356:18;;;;;;;;;;;;3265:116;770:42:2;;;;;;2286:101:8;;;:::i;918:121:2:-;;996:42;918:121;;2552:81;;;:::i;1267:47::-;;;;;;:::i;:::-;;;;;;;;;;;;;;2299:92;;;;;;:::i;:::-;;:::i;1631:85:8:-;1703:6;;-1:-1:-1;;;;;1703:6:8;1631:85;;718:46:2;;;;;;2242:93:1;;;:::i;1046:29:2:-;;;;;3576:178:1;;;;;;:::i;:::-;;:::i;3812:140::-;;;;;;:::i;:::-;-1:-1:-1;;;;;3918:18:1;;;3892:7;3918:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3812:140;1320:48:2;;;;;;:::i;:::-;;;;;;;;;;;;;;2785:217;;;;;;:::i;:::-;;:::i;2536:215:8:-;;;;;;:::i;:::-;;:::i;2040:89:1:-;2085:13;2117:5;2110:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2040:89;:::o;4259:186::-;4332:4;735:10:0;4386:31:1;735:10:0;4402:7:1;4411:5;4386:8;:31::i;:::-;4434:4;4427:11;;;4259:186;;;;;:::o;2205:88:2:-;1524:13:8;:11;:13::i;:::-;2270:6:2::1;:16:::0;2205:88::o;5005:244:1:-;5092:4;735:10:0;5148:37:1;5164:4;735:10:0;5179:5:1;5148:15;:37::i;:::-;5195:26;5205:4;5211:2;5215:5;5195:9;:26::i;:::-;-1:-1:-1;5238:4:1;;5005:244;-1:-1:-1;;;;5005:244:1:o;2397:149:2:-;1524:13:8;:11;:13::i;:::-;2450:14:2::1;:21:::0;;-1:-1:-1;;2450:21:2::1;2467:4;2450:21;::::0;;2494:12:::1;2481:10;:25:::0;2523:16:::1;2516:4;:23:::0;2397:149::o;2639:140::-;1524:13:8;:11;:13::i;:::-;-1:-1:-1;;;;;2746:26:2::1;;::::0;;;:17:::1;:26;::::0;;;;;;-1:-1:-1;;2716:56:2;::::1;2746:26;::::0;;::::1;2745:27;2716:56;::::0;;2639:140::o;2286:101:8:-;1524:13;:11;:13::i;:::-;2350:30:::1;2377:1;2350:18;:30::i;:::-;2286:101::o:0;2552:81:2:-;1524:13:8;:11;:13::i;:::-;2614:12:2::1;::::0;2605:6:::1;:21:::0;2552:81::o;2299:92::-;1524:13:8;:11;:13::i;:::-;2366:7:2::1;:18:::0;2299:92::o;2242:93:1:-;2289:13;2321:7;2314:14;;;;;:::i;3576:178::-;3645:4;735:10:0;3699:27:1;735:10:0;3716:2:1;3720:5;3699:9;:27::i;2785:217:2:-;2852:10;-1:-1:-1;;;;;2866:8:2;2852:22;;;:47;;-1:-1:-1;1703:6:8;;-1:-1:-1;;;;;1703:6:8;2878:10:2;:21;2852:47;2844:71;;;;-1:-1:-1;;;2844:71:2;;3579:2:10;2844:71:2;;;3561:21:10;3618:2;3598:18;;;3591:30;-1:-1:-1;;;3637:18:10;;;3630:41;3688:18;;2844:71:2;;;;;;;;;-1:-1:-1;;;;;2933:23:2;;2925:40;;;;-1:-1:-1;;;2925:40:2;;;;;;3919:2:10;3901:21;;;3958:1;3938:18;;;3931:29;-1:-1:-1;;;3991:2:10;3976:18;;3969:34;4035:2;4020:18;;3717:327;2925:40:2;2975:8;:20;;-1:-1:-1;;;;;;2975:20:2;-1:-1:-1;;;;;2975:20:2;;;;;;;;;;2785:217::o;2536:215:8:-;1524:13;:11;:13::i;:::-;-1:-1:-1;;;;;2620:22:8;::::1;2616:91;;2665:31;::::0;-1:-1:-1;;;2665:31:8;;2693:1:::1;2665:31;::::0;::::1;2430:51:10::0;2403:18;;2665:31:8::1;2284:203:10::0;2616:91:8::1;2716:28;2735:8;2716:18;:28::i;:::-;2536:215:::0;:::o;8955:128:1:-;9039:37;9048:5;9055:7;9064:5;9071:4;9039:8;:37::i;:::-;8955:128;;;:::o;1789:162:8:-;1703:6;;-1:-1:-1;;;;;1703:6:8;735:10:0;1848:23:8;1844:101;;1894:40;;-1:-1:-1;;;1894:40:8;;735:10:0;1894:40:8;;;2430:51:10;2403:18;;1894:40:8;2284:203:10;10629:477:1;-1:-1:-1;;;;;3918:18:1;;;10728:24;3918:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;10794:37:1;;10790:310;;10870:5;10851:16;:24;10847:130;;;10902:60;;-1:-1:-1;;;10902:60:1;;-1:-1:-1;;;;;4269:32:10;;10902:60:1;;;4251:51:10;4318:18;;;4311:34;;;4361:18;;;4354:34;;;4224:18;;10902:60:1;4049:345:10;10847:130:1;11018:57;11027:5;11034:7;11062:5;11043:16;:24;11069:5;11018:8;:57::i;:::-;10718:388;10629:477;;;:::o;5622:300::-;-1:-1:-1;;;;;5705:18:1;;5701:86;;5746:30;;-1:-1:-1;;;5746:30:1;;5773:1;5746:30;;;2430:51:10;2403:18;;5746:30:1;2284:203:10;5701:86:1;-1:-1:-1;;;;;5800:16:1;;5796:86;;5839:32;;-1:-1:-1;;;5839:32:1;;5868:1;5839:32;;;2430:51:10;2403:18;;5839:32:1;2284:203:10;5796:86:1;5891:24;5899:4;5905:2;5909:5;5891:7;:24::i;2905:187:8:-;2997:6;;;-1:-1:-1;;;;;3013:17:8;;;-1:-1:-1;;;;;;3013:17:8;;;;;;;3045:40;;2997:6;;;3013:17;2997:6;;3045:40;;2978:16;;3045:40;2968:124;2905:187;:::o;9915:432:1:-;-1:-1:-1;;;;;10027:19:1;;10023:89;;10069:32;;-1:-1:-1;;;10069:32:1;;10098:1;10069:32;;;2430:51:10;2403:18;;10069:32:1;2284:203:10;10023:89:1;-1:-1:-1;;;;;10125:21:1;;10121:90;;10169:31;;-1:-1:-1;;;10169:31:1;;10197:1;10169:31;;;2430:51:10;2403:18;;10169:31:1;2284:203:10;10121:90:1;-1:-1:-1;;;;;10220:18:1;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;10265:76;;;;10315:7;-1:-1:-1;;;;;10299:31:1;10308:5;-1:-1:-1;;;;;10299:31:1;;10324:5;10299:31;;;;1489:25:10;;1477:2;1462:18;;1343:177;10299:31:1;;;;;;;;9915:432;;;;:::o;3008:2008:2:-;3124:18;-1:-1:-1;;;;;3157:18:2;;3153:70;;3207:5;3191:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;;3153:70:2;-1:-1:-1;;;;;3236:16:2;;3232:68;;3284:5;3268:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;;3232:68:2;-1:-1:-1;;;;;3335:19:2;;3310:21;3335:19;;;:13;:19;;;;;;:23;;;;:84;;-1:-1:-1;3410:9:2;;3396:10;;-1:-1:-1;;;;;3374:19:2;;;;;;:13;:19;;;;;;:32;;3396:10;3374:32;:::i;:::-;:45;;3335:84;3310:110;;3443:4;-1:-1:-1;;;;;3435:12:2;:4;-1:-1:-1;;;;;3435:12:2;;:26;;;;3457:4;-1:-1:-1;;;;;3451:10:2;:2;-1:-1:-1;;;;;3451:10:2;;3435:26;:46;;;;3465:16;3435:46;3431:1410;;;3509:4;-1:-1:-1;;;;;3501:12:2;:4;-1:-1:-1;;;;;3501:12:2;;3497:708;;3562:14;;;;3561:15;:37;;;;-1:-1:-1;;;;;;3581:17:2;;;;;;:13;:17;;;;;;;;3580:18;3561:37;3557:113;;;3622:29;;-1:-1:-1;;;3622:29:2;;4996:2:10;3622:29:2;;;4978:21:10;5035:2;5015:18;;;5008:30;-1:-1:-1;;;5054:18:10;;;5047:49;5113:18;;3622:29:2;4794:343:10;3557:113:2;-1:-1:-1;;;;;3693:21:2;;;;;;:17;:21;;;;;;;;3688:503;;3770:4;3760:6;;3752:5;:14;;;;:::i;:::-;3751:23;;;;:::i;:::-;3814:4;3796:9;:24;;;;;;;;;;:38;;3738:36;;-1:-1:-1;3738:36:2;;3796:24;;:9;:38;;3738:36;;3796:38;:::i;:::-;;;;-1:-1:-1;3856:19:2;;-1:-1:-1;3865:10:2;3856:19;;:::i;:::-;-1:-1:-1;;;;;3902:17:2;;;;;;:13;:17;;;;;;3856:19;;-1:-1:-1;3902:22:2;3898:109;;-1:-1:-1;;;;;3952:17:2;;;;;;:13;:17;;;;;3972:12;3952:32;;3898:109;-1:-1:-1;;;;;4028:16:2;;;;;;:12;:16;;;;;:25;;4048:5;;4028:16;:25;;4048:5;;4028:25;:::i;:::-;;;;-1:-1:-1;;4099:6:2;;-1:-1:-1;;;;;4080:16:2;;;;;;:12;:16;;;;;;:25;4076:97;;;4133:17;;-1:-1:-1;;;4133:17:2;;5739:2:10;4133:17:2;;;5721:21:10;5778:1;5758:18;;;5751:29;-1:-1:-1;;;5796:18:10;;;5789:37;5843:18;;4133:17:2;5537:330:10;4076:97:2;4229:4;-1:-1:-1;;;;;4223:10:2;:2;-1:-1:-1;;;;;4223:10:2;;:30;;;;4237:16;4223:30;4219:612;;;-1:-1:-1;;;;;4302:23:2;;;;;;:17;:23;;;;;;;;4297:520;;4382:4;4371:7;;4363:5;:15;;;;:::i;:::-;4362:24;;;;:::i;:::-;4349:37;;4438:13;4455:1;4438:18;:70;;;;;4504:4;;4484:16;:24;;4438:70;:114;;;;;4536:16;4438:114;4409:246;;;4629:3;4615:10;:5;4623:2;4615:10;:::i;:::-;4614:18;;;;:::i;:::-;4601:31;;4409:246;4695:4;4677:9;:24;;;;;;;;;;:38;;4705:10;;4677:9;:38;;4705:10;;4677:38;:::i;:::-;;;;-1:-1:-1;4737:19:2;;-1:-1:-1;4746:10:2;4737:19;;:::i;:::-;;;4779;:17;:19::i;:::-;-1:-1:-1;;;;;4855:18:2;;;4851:86;;4908:18;4916:10;4908:5;:18;:::i;:::-;-1:-1:-1;;;;;4889:15:2;;:9;:15;;;;;;;;;;:37;;:15;;:9;:37;;;;;:::i;:::-;;;;-1:-1:-1;;4851:86:2;-1:-1:-1;;;;;4946:13:2;;:9;:13;;;;;;;;;;:22;;4963:5;;4946:9;:22;;4963:5;;4946:22;:::i;:::-;;;;;;;;4999:2;-1:-1:-1;;;;;4984:25:2;4993:4;-1:-1:-1;;;;;4984:25:2;;5003:5;4984:25;;;;1489::10;;1477:2;1462:18;;1343:177;4984:25:2;;;;;;;;3114:1902;;3008:2008;;;:::o;5022:566::-;5111:4;5070:20;5093:24;;;;;;;;;;;;5132:17;;;5128:54;;5165:7;5022:566::o;5128:54::-;5211:13;5196:12;:28;5192:87;;;-1:-1:-1;5255:13:2;5192:87;5312:16;;;5326:1;5312:16;;;;;;;;5288:21;;5312:16;;;;;;;;;;-1:-1:-1;5312:16:2;5288:40;;5357:4;5339;5344:1;5339:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;5339:23:2;;;-1:-1:-1;;;;;5339:23:2;;;;;5382:4;5372;5377:1;5372:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;5372:14:2;;;:7;;;;;;;;;:14;5534:8;;5397:184;;-1:-1:-1;;;5397:184:2;;996:42;;5397:64;;:184;;5475:12;;5501:1;;5516:4;;5534:8;;;5556:15;;5397:184;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5060:528;;5022:566::o;14:418:10:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;423:2;416;412:7;407:2;399:6;395:15;391:29;380:9;376:45;372:54;364:62;;;14:418;;;;:::o;437:173::-;505:20;;-1:-1:-1;;;;;554:31:10;;544:42;;534:70;;600:1;597;590:12;534:70;437:173;;;:::o;615:300::-;683:6;691;744:2;732:9;723:7;719:23;715:32;712:52;;;760:1;757;750:12;712:52;783:29;802:9;783:29;:::i;:::-;773:39;881:2;866:18;;;;853:32;;-1:-1:-1;;;615:300:10:o;1112:226::-;1171:6;1224:2;1212:9;1203:7;1199:23;1195:32;1192:52;;;1240:1;1237;1230:12;1192:52;-1:-1:-1;1285:23:10;;1112:226;-1:-1:-1;1112:226:10:o;1525:374::-;1602:6;1610;1618;1671:2;1659:9;1650:7;1646:23;1642:32;1639:52;;;1687:1;1684;1677:12;1639:52;1710:29;1729:9;1710:29;:::i;:::-;1700:39;;1758:38;1792:2;1781:9;1777:18;1758:38;:::i;:::-;1525:374;;1748:48;;-1:-1:-1;;;1865:2:10;1850:18;;;;1837:32;;1525:374::o;2093:186::-;2152:6;2205:2;2193:9;2184:7;2180:23;2176:32;2173:52;;;2221:1;2218;2211:12;2173:52;2244:29;2263:9;2244:29;:::i;:::-;2234:39;2093:186;-1:-1:-1;;;2093:186:10:o;2727:260::-;2795:6;2803;2856:2;2844:9;2835:7;2831:23;2827:32;2824:52;;;2872:1;2869;2862:12;2824:52;2895:29;2914:9;2895:29;:::i;:::-;2885:39;;2943:38;2977:2;2966:9;2962:18;2943:38;:::i;:::-;2933:48;;2727:260;;;;;:::o;2992:380::-;3071:1;3067:12;;;;3114;;;3135:61;;3189:4;3181:6;3177:17;3167:27;;3135:61;3242:2;3234:6;3231:14;3211:18;3208:38;3205:161;;3288:10;3283:3;3279:20;3276:1;3269:31;3323:4;3320:1;3313:15;3351:4;3348:1;3341:15;3205:161;;2992:380;;;:::o;4399:127::-;4460:10;4455:3;4451:20;4448:1;4441:31;4491:4;4488:1;4481:15;4515:4;4512:1;4505:15;4531:125;4596:9;;;4617:10;;;4614:36;;;4630:18;;:::i;4661:128::-;4728:9;;;4749:11;;;4746:37;;;4763:18;;:::i;5142:168::-;5215:9;;;5246;;5263:15;;;5257:22;;5243:37;5233:71;;5284:18;;:::i;5315:217::-;5355:1;5381;5371:132;;5425:10;5420:3;5416:20;5413:1;5406:31;5460:4;5457:1;5450:15;5488:4;5485:1;5478:15;5371:132;-1:-1:-1;5517:9:10;;5315:217::o;6004:127::-;6065:10;6060:3;6056:20;6053:1;6046:31;6096:4;6093:1;6086:15;6120:4;6117:1;6110:15;6136:959;6398:4;6446:3;6435:9;6431:19;6477:6;6466:9;6459:25;6520:6;6515:2;6504:9;6500:18;6493:34;6563:3;6558:2;6547:9;6543:18;6536:31;6587:6;6622;6616:13;6653:6;6645;6638:22;6691:3;6680:9;6676:19;6669:26;;6730:2;6722:6;6718:15;6704:29;;6751:1;6761:195;6775:6;6772:1;6769:13;6761:195;;;6840:13;;-1:-1:-1;;;;;6836:39:10;6824:52;;6905:2;6931:15;;;;6896:12;;;;6872:1;6790:9;6761:195;;;-1:-1:-1;;;;;;;7012:32:10;;;;7007:2;6992:18;;6985:60;-1:-1:-1;;7076:3:10;7061:19;7054:35;6973:3;6136:959;-1:-1:-1;;;6136:959:10:o

Swarm Source

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