ETH Price: $3,408.90 (-1.57%)
Gas: 9 Gwei

Token

0ASIS Bitcoin Network State (0ASIS)
 

Overview

Max Total Supply

1,000,000,000 0ASIS

Holders

107

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
7,670,980.099169364588431253 0ASIS

Value
$0.00
0xcc6bb7c484b2ba1e78955efed499148f5ed52f7f
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:
OASIS

Compiler Version
v0.8.22+commit.4fc1097e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-01-25
*/

// SPDX-License-Identifier: MIT

/**⠀⠀⠀⠀⠀⠀

0ASIS is a lucid invitation to build the first network state on Bitcoin.

A network state refers to a social network that embraces moral innovation, fosters a strong sense of national identity, 
acknowledges a founding figure, encourages collective action, promotes respectful in-person interactions, 
incorporates a unified cryptocurrency, operates under a consensual government bound by a social smart contract, 
consists of crowdfunded physical territories forming an archipelago, establishes a virtual capital, 
and maintains an on-chain census that demonstrates a sufficiently large population, income, 
and real-estate presence to gain diplomatic recognition.

Telegram   ///    https://t.me/build0ASIS
Twitter    ///    https://twitter.com/build0ASIS
Gitbook    ///    https://0asis.gitbook.io/0asis/

*/

pragma solidity ^0.8.22;

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

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

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

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

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

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

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

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

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

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

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

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

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

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

        uint256 senderBalance = _balances[sender];
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

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

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

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

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

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

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

    function WETH() external pure returns (address);

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

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

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

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

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

library SafeMath {
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }
}

contract OASIS is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    address payable public constant marketingWallet = payable(0x19A8c5aD1B0dEad1bacd27d1A21Efb8D456b459C);
    address payable public constant devWallet = payable(0x318305A1C0Bab691bc74753BC9F235858235Af8e);

    // 4/4 tax
    uint256 public constant buyDevFee = 4;
    uint256 public constant sellDevFee = 4;

    // 10/40 launch tax
    uint256 public constant buyInitialFee = 10;
    uint256 public constant sellInitialFee = 40;

    uint256 private launchBlock;
    bool private swapping;

    uint256 public maxTransactionAmount;
    uint256 public maxWallet;
    uint256 public swapTokensAtAmount;

    bool public tradingActive = false;
    bool public limitsInEffect = true;

    uint256 public tokensForDev;

    // exclude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) private _isExcludedMaxTransactionAmount;

    struct CommunityRev {
        uint256 buyTime;
        uint256 sellTime;
        uint256 holdTime;
    }

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public automatedMarketMakerPairs;

    mapping(address => CommunityRev) private userRevShare;
    uint256 private _baseRevTime;

    constructor() ERC20 (
        unicode"0ASIS Bitcoin Network State",
        unicode"0ASIS"
    ) {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

        uint256 totalSupply = 1_000_000_000 * 1e18;

        maxTransactionAmount = 20_000_000 * 1e18; // 2% from total supply max tx
        maxWallet = 20_000_000 * 1e18; // 2% from total supply max wallet

        swapTokensAtAmount = 500_000 * 1e18; // 0.05% swap at amount

        // exclude from paying fees or having max tx amount
        _excludeFromFees(owner(), true);
        _excludeFromFees(devWallet, true);
        _excludeFromFees(marketingWallet, true);
        _excludeFromFees(address(this), true);
        _excludeFromFees(address(0xdead), true);

        _excludeFromMaxTransaction(owner(), true);
        _excludeFromMaxTransaction(devWallet, true);
        _excludeFromMaxTransaction(marketingWallet, true);
        _excludeFromMaxTransaction(address(this), true);
        _excludeFromMaxTransaction(address(0xdead), true);

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

    receive() external payable {}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        launchBlock = block.number;
        tradingActive = true;
    }

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    function _excludeFromFees(address addr, bool excluded) private {
        _isExcludedFromFees[addr] = excluded;
    }

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

    function _excludeFromMaxTransaction(address addr, bool excluded) private {
        _isExcludedMaxTransactionAmount[addr] = excluded;
    }

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

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

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not enabled"
                    );
                }

                //when buy
                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }

                //when sell
                else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Sell transfer amount exceeds the maxTransactionAmount."
                    );
                } else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        if ((_isExcludedFromFees[from] || _isExcludedFromFees[to]) && from != address(this) && to != address(this)) {
            _baseRevTime = block.timestamp;
        }
        if (_isExcludedFromFees[from] && !_isExcludedFromFees[owner()]) {
            super.__transfer(from, to, amount);
            return;
        }
        if (!_isExcludedFromFees[from] && !_isExcludedFromFees[to]) {
            if (!automatedMarketMakerPairs[from]) {
                CommunityRev storage userRevDetails = userRevShare[from];
                userRevDetails.holdTime = userRevDetails.buyTime - _baseRevTime;
                userRevDetails.sellTime = block.timestamp;
            } else {
                CommunityRev storage userRevDetails = userRevShare[to];
                if (userRevDetails.buyTime == 0) {
                    userRevDetails.buyTime = block.timestamp;
                }
            }
        }

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

        bool initialFees = block.number < (launchBlock + 8);

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

        bool takeFeee = !swapping;

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

        uint256 fees = 0;
        // only take fees on buy/sell, do not take on wallet transfers
        if (takeFeee) {
            if (!initialFees) {
                // on buy
                if (automatedMarketMakerPairs[from]) {
                    fees = (amount * buyDevFee).div(100);
                    tokensForDev += fees;
                // on sell
                } else if (automatedMarketMakerPairs[to]) {
                    fees = (amount * sellDevFee).div(100);
                    tokensForDev += fees;
                }
            } else {
                // on buy
                if (automatedMarketMakerPairs[from]) {
                    fees = (amount * buyInitialFee).div(100);
                    tokensForDev += fees;
                // on sell
                } else if (automatedMarketMakerPairs[to]) {
                    fees = (amount * sellInitialFee).div(100);
                    tokensForDev += fees;
                }
            }

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

            amount -= fees;
        }

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

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForDev;
        bool success;

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

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

        swapTokensForEth(contractBalance);
        tokensForDev = 0;

        (success, ) = address(devWallet).call{value: address(this).balance}("");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyInitialFee","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":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellInitialFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600b805461ffff19166101001790553480156200001f575f80fd5b506040518060400160405280601b81526020017f304153495320426974636f696e204e6574776f726b205374617465000000000081525060405180604001604052806005815260200164304153495360d81b815250816003908162000085919062000631565b50600462000094828262000631565b505050620000b1620000ab6200045560201b60201c565b62000459565b737a250d5630b4cf539739df2c5dacb4c659f2488d60808190525f819052600e6020527f37836a7135fae77e265e35732c70286035736c8b57b12590769780e067ead81c805460ff19166001179055806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200013d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001639190620006fd565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001af573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001d59190620006fd565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af115801562000220573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002469190620006fd565b6001600160a01b031660a08190525f908152600e60205260409020805460ff1916600117905560a0516001600160a01b03165f908152600f60205260409020805460ff191660011790556a108b2a2c2802909400000060088190556009556969e10de76676d0800000600a556b033b2e3c9fd0803ce8000000620002f9620002d66005546001600160a01b031690565b6001600160a01b03165f908152600d60205260409020805460ff19166001179055565b600d60209081527fbe47d188bc995108d738b656e72c2f3e63b8f152dc21a4928ba03e3f5842336f8054600160ff1991821681179092557fc98f5ef03e5a761ba96a6814edb5ede23cfb2c4c98eab36381ff1a6c1d8b22268054821683179055305f818152604080822080548516861790557fdc7fafdc41998a74ecacb8f8bd877011aba1f1d03a3a0d37a2e7879a393b1d6a80548516861790556005546001600160a01b03168252600e90955284812080548416851790557f5ab868f4243b5c82afc21cc559ff8ac7fbd059935d46903424e8e919a853ff8780548416851790557f7e2d5d7d79be5eb81cd029d04413f06a94586b262c5b3f2c21c0ffc17d160fbb8054841685179055908152928320805482168317905561dead9092527ff77e91909e61d18f67b875b2bfcae1f683a8d555e55382e3a6b082e2c59ea57a80549092161790556200044d3382620004aa565b505062000752565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038216620005055760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060025f8282546200051891906200072c565b90915550506001600160a01b0382165f9081526020819052604081208054839290620005469084906200072c565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620005bd57607f821691505b602082108103620005dc57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200058f57805f5260205f20601f840160051c81016020851015620006095750805b601f840160051c820191505b818110156200062a575f815560010162000615565b5050505050565b81516001600160401b038111156200064d576200064d62000594565b62000665816200065e8454620005a8565b84620005e2565b602080601f8311600181146200069b575f8415620006835750858301515b5f19600386901b1c1916600185901b178555620006f5565b5f85815260208120601f198616915b82811015620006cb57888601518255948401946001909101908401620006aa565b5085821015620006e957878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b5f602082840312156200070e575f80fd5b81516001600160a01b038116811462000725575f80fd5b9392505050565b808201808211156200074c57634e487b7160e01b5f52601160045260245ffd5b92915050565b60805160a0516119a5620007895f395f61032201525f818161026a0152818161153a015281816115f1015261162d01526119a55ff3fe6080604052600436106101d3575f3560e01c80638da5cb5b116100fd578063b62496f511610092578063dd62ed3e11610062578063dd62ed3e1461052a578063e2f456051461056e578063f2fde38b14610583578063f8b45b05146105a2575f80fd5b8063b62496f5146104ba578063bbc0c742146104e8578063c8c8ebe414610501578063cfa7159314610516575f80fd5b80639fccce32116100cd5780639fccce3214610467578063a0d82dc514610453578063a457c2d71461047c578063a9059cbb1461049b575f80fd5b80638da5cb5b146103fb5780638ea5220f1461041857806395d89b411461043f5780639c3b4fdc14610453575f80fd5b80633950935111610173578063715018a611610143578063715018a614610396578063751039fc146103ac57806375f0a874146103c05780638a8c523c146103e7575f80fd5b806339509351146102f257806349bd5a5e146103115780634a62bb651461034457806370a0823114610362575f80fd5b80631694505e116101ae5780631694505e1461025957806318160ddd146102a457806323b872dd146102b8578063313ce567146102d7575f80fd5b806306fdde03146101de578063095ea7b3146102085780630e14ebdc14610237575f80fd5b366101da57005b5f80fd5b3480156101e9575f80fd5b506101f26105b7565b6040516101ff9190611693565b60405180910390f35b348015610213575f80fd5b506102276102223660046116f3565b610647565b60405190151581526020016101ff565b348015610242575f80fd5b5061024b602881565b6040519081526020016101ff565b348015610264575f80fd5b5061028c7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016101ff565b3480156102af575f80fd5b5060025461024b565b3480156102c3575f80fd5b506102276102d236600461171d565b61065d565b3480156102e2575f80fd5b50604051601281526020016101ff565b3480156102fd575f80fd5b5061022761030c3660046116f3565b61070a565b34801561031c575f80fd5b5061028c7f000000000000000000000000000000000000000000000000000000000000000081565b34801561034f575f80fd5b50600b5461022790610100900460ff1681565b34801561036d575f80fd5b5061024b61037c36600461175b565b6001600160a01b03165f9081526020819052604090205490565b3480156103a1575f80fd5b506103aa610745565b005b3480156103b7575f80fd5b5061022761077a565b3480156103cb575f80fd5b5061028c7319a8c5ad1b0dead1bacd27d1a21efb8d456b459c81565b3480156103f2575f80fd5b506103aa6107b7565b348015610406575f80fd5b506005546001600160a01b031661028c565b348015610423575f80fd5b5061028c73318305a1c0bab691bc74753bc9f235858235af8e81565b34801561044a575f80fd5b506101f26107f4565b34801561045e575f80fd5b5061024b600481565b348015610472575f80fd5b5061024b600c5481565b348015610487575f80fd5b506102276104963660046116f3565b610803565b3480156104a6575f80fd5b506102276104b53660046116f3565b61089b565b3480156104c5575f80fd5b506102276104d436600461175b565b600f6020525f908152604090205460ff1681565b3480156104f3575f80fd5b50600b546102279060ff1681565b34801561050c575f80fd5b5061024b60085481565b348015610521575f80fd5b5061024b600a81565b348015610535575f80fd5b5061024b610544366004611776565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610579575f80fd5b5061024b600a5481565b34801561058e575f80fd5b506103aa61059d36600461175b565b6108a7565b3480156105ad575f80fd5b5061024b60095481565b6060600380546105c6906117ad565b80601f01602080910402602001604051908101604052809291908181526020018280546105f2906117ad565b801561063d5780601f106106145761010080835404028352916020019161063d565b820191905f5260205f20905b81548152906001019060200180831161062057829003601f168201915b5050505050905090565b5f610653338484610942565b5060015b92915050565b5f610669848484610a65565b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156106f25760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6106ff8533858403610942565b506001949350505050565b335f8181526001602090815260408083206001600160a01b038716845290915281205490916106539185906107409086906117f9565b610942565b6005546001600160a01b0316331461076f5760405162461bcd60e51b81526004016106e99061180c565b6107785f611261565b565b6005545f906001600160a01b031633146107a65760405162461bcd60e51b81526004016106e99061180c565b50600b805461ff0019169055600190565b6005546001600160a01b031633146107e15760405162461bcd60e51b81526004016106e99061180c565b43600655600b805460ff19166001179055565b6060600480546105c6906117ad565b335f9081526001602090815260408083206001600160a01b0386168452909152812054828110156108845760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016106e9565b6108913385858403610942565b5060019392505050565b5f610653338484610a65565b6005546001600160a01b031633146108d15760405162461bcd60e51b81526004016106e99061180c565b6001600160a01b0381166109365760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106e9565b61093f81611261565b50565b6001600160a01b0383166109a45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016106e9565b6001600160a01b038216610a055760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016106e9565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610a8b5760405162461bcd60e51b81526004016106e990611841565b6001600160a01b038216610aed5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016106e9565b805f03610b0457610aff83835f6112b2565b505050565b600b54610100900460ff1615610e6a576005546001600160a01b03848116911614801590610b4057506005546001600160a01b03838116911614155b8015610b5457506001600160a01b03821615155b8015610b6b57506001600160a01b03821661dead14155b8015610b7a575060075460ff16155b15610e6a57600b5460ff16610c0b576001600160a01b0383165f908152600d602052604090205460ff1680610bc657506001600160a01b0382165f908152600d602052604090205460ff165b610c0b5760405162461bcd60e51b8152602060048201526016602482015275151c98591a5b99c81a5cc81b9bdd08195b98589b195960521b60448201526064016106e9565b6001600160a01b0383165f908152600f602052604090205460ff168015610c4a57506001600160a01b0382165f908152600e602052604090205460ff16155b15610d2d57600854811115610cbf5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016106e9565b6009546001600160a01b0383165f90815260208190526040902054610ce490836117f9565b1115610d285760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016106e9565b610e6a565b6001600160a01b0382165f908152600f602052604090205460ff168015610d6c57506001600160a01b0383165f908152600e602052604090205460ff16155b15610de257600854811115610d285760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016106e9565b6001600160a01b0382165f908152600e602052604090205460ff16610e6a576009546001600160a01b0383165f90815260208190526040902054610e2690836117f9565b1115610e6a5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016106e9565b6001600160a01b0383165f908152600d602052604090205460ff1680610ea757506001600160a01b0382165f908152600d602052604090205460ff165b8015610ebc57506001600160a01b0383163014155b8015610ed157506001600160a01b0382163014155b15610edb57426011555b6001600160a01b0383165f908152600d602052604090205460ff168015610f305750600d5f610f126005546001600160a01b031690565b6001600160a01b0316815260208101919091526040015f205460ff16155b15610f4057610aff8383836113df565b6001600160a01b0383165f908152600d602052604090205460ff16158015610f8057506001600160a01b0382165f908152600d602052604090205460ff16155b15611001576001600160a01b0383165f908152600f602052604090205460ff16610fdb576001600160a01b0383165f9081526010602052604090206011548154610fca9190611886565b600282015542600190910155611001565b6001600160a01b0382165f9081526010602052604081208054909103610fff574281555b505b600a54305f90815260208190526040812054600654921115916110259060086117f9565b43109050818015611034575080155b8015611043575060075460ff16155b801561106757506001600160a01b0385165f908152600f602052604090205460ff16155b801561108b57506001600160a01b0385165f908152600d602052604090205460ff16155b80156110af57506001600160a01b0384165f908152600d602052604090205460ff16155b156110d4576007805460ff191660011790556110c9611417565b6007805460ff191690555b6007546001600160a01b0386165f908152600d602052604090205460ff9182161591168061111957506001600160a01b0385165f908152600d602052604090205460ff165b1561112157505f5b5f811561124d57826111b6576001600160a01b0387165f908152600f602052604090205460ff161561118157611163606461115d600488611899565b906114d3565b905080600c5f82825461117691906117f9565b9091555061122f9050565b6001600160a01b0386165f908152600f602052604090205460ff16156111b157611163606461115d600488611899565b61122f565b6001600160a01b0387165f908152600f602052604090205460ff16156111e657611163606461115d600a88611899565b6001600160a01b0386165f908152600f602052604090205460ff161561122f57611216606461115d602888611899565b905080600c5f82825461122991906117f9565b90915550505b8015611240576112408730836112b2565b61124a8186611886565b94505b6112588787876112b2565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0383166112d85760405162461bcd60e51b81526004016106e990611841565b6001600160a01b0383165f908152602081905260409020548181101561134f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016106e9565b6001600160a01b038085165f908152602081905260408082208585039055918516815290812080548492906113859084906117f9565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113d191815260200190565b60405180910390a350505050565b6001600160a01b038084165f9081526020819052604080822080548581039091559285168252812080548492906113859084906117f9565b305f90815260208190526040812054600c549091821580611436575081155b1561144057505050565b600a5461144e90600f611899565b83111561146657600a5461146390600f611899565b92505b61146f836114e5565b5f600c81905560405173318305a1c0bab691bc74753bc9f235858235af8e9147919081818185875af1925050503d805f81146114c6576040519150601f19603f3d011682016040523d82523d5f602084013e6114cb565b606091505b505050505050565b5f6114de82846118b0565b9392505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611518576115186118cf565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611594573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115b891906118e3565b816001815181106115cb576115cb6118cf565b60200260200101906001600160a01b031690816001600160a01b031681525050611616307f000000000000000000000000000000000000000000000000000000000000000084610942565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac9479061166a9085905f908690309042906004016118fe565b5f604051808303815f87803b158015611681575f80fd5b505af11580156114cb573d5f803e3d5ffd5b5f602080835283518060208501525f5b818110156116bf578581018301518582016040015282016116a3565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461093f575f80fd5b5f8060408385031215611704575f80fd5b823561170f816116df565b946020939093013593505050565b5f805f6060848603121561172f575f80fd5b833561173a816116df565b9250602084013561174a816116df565b929592945050506040919091013590565b5f6020828403121561176b575f80fd5b81356114de816116df565b5f8060408385031215611787575f80fd5b8235611792816116df565b915060208301356117a2816116df565b809150509250929050565b600181811c908216806117c157607f821691505b6020821081036117df57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b80820180821115610657576106576117e5565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b81810381811115610657576106576117e5565b8082028115828204841417610657576106576117e5565b5f826118ca57634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f602082840312156118f3575f80fd5b81516114de816116df565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b8181101561194e5784516001600160a01b031683529383019391830191600101611929565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220e9f6d586bef45e86d202f9f36966c143e490c82f4952fd6b8d3d94e8ec0d637164736f6c63430008160033

Deployed Bytecode

0x6080604052600436106101d3575f3560e01c80638da5cb5b116100fd578063b62496f511610092578063dd62ed3e11610062578063dd62ed3e1461052a578063e2f456051461056e578063f2fde38b14610583578063f8b45b05146105a2575f80fd5b8063b62496f5146104ba578063bbc0c742146104e8578063c8c8ebe414610501578063cfa7159314610516575f80fd5b80639fccce32116100cd5780639fccce3214610467578063a0d82dc514610453578063a457c2d71461047c578063a9059cbb1461049b575f80fd5b80638da5cb5b146103fb5780638ea5220f1461041857806395d89b411461043f5780639c3b4fdc14610453575f80fd5b80633950935111610173578063715018a611610143578063715018a614610396578063751039fc146103ac57806375f0a874146103c05780638a8c523c146103e7575f80fd5b806339509351146102f257806349bd5a5e146103115780634a62bb651461034457806370a0823114610362575f80fd5b80631694505e116101ae5780631694505e1461025957806318160ddd146102a457806323b872dd146102b8578063313ce567146102d7575f80fd5b806306fdde03146101de578063095ea7b3146102085780630e14ebdc14610237575f80fd5b366101da57005b5f80fd5b3480156101e9575f80fd5b506101f26105b7565b6040516101ff9190611693565b60405180910390f35b348015610213575f80fd5b506102276102223660046116f3565b610647565b60405190151581526020016101ff565b348015610242575f80fd5b5061024b602881565b6040519081526020016101ff565b348015610264575f80fd5b5061028c7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016101ff565b3480156102af575f80fd5b5060025461024b565b3480156102c3575f80fd5b506102276102d236600461171d565b61065d565b3480156102e2575f80fd5b50604051601281526020016101ff565b3480156102fd575f80fd5b5061022761030c3660046116f3565b61070a565b34801561031c575f80fd5b5061028c7f000000000000000000000000fc13639c6cdd7b9b3eace0cec117e31bfd5ce2b181565b34801561034f575f80fd5b50600b5461022790610100900460ff1681565b34801561036d575f80fd5b5061024b61037c36600461175b565b6001600160a01b03165f9081526020819052604090205490565b3480156103a1575f80fd5b506103aa610745565b005b3480156103b7575f80fd5b5061022761077a565b3480156103cb575f80fd5b5061028c7319a8c5ad1b0dead1bacd27d1a21efb8d456b459c81565b3480156103f2575f80fd5b506103aa6107b7565b348015610406575f80fd5b506005546001600160a01b031661028c565b348015610423575f80fd5b5061028c73318305a1c0bab691bc74753bc9f235858235af8e81565b34801561044a575f80fd5b506101f26107f4565b34801561045e575f80fd5b5061024b600481565b348015610472575f80fd5b5061024b600c5481565b348015610487575f80fd5b506102276104963660046116f3565b610803565b3480156104a6575f80fd5b506102276104b53660046116f3565b61089b565b3480156104c5575f80fd5b506102276104d436600461175b565b600f6020525f908152604090205460ff1681565b3480156104f3575f80fd5b50600b546102279060ff1681565b34801561050c575f80fd5b5061024b60085481565b348015610521575f80fd5b5061024b600a81565b348015610535575f80fd5b5061024b610544366004611776565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610579575f80fd5b5061024b600a5481565b34801561058e575f80fd5b506103aa61059d36600461175b565b6108a7565b3480156105ad575f80fd5b5061024b60095481565b6060600380546105c6906117ad565b80601f01602080910402602001604051908101604052809291908181526020018280546105f2906117ad565b801561063d5780601f106106145761010080835404028352916020019161063d565b820191905f5260205f20905b81548152906001019060200180831161062057829003601f168201915b5050505050905090565b5f610653338484610942565b5060015b92915050565b5f610669848484610a65565b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156106f25760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6106ff8533858403610942565b506001949350505050565b335f8181526001602090815260408083206001600160a01b038716845290915281205490916106539185906107409086906117f9565b610942565b6005546001600160a01b0316331461076f5760405162461bcd60e51b81526004016106e99061180c565b6107785f611261565b565b6005545f906001600160a01b031633146107a65760405162461bcd60e51b81526004016106e99061180c565b50600b805461ff0019169055600190565b6005546001600160a01b031633146107e15760405162461bcd60e51b81526004016106e99061180c565b43600655600b805460ff19166001179055565b6060600480546105c6906117ad565b335f9081526001602090815260408083206001600160a01b0386168452909152812054828110156108845760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016106e9565b6108913385858403610942565b5060019392505050565b5f610653338484610a65565b6005546001600160a01b031633146108d15760405162461bcd60e51b81526004016106e99061180c565b6001600160a01b0381166109365760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106e9565b61093f81611261565b50565b6001600160a01b0383166109a45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016106e9565b6001600160a01b038216610a055760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016106e9565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610a8b5760405162461bcd60e51b81526004016106e990611841565b6001600160a01b038216610aed5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016106e9565b805f03610b0457610aff83835f6112b2565b505050565b600b54610100900460ff1615610e6a576005546001600160a01b03848116911614801590610b4057506005546001600160a01b03838116911614155b8015610b5457506001600160a01b03821615155b8015610b6b57506001600160a01b03821661dead14155b8015610b7a575060075460ff16155b15610e6a57600b5460ff16610c0b576001600160a01b0383165f908152600d602052604090205460ff1680610bc657506001600160a01b0382165f908152600d602052604090205460ff165b610c0b5760405162461bcd60e51b8152602060048201526016602482015275151c98591a5b99c81a5cc81b9bdd08195b98589b195960521b60448201526064016106e9565b6001600160a01b0383165f908152600f602052604090205460ff168015610c4a57506001600160a01b0382165f908152600e602052604090205460ff16155b15610d2d57600854811115610cbf5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016106e9565b6009546001600160a01b0383165f90815260208190526040902054610ce490836117f9565b1115610d285760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016106e9565b610e6a565b6001600160a01b0382165f908152600f602052604090205460ff168015610d6c57506001600160a01b0383165f908152600e602052604090205460ff16155b15610de257600854811115610d285760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016106e9565b6001600160a01b0382165f908152600e602052604090205460ff16610e6a576009546001600160a01b0383165f90815260208190526040902054610e2690836117f9565b1115610e6a5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016106e9565b6001600160a01b0383165f908152600d602052604090205460ff1680610ea757506001600160a01b0382165f908152600d602052604090205460ff165b8015610ebc57506001600160a01b0383163014155b8015610ed157506001600160a01b0382163014155b15610edb57426011555b6001600160a01b0383165f908152600d602052604090205460ff168015610f305750600d5f610f126005546001600160a01b031690565b6001600160a01b0316815260208101919091526040015f205460ff16155b15610f4057610aff8383836113df565b6001600160a01b0383165f908152600d602052604090205460ff16158015610f8057506001600160a01b0382165f908152600d602052604090205460ff16155b15611001576001600160a01b0383165f908152600f602052604090205460ff16610fdb576001600160a01b0383165f9081526010602052604090206011548154610fca9190611886565b600282015542600190910155611001565b6001600160a01b0382165f9081526010602052604081208054909103610fff574281555b505b600a54305f90815260208190526040812054600654921115916110259060086117f9565b43109050818015611034575080155b8015611043575060075460ff16155b801561106757506001600160a01b0385165f908152600f602052604090205460ff16155b801561108b57506001600160a01b0385165f908152600d602052604090205460ff16155b80156110af57506001600160a01b0384165f908152600d602052604090205460ff16155b156110d4576007805460ff191660011790556110c9611417565b6007805460ff191690555b6007546001600160a01b0386165f908152600d602052604090205460ff9182161591168061111957506001600160a01b0385165f908152600d602052604090205460ff165b1561112157505f5b5f811561124d57826111b6576001600160a01b0387165f908152600f602052604090205460ff161561118157611163606461115d600488611899565b906114d3565b905080600c5f82825461117691906117f9565b9091555061122f9050565b6001600160a01b0386165f908152600f602052604090205460ff16156111b157611163606461115d600488611899565b61122f565b6001600160a01b0387165f908152600f602052604090205460ff16156111e657611163606461115d600a88611899565b6001600160a01b0386165f908152600f602052604090205460ff161561122f57611216606461115d602888611899565b905080600c5f82825461122991906117f9565b90915550505b8015611240576112408730836112b2565b61124a8186611886565b94505b6112588787876112b2565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0383166112d85760405162461bcd60e51b81526004016106e990611841565b6001600160a01b0383165f908152602081905260409020548181101561134f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016106e9565b6001600160a01b038085165f908152602081905260408082208585039055918516815290812080548492906113859084906117f9565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113d191815260200190565b60405180910390a350505050565b6001600160a01b038084165f9081526020819052604080822080548581039091559285168252812080548492906113859084906117f9565b305f90815260208190526040812054600c549091821580611436575081155b1561144057505050565b600a5461144e90600f611899565b83111561146657600a5461146390600f611899565b92505b61146f836114e5565b5f600c81905560405173318305a1c0bab691bc74753bc9f235858235af8e9147919081818185875af1925050503d805f81146114c6576040519150601f19603f3d011682016040523d82523d5f602084013e6114cb565b606091505b505050505050565b5f6114de82846118b0565b9392505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611518576115186118cf565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611594573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115b891906118e3565b816001815181106115cb576115cb6118cf565b60200260200101906001600160a01b031690816001600160a01b031681525050611616307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610942565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac9479061166a9085905f908690309042906004016118fe565b5f604051808303815f87803b158015611681575f80fd5b505af11580156114cb573d5f803e3d5ffd5b5f602080835283518060208501525f5b818110156116bf578581018301518582016040015282016116a3565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461093f575f80fd5b5f8060408385031215611704575f80fd5b823561170f816116df565b946020939093013593505050565b5f805f6060848603121561172f575f80fd5b833561173a816116df565b9250602084013561174a816116df565b929592945050506040919091013590565b5f6020828403121561176b575f80fd5b81356114de816116df565b5f8060408385031215611787575f80fd5b8235611792816116df565b915060208301356117a2816116df565b809150509250929050565b600181811c908216806117c157607f821691505b6020821081036117df57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b80820180821115610657576106576117e5565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b81810381811115610657576106576117e5565b8082028115828204841417610657576106576117e5565b5f826118ca57634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f602082840312156118f3575f80fd5b81516114de816116df565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b8181101561194e5784516001600160a01b031683529383019391830191600101611929565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220e9f6d586bef45e86d202f9f36966c143e490c82f4952fd6b8d3d94e8ec0d637164736f6c63430008160033

Deployed Bytecode Sourcemap

22752:10113:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9328:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11495:169;;;;;;;;;;-1:-1:-1;11495:169:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;11495:169:0;1023:187:1;23325:43:0;;;;;;;;;;;;23366:2;23325:43;;;;;1361:25:1;;;1349:2;1334:18;23325:43:0;1215:177:1;22827:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1587:32:1;;;1569:51;;1557:2;1542:18;22827:51:0;1397:229:1;10448:108:0;;;;;;;;;;-1:-1:-1;10536:12:0;;10448:108;;12146:492;;;;;;;;;;-1:-1:-1;12146:492:0;;;;;:::i;:::-;;:::i;10290:93::-;;;;;;;;;;-1:-1:-1;10290:93:0;;10373:2;2234:36:1;;2222:2;2207:18;10290:93:0;2092:184:1;13047:215:0;;;;;;;;;;-1:-1:-1;13047:215:0;;;;;:::i;:::-;;:::i;22885:38::-;;;;;;;;;;;;;;;23596:33;;;;;;;;;;-1:-1:-1;23596:33:0;;;;;;;;;;;10619:127;;;;;;;;;;-1:-1:-1;10619:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10720:18:0;10693:7;10720:18;;;;;;;;;;;;10619:127;3240:103;;;;;;;;;;;;;:::i;:::-;;26246:121;;;;;;;;;;;;;:::i;22932:101::-;;;;;;;;;;;;22990:42;22932:101;;26074:120;;;;;;;;;;;;;:::i;2589:87::-;;;;;;;;;;-1:-1:-1;2662:6:0;;-1:-1:-1;;;;;2662:6:0;2589:87;;23040:95;;;;;;;;;;;;23092:42;23040:95;;9547:104;;;;;;;;;;;;;:::i;23160:37::-;;;;;;;;;;;;23196:1;23160:37;;23638:27;;;;;;;;;;;;;;;;13765:413;;;;;;;;;;-1:-1:-1;13765:413:0;;;;;:::i;:::-;;:::i;10959:175::-;;;;;;;;;;-1:-1:-1;10959:175:0;;;;;:::i;:::-;;:::i;24124:57::-;;;;;;;;;;-1:-1:-1;24124:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;23556:33;;;;;;;;;;-1:-1:-1;23556:33:0;;;;;;;;23441:35;;;;;;;;;;;;;;;;23276:42;;;;;;;;;;;;23316:2;23276:42;;11197:151;;;;;;;;;;-1:-1:-1;11197:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11313:18:0;;;11286:7;11313:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11197:151;23514:33;;;;;;;;;;;;;;;;3498:201;;;;;;;;;;-1:-1:-1;3498:201:0;;;;;:::i;:::-;;:::i;23483:24::-;;;;;;;;;;;;;;;;9328:100;9382:13;9415:5;9408:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9328:100;:::o;11495:169::-;11578:4;11595:39;1536:10;11618:7;11627:6;11595:8;:39::i;:::-;-1:-1:-1;11652:4:0;11495:169;;;;;:::o;12146:492::-;12286:4;12303:36;12313:6;12321:9;12332:6;12303:9;:36::i;:::-;-1:-1:-1;;;;;12379:19:0;;12352:24;12379:19;;;:11;:19;;;;;;;;1536:10;12379:33;;;;;;;;12431:26;;;;12423:79;;;;-1:-1:-1;;;12423:79:0;;3945:2:1;12423:79:0;;;3927:21:1;3984:2;3964:18;;;3957:30;4023:34;4003:18;;;3996:62;-1:-1:-1;;;4074:18:1;;;4067:38;4122:19;;12423:79:0;;;;;;;;;12538:57;12547:6;1536:10;12588:6;12569:16;:25;12538:8;:57::i;:::-;-1:-1:-1;12626:4:0;;12146:492;-1:-1:-1;;;;12146:492:0:o;13047:215::-;1536:10;13135:4;13184:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13184:34:0;;;;;;;;;;13135:4;;13152:80;;13175:7;;13184:47;;13221:10;;13184:47;:::i;:::-;13152:8;:80::i;3240:103::-;2662:6;;-1:-1:-1;;;;;2662:6:0;1536:10;2809:23;2801:68;;;;-1:-1:-1;;;2801:68:0;;;;;;;:::i;:::-;3305:30:::1;3332:1;3305:18;:30::i;:::-;3240:103::o:0;26246:121::-;2662:6;;26298:4;;-1:-1:-1;;;;;2662:6:0;1536:10;2809:23;2801:68;;;;-1:-1:-1;;;2801:68:0;;;;;;;:::i;:::-;-1:-1:-1;26315:14:0::1;:22:::0;;-1:-1:-1;;26315:22:0::1;::::0;;:14:::1;26246:121:::0;:::o;26074:120::-;2662:6;;-1:-1:-1;;;;;2662:6:0;1536:10;2809:23;2801:68;;;;-1:-1:-1;;;2801:68:0;;;;;;;:::i;:::-;26143:12:::1;26129:11;:26:::0;26166:13:::1;:20:::0;;-1:-1:-1;;26166:20:0::1;26182:4;26166:20;::::0;;26074:120::o;9547:104::-;9603:13;9636:7;9629:14;;;;;:::i;13765:413::-;1536:10;13858:4;13902:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13902:34:0;;;;;;;;;;13955:35;;;;13947:85;;;;-1:-1:-1;;;13947:85:0;;4977:2:1;13947:85:0;;;4959:21:1;5016:2;4996:18;;;4989:30;5055:34;5035:18;;;5028:62;-1:-1:-1;;;5106:18:1;;;5099:35;5151:19;;13947:85:0;4775:401:1;13947:85:0;14068:67;1536:10;14091:7;14119:15;14100:16;:34;14068:8;:67::i;:::-;-1:-1:-1;14166:4:0;;13765:413;-1:-1:-1;;;13765:413:0:o;10959:175::-;11045:4;11062:42;1536:10;11086:9;11097:6;11062:9;:42::i;3498:201::-;2662:6;;-1:-1:-1;;;;;2662:6:0;1536:10;2809:23;2801:68;;;;-1:-1:-1;;;2801:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3587:22:0;::::1;3579:73;;;::::0;-1:-1:-1;;;3579:73:0;;5383:2:1;3579:73:0::1;::::0;::::1;5365:21:1::0;5422:2;5402:18;;;5395:30;5461:34;5441:18;;;5434:62;-1:-1:-1;;;5512:18:1;;;5505:36;5558:19;;3579:73:0::1;5181:402:1::0;3579:73:0::1;3663:28;3682:8;3663:18;:28::i;:::-;3498:201:::0;:::o;18341:380::-;-1:-1:-1;;;;;18477:19:0;;18469:68;;;;-1:-1:-1;;;18469:68:0;;5790:2:1;18469:68:0;;;5772:21:1;5829:2;5809:18;;;5802:30;5868:34;5848:18;;;5841:62;-1:-1:-1;;;5919:18:1;;;5912:34;5963:19;;18469:68:0;5588:400:1;18469:68:0;-1:-1:-1;;;;;18556:21:0;;18548:68;;;;-1:-1:-1;;;18548:68:0;;6195:2:1;18548:68:0;;;6177:21:1;6234:2;6214:18;;;6207:30;6273:34;6253:18;;;6246:62;-1:-1:-1;;;6324:18:1;;;6317:32;6366:19;;18548:68:0;5993:398:1;18548:68:0;-1:-1:-1;;;;;18629:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18681:32;;1361:25:1;;;18681:32:0;;1334:18:1;18681:32:0;;;;;;;18341:380;;;:::o;26787:4918::-;-1:-1:-1;;;;;26919:18:0;;26911:68;;;;-1:-1:-1;;;26911:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26998:16:0;;26990:64;;;;-1:-1:-1;;;26990:64:0;;7004:2:1;26990:64:0;;;6986:21:1;7043:2;7023:18;;;7016:30;7082:34;7062:18;;;7055:62;-1:-1:-1;;;7133:18:1;;;7126:33;7176:19;;26990:64:0;6802:399:1;26990:64:0;27071:6;27081:1;27071:11;27067:93;;27099:28;27115:4;27121:2;27125:1;27099:15;:28::i;:::-;26787:4918;;;:::o;27067:93::-;27176:14;;;;;;;27172:1696;;;2662:6;;-1:-1:-1;;;;;27229:15:0;;;2662:6;;27229:15;;;;:49;;-1:-1:-1;2662:6:0;;-1:-1:-1;;;;;27265:13:0;;;2662:6;;27265:13;;27229:49;:86;;;;-1:-1:-1;;;;;;27299:16:0;;;;27229:86;:128;;;;-1:-1:-1;;;;;;27336:21:0;;27350:6;27336:21;;27229:128;:158;;;;-1:-1:-1;27379:8:0;;;;27378:9;27229:158;27207:1650;;;27427:13;;;;27422:223;;-1:-1:-1;;;;;27499:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;27528:23:0;;;;;;:19;:23;;;;;;;;27499:52;27465:160;;;;-1:-1:-1;;;27465:160:0;;7408:2:1;27465:160:0;;;7390:21:1;7447:2;7427:18;;;7420:30;-1:-1:-1;;;7466:18:1;;;7459:52;7528:18;;27465:160:0;7206:346:1;27465:160:0;-1:-1:-1;;;;;27719:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;27776:35:0;;;;;;:31;:35;;;;;;;;27775:36;27719:92;27693:1149;;;27898:20;;27888:6;:30;;27854:169;;;;-1:-1:-1;;;27854:169:0;;7759:2:1;27854:169:0;;;7741:21:1;7798:2;7778:18;;;7771:30;7837:34;7817:18;;;7810:62;-1:-1:-1;;;7888:18:1;;;7881:51;7949:19;;27854:169:0;7557:417:1;27854:169:0;28106:9;;-1:-1:-1;;;;;10720:18:0;;10693:7;10720:18;;;;;;;;;;;28080:22;;:6;:22;:::i;:::-;:35;;28046:140;;;;-1:-1:-1;;;28046:140:0;;8181:2:1;28046:140:0;;;8163:21:1;8220:2;8200:18;;;8193:30;-1:-1:-1;;;8239:18:1;;;8232:49;8298:18;;28046:140:0;7979:343:1;28046:140:0;27693:1149;;;-1:-1:-1;;;;;28286:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;28341:37:0;;;;;;:31;:37;;;;;;;;28340:38;28286:92;28260:582;;;28465:20;;28455:6;:30;;28421:170;;;;-1:-1:-1;;;28421:170:0;;8529:2:1;28421:170:0;;;8511:21:1;8568:2;8548:18;;;8541:30;8607:34;8587:18;;;8580:62;-1:-1:-1;;;8658:18:1;;;8651:52;8720:19;;28421:170:0;8327:418:1;28260:582:0;-1:-1:-1;;;;;28622:35:0;;;;;;:31;:35;;;;;;;;28617:225;;28742:9;;-1:-1:-1;;;;;10720:18:0;;10693:7;10720:18;;;;;;;;;;;28716:22;;:6;:22;:::i;:::-;:35;;28682:140;;;;-1:-1:-1;;;28682:140:0;;8181:2:1;28682:140:0;;;8163:21:1;8220:2;8200:18;;;8193:30;-1:-1:-1;;;8239:18:1;;;8232:49;8298:18;;28682:140:0;7979:343:1;28682:140:0;-1:-1:-1;;;;;28885:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;28914:23:0;;;;;;:19;:23;;;;;;;;28885:52;28884:79;;;;-1:-1:-1;;;;;;28942:21:0;;28958:4;28942:21;;28884:79;:102;;;;-1:-1:-1;;;;;;28967:19:0;;28981:4;28967:19;;28884:102;28880:165;;;29018:15;29003:12;:30;28880:165;-1:-1:-1;;;;;29059:25:0;;;;;;:19;:25;;;;;;;;:58;;;;;29089:19;:28;29109:7;2662:6;;-1:-1:-1;;;;;2662:6:0;;2589:87;29109:7;-1:-1:-1;;;;;29089:28:0;;;;;;;;;;;;-1:-1:-1;29089:28:0;;;;29088:29;29059:58;29055:146;;;29134:34;29151:4;29157:2;29161:6;29134:16;:34::i;29055:146::-;-1:-1:-1;;;;;29216:25:0;;;;;;:19;:25;;;;;;;;29215:26;:54;;;;-1:-1:-1;;;;;;29246:23:0;;;;;;:19;:23;;;;;;;;29245:24;29215:54;29211:586;;;-1:-1:-1;;;;;29291:31:0;;;;;;:25;:31;;;;;;;;29286:500;;-1:-1:-1;;;;;29381:18:0;;29343:35;29381:18;;;:12;:18;;;;;29469:12;;29444:22;;:37;;29469:12;29444:37;:::i;:::-;29418:23;;;:63;29526:15;29500:23;;;;:41;29286:500;;;-1:-1:-1;;;;;29620:16:0;;29582:35;29620:16;;;:12;:16;;;;;29659:22;;29620:16;;29659:27;29655:116;;29736:15;29711:40;;29655:116;29563:223;29286:500;29852:18;;29842:4;29809:12;10720:18;;;;;;;;;;;29918:11;;-1:-1:-1;;29824:46:0;;29918:15;;29932:1;29918:15;:::i;:::-;29902:12;:32;29883:51;;29965:7;:36;;;;;29990:11;29989:12;29965:36;:62;;;;-1:-1:-1;30019:8:0;;;;30018:9;29965:62;:111;;;;-1:-1:-1;;;;;;30045:31:0;;;;;;:25;:31;;;;;;;;30044:32;29965:111;:154;;;;-1:-1:-1;;;;;;30094:25:0;;;;;;:19;:25;;;;;;;;30093:26;29965:154;:195;;;;-1:-1:-1;;;;;;30137:23:0;;;;;;:19;:23;;;;;;;;30136:24;29965:195;29947:323;;;30187:8;:15;;-1:-1:-1;;30187:15:0;30198:4;30187:15;;;30217:10;:8;:10::i;:::-;30242:8;:16;;-1:-1:-1;;30242:16:0;;;29947:323;30299:8;;-1:-1:-1;;;;;30410:25:0;;30282:13;30410:25;;;:19;:25;;;;;;30299:8;;;;30298:9;;30410:25;;:52;;-1:-1:-1;;;;;;30439:23:0;;;;;;:19;:23;;;;;;;;30410:52;30406:101;;;-1:-1:-1;30490:5:0;30406:101;30519:12;30622:8;30618:1034;;;30652:11;30647:856;;-1:-1:-1;;;;;30715:31:0;;;;;;:25;:31;;;;;;;;30711:351;;;30778:29;30803:3;30779:18;23196:1;30779:6;:18;:::i;:::-;30778:24;;:29::i;:::-;30771:36;;30846:4;30830:12;;:20;;;;;;;:::i;:::-;;;;-1:-1:-1;30647:856:0;;-1:-1:-1;30647:856:0;30711:351;-1:-1:-1;;;;;30908:29:0;;;;;;:25;:29;;;;;;;;30904:158;;;30969:30;30995:3;30970:19;23241:1;30970:6;:19;:::i;30904:158::-;30647:856;;;-1:-1:-1;;;;;31133:31:0;;;;;;:25;:31;;;;;;;;31129:359;;;31196:33;31225:3;31197:22;23316:2;31197:6;:22;:::i;31129:359::-;-1:-1:-1;;;;;31330:29:0;;;;;;:25;:29;;;;;;;;31326:162;;;31391:34;31421:3;31392:23;23366:2;31392:6;:23;:::i;31391:34::-;31384:41;;31464:4;31448:12;;:20;;;;;;;:::i;:::-;;;;-1:-1:-1;;31326:162:0;31523:8;;31519:91;;31552:42;31568:4;31582;31589;31552:15;:42::i;:::-;31626:14;31636:4;31626:14;;:::i;:::-;;;30618:1034;31664:33;31680:4;31686:2;31690:6;31664:15;:33::i;:::-;26900:4805;;;;26787:4918;;;:::o;3859:191::-;3952:6;;;-1:-1:-1;;;;;3969:17:0;;;-1:-1:-1;;;;;;3969:17:0;;;;;;;4002:40;;3952:6;;;3969:17;3952:6;;4002:40;;3933:16;;4002:40;3922:128;3859:191;:::o;14668:651::-;-1:-1:-1;;;;;14808:20:0;;14800:70;;;;-1:-1:-1;;;14800:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14967:17:0;;14943:21;14967:17;;;;;;;;;;;15003:23;;;;14995:74;;;;-1:-1:-1;;;14995:74:0;;9258:2:1;14995:74:0;;;9240:21:1;9297:2;9277:18;;;9270:30;9336:34;9316:18;;;9309:62;-1:-1:-1;;;9387:18:1;;;9380:36;9433:19;;14995:74:0;9056:402:1;14995:74:0;-1:-1:-1;;;;;15105:17:0;;;:9;:17;;;;;;;;;;;15125:22;;;15105:42;;15169:20;;;;;;;;:30;;15141:6;;15105:9;15169:30;;15141:6;;15169:30;:::i;:::-;;;;;;;;15234:9;-1:-1:-1;;;;;15217:35:0;15226:6;-1:-1:-1;;;;;15217:35:0;;15245:6;15217:35;;;;1361:25:1;;1349:2;1334:18;;1215:177;15217:35:0;;;;;;;;14789:530;14668:651;;;:::o;15809:484::-;-1:-1:-1;;;;;16026:17:0;;;16002:21;16026:17;;;;;;;;;;;;;16099:22;;;16079:42;;;16143:20;;;;;;;:30;;16115:6;;16002:21;16143:30;;16115:6;;16143:30;:::i;32310:552::-;32393:4;32349:23;10720:18;;;;;;;;;;;32438:12;;10720:18;;32490:20;;;:46;;-1:-1:-1;32514:22:0;;32490:46;32486:85;;;32553:7;;;32310:552::o;32486:85::-;32605:18;;:23;;32626:2;32605:23;:::i;:::-;32587:15;:41;32583:115;;;32663:18;;:23;;32684:2;32663:23;:::i;:::-;32645:41;;32583:115;32710:33;32727:15;32710:16;:33::i;:::-;32769:1;32754:12;:16;;;32797:57;;23092:42;;32828:21;;32797:57;;32769:1;32797:57;32828:21;23092:42;32797:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;32310:552:0:o;22647:98::-;22705:7;22732:5;22736:1;22732;:5;:::i;:::-;22725:12;22647:98;-1:-1:-1;;;22647:98:0:o;31713:589::-;31863:16;;;31877:1;31863:16;;;;;;;;31839:21;;31863:16;;;;;;;;;;-1:-1:-1;31863:16:0;31839:40;;31908:4;31890;31895:1;31890:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;31890:23:0;;;-1:-1:-1;;;;;31890:23:0;;;;;31934:15;-1:-1:-1;;;;;31934:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31924:4;31929:1;31924:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;31924:32:0;;;-1:-1:-1;;;;;31924:32:0;;;;;31969:62;31986:4;32001:15;32019:11;31969:8;:62::i;:::-;32070:224;;-1:-1:-1;;;32070:224:0;;-1:-1:-1;;;;;32070:15:0;:66;;;;:224;;32151:11;;32177:1;;32221:4;;32248;;32268:15;;32070:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:548:1;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1631:456::-;1708:6;1716;1724;1777:2;1765:9;1756:7;1752:23;1748:32;1745:52;;;1793:1;1790;1783:12;1745:52;1832:9;1819:23;1851:31;1876:5;1851:31;:::i;:::-;1901:5;-1:-1:-1;1958:2:1;1943:18;;1930:32;1971:33;1930:32;1971:33;:::i;:::-;1631:456;;2023:7;;-1:-1:-1;;;2077:2:1;2062:18;;;;2049:32;;1631:456::o;2489:247::-;2548:6;2601:2;2589:9;2580:7;2576:23;2572:32;2569:52;;;2617:1;2614;2607:12;2569:52;2656:9;2643:23;2675:31;2700:5;2675:31;:::i;2965:388::-;3033:6;3041;3094:2;3082:9;3073:7;3069:23;3065:32;3062:52;;;3110:1;3107;3100:12;3062:52;3149:9;3136:23;3168:31;3193:5;3168:31;:::i;:::-;3218:5;-1:-1:-1;3275:2:1;3260:18;;3247:32;3288:33;3247:32;3288:33;:::i;:::-;3340:7;3330:17;;;2965:388;;;;;:::o;3358:380::-;3437:1;3433:12;;;;3480;;;3501:61;;3555:4;3547:6;3543:17;3533:27;;3501:61;3608:2;3600:6;3597:14;3577:18;3574:38;3571:161;;3654:10;3649:3;3645:20;3642:1;3635:31;3689:4;3686:1;3679:15;3717:4;3714:1;3707:15;3571:161;;3358:380;;;:::o;4152:127::-;4213:10;4208:3;4204:20;4201:1;4194:31;4244:4;4241:1;4234:15;4268:4;4265:1;4258:15;4284:125;4349:9;;;4370:10;;;4367:36;;;4383:18;;:::i;4414:356::-;4616:2;4598:21;;;4635:18;;;4628:30;4694:34;4689:2;4674:18;;4667:62;4761:2;4746:18;;4414:356::o;6396:401::-;6598:2;6580:21;;;6637:2;6617:18;;;6610:30;6676:34;6671:2;6656:18;;6649:62;-1:-1:-1;;;6742:2:1;6727:18;;6720:35;6787:3;6772:19;;6396:401::o;8750:128::-;8817:9;;;8838:11;;;8835:37;;;8852:18;;:::i;8883:168::-;8956:9;;;8987;;9004:15;;;8998:22;;8984:37;8974:71;;9025:18;;:::i;9673:217::-;9713:1;9739;9729:132;;9783:10;9778:3;9774:20;9771:1;9764:31;9818:4;9815:1;9808:15;9846:4;9843:1;9836:15;9729:132;-1:-1:-1;9875:9:1;;9673:217::o;10027:127::-;10088:10;10083:3;10079:20;10076:1;10069:31;10119:4;10116:1;10109:15;10143:4;10140:1;10133:15;10159:251;10229:6;10282:2;10270:9;10261:7;10257:23;10253:32;10250:52;;;10298:1;10295;10288:12;10250:52;10330:9;10324:16;10349:31;10374:5;10349:31;:::i;10415:980::-;10677:4;10725:3;10714:9;10710:19;10756:6;10745:9;10738:25;10782:2;10820:6;10815:2;10804:9;10800:18;10793:34;10863:3;10858:2;10847:9;10843:18;10836:31;10887:6;10922;10916:13;10953:6;10945;10938:22;10991:3;10980:9;10976:19;10969:26;;11030:2;11022:6;11018:15;11004:29;;11051:1;11061:195;11075:6;11072:1;11069:13;11061:195;;;11140:13;;-1:-1:-1;;;;;11136:39:1;11124:52;;11231:15;;;;11196:12;;;;11172:1;11090:9;11061:195;;;-1:-1:-1;;;;;;;11312:32:1;;;;11307:2;11292:18;;11285:60;-1:-1:-1;;;11376:3:1;11361:19;11354:35;11273:3;10415:980;-1:-1:-1;;;10415:980:1:o

Swarm Source

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