ETH Price: $2,733.34 (+0.96%)

Token

Tale Of Pepe (TOP)
 

Overview

Max Total Supply

420,420,420,420 TOP

Holders

10

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
884,396,559.796949203809044229 TOP

Value
$0.00
0xc18B55106b84D43F3B948AdA306E6398690F1988
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:
TOP

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-22
*/

//SPDX-License-Identifier: MIT 
// File: @openzeppelin/contracts/utils/Context.sol

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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


pragma solidity 0.8.16;

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 createPair(address tokenA, address tokenB)
        external
        returns (address pair);

    function setFeeTo(address) external;

    function allPairsLength() external view returns (uint256);

    function setFeeToSetter(address) external;
}

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 value);

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint256);

    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    event Mint(address indexed sender, uint256 amount0, uint256 amount1);
    event Burn(
        address indexed sender,
        uint256 amount0,
        uint256 amount1,
        address indexed to
    );
    event Swap(
        address indexed sender,
        uint256 amount0In,
        uint256 amount1In,
        uint256 amount0Out,
        uint256 amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (
            uint112 reserve0,
            uint112 reserve1,
            uint32 blockTimestampLast
        );

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

interface IUniswapV2Router01 {
    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 removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

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

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

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

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

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

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

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

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

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

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

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

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

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

/**
 * @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 decimals places of the token.
     */
    function decimals() external view returns (uint8);

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



/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() external 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 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-allowance}.
     */
    function allowance(address owner, address spender)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _allowances[owner][spender];
    }

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

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

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

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

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

        return true;
    }

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

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

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

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

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

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

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

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

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

        emit Transfer(from, to, amount);
    }
}

contract TOP is Ownable, ERC20 {
    uint256 private _numTokensSellToAddToSwap = 100000 * (10**decimals());
    bool inSwapAndLiquify;

    // 1% buy/sell tax
    uint256 public constant buySellLiquidityTax = 1;
    uint256 public constant sellDevelopmentTax = 1;
    address public developmentWallet =
        0xAa46F1EAd5Efc95CA33ab13b81706b67ede04056;
    address public constant  DEAD = address(0xdead);// burn LP to dead address    

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    mapping(address => bool) private _isExcludedFromFee;

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );

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

    /**
     * @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() ERC20("Tale Of Pepe", "TOP") {
        _mint(msg.sender, (420420420420 * 10**decimals()));

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

        uniswapV2Router = _uniswapV2Router;
        _isExcludedFromFee[msg.sender] = true;
        _isExcludedFromFee[address(uniswapV2Router)] = true;
    }

    function _swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
       
        uint256 half = (contractTokenBalance / 2);
        uint256 otherHalf = (contractTokenBalance - half);

        uint256 initialBalance = address(this).balance;

        _swapTokensForEth(half);

        uint256 newBalance = (address(this).balance - initialBalance);

        _addLiquidity(otherHalf, newBalance);

        emit SwapAndLiquify(half, newBalance, otherHalf);
    }

    function excludeFromFee (address _user, bool value) external onlyOwner {
        _isExcludedFromFee[_user]= value;
    }

    function swapAndSendToMarketing (uint256 tokens) private lockTheSwap {
        uint256 initialBalance = address(this).balance;
        _swapTokensForEth(tokens);
        uint256 newBalance = address(this).balance - initialBalance;
        payable (developmentWallet).transfer(newBalance);

    }

    function _swapTokensForEth(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

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

    function _addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            DEAD,
            block.timestamp
        );
    }

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

        uint256 transferAmount;
        if (
            (from == uniswapV2Pair || to == uniswapV2Pair) && !inSwapAndLiquify
        ) {
            // DEX transaction
            if (
                from != uniswapV2Pair &&
                ((balanceOf(address(this))) >= _numTokensSellToAddToSwap)

            ) {
                    uint256 totalfee = 2*(buySellLiquidityTax)+sellDevelopmentTax;
                    _numTokensSellToAddToSwap = balanceOf(address(this));

                    uint256 marketingTokens = _numTokensSellToAddToSwap * sellDevelopmentTax / totalfee;
                    swapAndSendToMarketing(marketingTokens); 

                    uint256 liquidityTokens = _numTokensSellToAddToSwap - marketingTokens;

                // sell transaction with threshold to swap
                _swapAndLiquify(liquidityTokens);
            }
            if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) {
                // no tax on excluded account
                transferAmount = amount;
            } else {
                // 1% buy tax to LP, 2% sell tax (1% to LP, 1% to dev wallet)
                uint256 liquidityAmount = ((amount * buySellLiquidityTax) /
                    100);
                if (from == uniswapV2Pair) {
                    // buy transaction
                    transferAmount = amount - liquidityAmount;
                } else {
                    // sell transaction
                    uint256 developmentAmount = ((amount * sellDevelopmentTax) /
                        100);

                    transferAmount =
                        amount -
                        liquidityAmount -
                        developmentAmount;
                    super._transfer(from, address(this), developmentAmount); // only on sell transaction
                }
                super._transfer(from, address(this), liquidityAmount); // on buy/sell both transactions
            }
        } else {
            // normal wallet transaction
            transferAmount = amount;
        }
        super._transfer(from, to, transferAmount);
    }

    receive() external payable {}
}

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":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","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":"DEAD","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buySellLiquidityTax","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":"developmentWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromFee","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":"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevelopmentTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052620000126012600a620004f0565b6200002190620186a062000508565b60065560078054610100600160a81b03191674aa46f1ead5efc95ca33ab13b81706b67ede04056001790553480156200005957600080fd5b506040518060400160405280600c81526020016b54616c65204f66205065706560a01b815250604051806040016040528060038152602001620544f560ec1b815250620000b5620000af620002bf60201b60201c565b620002c3565b6004620000c38382620005cf565b506005620000d28282620005cf565b5050506200010e33620000ea620002ba60201b60201c565b620000f790600a620004f0565b62000108906461e302834462000508565b62000313565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000166573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200018c91906200069b565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001da573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200020091906200069b565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200024e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200027491906200069b565b6001600160a01b0390811660a052166080819052336000908152600860205260408082208054600160ff19918216811790925593835291208054909216179055620006dc565b601290565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166200036e5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060036000828254620003829190620006c6565b90915550506001600160a01b0382166000818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111562000432578160001904821115620004165762000416620003db565b808516156200042457918102915b93841c9390800290620003f6565b509250929050565b6000826200044b57506001620004ea565b816200045a57506000620004ea565b81600181146200047357600281146200047e576200049e565b6001915050620004ea565b60ff841115620004925762000492620003db565b50506001821b620004ea565b5060208310610133831016604e8410600b8410161715620004c3575081810a620004ea565b620004cf8383620003f1565b8060001904821115620004e657620004e6620003db565b0290505b92915050565b60006200050160ff8416836200043a565b9392505050565b6000816000190483118215151615620005255762000525620003db565b500290565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200055557607f821691505b6020821081036200057657634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620005ca57600081815260208120601f850160051c81016020861015620005a55750805b601f850160051c820191505b81811015620005c657828155600101620005b1565b5050505b505050565b81516001600160401b03811115620005eb57620005eb6200052a565b6200060381620005fc845462000540565b846200057c565b602080601f8311600181146200063b5760008415620006225750858301515b600019600386901b1c1916600185901b178555620005c6565b600085815260208120601f198616915b828110156200066c578886015182559484019460019091019084016200064b565b50858210156200068b5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620006ae57600080fd5b81516001600160a01b03811681146200050157600080fd5b80820180821115620004ea57620004ea620003db565b60805160a05161148d62000741600039600081816102800152818161090c01528181610947015281816109910152610ac50152600081816101d101528181610e1601528181610ecf01528181610efe01528181610f900152610fed015261148d6000f3fe60806040526004361061012e5760003560e01c8063715018a6116100ab578063a9059cbb1161006f578063a9059cbb14610357578063ad8052bb146102ef578063c04a541414610377578063dd62ed3e1461039c578063df8408fe146103bc578063f2fde38b146103dc57600080fd5b8063715018a6146102d8578063739822b2146102ef5780638da5cb5b1461030457806395d89b4114610322578063a457c2d71461033757600080fd5b806323b872dd116100f257806323b872dd14610212578063313ce56714610232578063395093511461024e57806349bd5a5e1461026e57806370a08231146102a257600080fd5b806303fd2a451461013a57806306fdde031461016d578063095ea7b31461018f5780631694505e146101bf57806318160ddd146101f357600080fd5b3661013557005b600080fd5b34801561014657600080fd5b5061015061dead81565b6040516001600160a01b0390911681526020015b60405180910390f35b34801561017957600080fd5b506101826103fc565b604051610164919061106b565b34801561019b57600080fd5b506101af6101aa3660046110ce565b61048e565b6040519015158152602001610164565b3480156101cb57600080fd5b506101507f000000000000000000000000000000000000000000000000000000000000000081565b3480156101ff57600080fd5b506003545b604051908152602001610164565b34801561021e57600080fd5b506101af61022d3660046110fa565b6104a8565b34801561023e57600080fd5b5060405160128152602001610164565b34801561025a57600080fd5b506101af6102693660046110ce565b6104cc565b34801561027a57600080fd5b506101507f000000000000000000000000000000000000000000000000000000000000000081565b3480156102ae57600080fd5b506102046102bd36600461113b565b6001600160a01b031660009081526001602052604090205490565b3480156102e457600080fd5b506102ed6104ee565b005b3480156102fb57600080fd5b50610204600181565b34801561031057600080fd5b506000546001600160a01b0316610150565b34801561032e57600080fd5b5061018261052d565b34801561034357600080fd5b506101af6103523660046110ce565b61053c565b34801561036357600080fd5b506101af6103723660046110ce565b6105b7565b34801561038357600080fd5b506007546101509061010090046001600160a01b031681565b3480156103a857600080fd5b506102046103b736600461115f565b6105c5565b3480156103c857600080fd5b506102ed6103d7366004611198565b6105f0565b3480156103e857600080fd5b506102ed6103f736600461113b565b610645565b60606004805461040b906111cb565b80601f0160208091040260200160405190810160405280929190818152602001828054610437906111cb565b80156104845780601f1061045957610100808354040283529160200191610484565b820191906000526020600020905b81548152906001019060200180831161046757829003601f168201915b5050505050905090565b60003361049c8185856106e0565b60019150505b92915050565b6000336104b6858285610804565b6104c185858561087e565b506001949350505050565b60003361049c8185856104df83836105c5565b6104e9919061121b565b6106e0565b6000546001600160a01b031633146105215760405162461bcd60e51b81526004016105189061122e565b60405180910390fd5b61052b6000610b6b565b565b60606005805461040b906111cb565b6000338161054a82866105c5565b9050838110156105aa5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610518565b6104c182868684036106e0565b60003361049c81858561087e565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6000546001600160a01b0316331461061a5760405162461bcd60e51b81526004016105189061122e565b6001600160a01b03919091166000908152600860205260409020805460ff1916911515919091179055565b6000546001600160a01b0316331461066f5760405162461bcd60e51b81526004016105189061122e565b6001600160a01b0381166106d45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610518565b6106dd81610b6b565b50565b6001600160a01b0383166107425760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610518565b6001600160a01b0382166107a35760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610518565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061081084846105c5565b90506000198114610878578181101561086b5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610518565b61087884848484036106e0565b50505050565b6001600160a01b0383166108a45760405162461bcd60e51b815260040161051890611263565b6001600160a01b0382166108ca5760405162461bcd60e51b8152600401610518906112a8565b806108ea846001600160a01b031660009081526001602052604090205490565b10156109085760405162461bcd60e51b8152600401610518906112eb565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316148061097b57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316145b801561098a575060075460ff16155b15610b5d577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316141580156109e257506006543060009081526001602052604090205410155b15610a5d57600060016109f6816002611331565b610a00919061121b565b3060009081526001602052604090205490915060068190556000908290610a2990600190611331565b610a339190611350565b9050610a3e81610bbb565b600081600654610a4e9190611372565b9050610a5981610c2e565b5050505b6001600160a01b03841660009081526008602052604090205460ff1680610a9c57506001600160a01b03831660009081526008602052604090205460ff165b15610aa8575080610b60565b60006064610ab7600185611331565b610ac19190611350565b90507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031603610b0d57610b068184611372565b9150610b4c565b60006064610b1c600186611331565b610b269190611350565b905080610b338386611372565b610b3d9190611372565b9250610b4a863083610ccc565b505b610b57853083610ccc565b50610b60565b50805b610878848483610ccc565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6007805460ff1916600117905547610bd282610dbf565b6000610bde8247611372565b60075460405191925061010090046001600160a01b0316906108fc8315029083906000818181858888f19350505050158015610c1e573d6000803e3d6000fd5b50506007805460ff191690555050565b6007805460ff191660011790556000610c48600283611350565b90506000610c568284611372565b905047610c6283610dbf565b6000610c6e8247611372565b9050610c7a8382610f8a565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a150506007805460ff19169055505050565b6001600160a01b038316610cf25760405162461bcd60e51b815260040161051890611263565b6001600160a01b038216610d185760405162461bcd60e51b8152600401610518906112a8565b6001600160a01b03831660009081526001602052604090205481811015610d515760405162461bcd60e51b8152600401610518906112eb565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610db19086815260200190565b60405180910390a350505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110610df457610df4611385565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e72573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e96919061139b565b81600181518110610ea957610ea9611385565b60200260200101906001600160a01b031690816001600160a01b031681525050610ef4307f0000000000000000000000000000000000000000000000000000000000000000846106e0565b6001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001663791ac9478360008430610f344261012c61121b565b6040518663ffffffff1660e01b8152600401610f549594939291906113b8565b600060405180830381600087803b158015610f6e57600080fd5b505af1158015610f82573d6000803e3d6000fd5b505050505050565b610fb5307f0000000000000000000000000000000000000000000000000000000000000000846106e0565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af115801561103f573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906110649190611429565b5050505050565b600060208083528351808285015260005b818110156110985785810183015185820160400152820161107c565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146106dd57600080fd5b600080604083850312156110e157600080fd5b82356110ec816110b9565b946020939093013593505050565b60008060006060848603121561110f57600080fd5b833561111a816110b9565b9250602084013561112a816110b9565b929592945050506040919091013590565b60006020828403121561114d57600080fd5b8135611158816110b9565b9392505050565b6000806040838503121561117257600080fd5b823561117d816110b9565b9150602083013561118d816110b9565b809150509250929050565b600080604083850312156111ab57600080fd5b82356111b6816110b9565b91506020830135801515811461118d57600080fd5b600181811c908216806111df57607f821691505b6020821081036111ff57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156104a2576104a2611205565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b600081600019048311821515161561134b5761134b611205565b500290565b60008261136d57634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156104a2576104a2611205565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156113ad57600080fd5b8151611158816110b9565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156114085784516001600160a01b0316835293830193918301916001016113e3565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561143e57600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212209530568b9ee22091bf090a944610185fe3bd4b7a443681d4aa59b52f4a2f706964736f6c63430008100033

Deployed Bytecode

0x60806040526004361061012e5760003560e01c8063715018a6116100ab578063a9059cbb1161006f578063a9059cbb14610357578063ad8052bb146102ef578063c04a541414610377578063dd62ed3e1461039c578063df8408fe146103bc578063f2fde38b146103dc57600080fd5b8063715018a6146102d8578063739822b2146102ef5780638da5cb5b1461030457806395d89b4114610322578063a457c2d71461033757600080fd5b806323b872dd116100f257806323b872dd14610212578063313ce56714610232578063395093511461024e57806349bd5a5e1461026e57806370a08231146102a257600080fd5b806303fd2a451461013a57806306fdde031461016d578063095ea7b31461018f5780631694505e146101bf57806318160ddd146101f357600080fd5b3661013557005b600080fd5b34801561014657600080fd5b5061015061dead81565b6040516001600160a01b0390911681526020015b60405180910390f35b34801561017957600080fd5b506101826103fc565b604051610164919061106b565b34801561019b57600080fd5b506101af6101aa3660046110ce565b61048e565b6040519015158152602001610164565b3480156101cb57600080fd5b506101507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b3480156101ff57600080fd5b506003545b604051908152602001610164565b34801561021e57600080fd5b506101af61022d3660046110fa565b6104a8565b34801561023e57600080fd5b5060405160128152602001610164565b34801561025a57600080fd5b506101af6102693660046110ce565b6104cc565b34801561027a57600080fd5b506101507f000000000000000000000000d2578616dfbc73fdd12950724323ab63b5e37fd781565b3480156102ae57600080fd5b506102046102bd36600461113b565b6001600160a01b031660009081526001602052604090205490565b3480156102e457600080fd5b506102ed6104ee565b005b3480156102fb57600080fd5b50610204600181565b34801561031057600080fd5b506000546001600160a01b0316610150565b34801561032e57600080fd5b5061018261052d565b34801561034357600080fd5b506101af6103523660046110ce565b61053c565b34801561036357600080fd5b506101af6103723660046110ce565b6105b7565b34801561038357600080fd5b506007546101509061010090046001600160a01b031681565b3480156103a857600080fd5b506102046103b736600461115f565b6105c5565b3480156103c857600080fd5b506102ed6103d7366004611198565b6105f0565b3480156103e857600080fd5b506102ed6103f736600461113b565b610645565b60606004805461040b906111cb565b80601f0160208091040260200160405190810160405280929190818152602001828054610437906111cb565b80156104845780601f1061045957610100808354040283529160200191610484565b820191906000526020600020905b81548152906001019060200180831161046757829003601f168201915b5050505050905090565b60003361049c8185856106e0565b60019150505b92915050565b6000336104b6858285610804565b6104c185858561087e565b506001949350505050565b60003361049c8185856104df83836105c5565b6104e9919061121b565b6106e0565b6000546001600160a01b031633146105215760405162461bcd60e51b81526004016105189061122e565b60405180910390fd5b61052b6000610b6b565b565b60606005805461040b906111cb565b6000338161054a82866105c5565b9050838110156105aa5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610518565b6104c182868684036106e0565b60003361049c81858561087e565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6000546001600160a01b0316331461061a5760405162461bcd60e51b81526004016105189061122e565b6001600160a01b03919091166000908152600860205260409020805460ff1916911515919091179055565b6000546001600160a01b0316331461066f5760405162461bcd60e51b81526004016105189061122e565b6001600160a01b0381166106d45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610518565b6106dd81610b6b565b50565b6001600160a01b0383166107425760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610518565b6001600160a01b0382166107a35760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610518565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061081084846105c5565b90506000198114610878578181101561086b5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610518565b61087884848484036106e0565b50505050565b6001600160a01b0383166108a45760405162461bcd60e51b815260040161051890611263565b6001600160a01b0382166108ca5760405162461bcd60e51b8152600401610518906112a8565b806108ea846001600160a01b031660009081526001602052604090205490565b10156109085760405162461bcd60e51b8152600401610518906112eb565b60007f000000000000000000000000d2578616dfbc73fdd12950724323ab63b5e37fd76001600160a01b0316846001600160a01b0316148061097b57507f000000000000000000000000d2578616dfbc73fdd12950724323ab63b5e37fd76001600160a01b0316836001600160a01b0316145b801561098a575060075460ff16155b15610b5d577f000000000000000000000000d2578616dfbc73fdd12950724323ab63b5e37fd76001600160a01b0316846001600160a01b0316141580156109e257506006543060009081526001602052604090205410155b15610a5d57600060016109f6816002611331565b610a00919061121b565b3060009081526001602052604090205490915060068190556000908290610a2990600190611331565b610a339190611350565b9050610a3e81610bbb565b600081600654610a4e9190611372565b9050610a5981610c2e565b5050505b6001600160a01b03841660009081526008602052604090205460ff1680610a9c57506001600160a01b03831660009081526008602052604090205460ff165b15610aa8575080610b60565b60006064610ab7600185611331565b610ac19190611350565b90507f000000000000000000000000d2578616dfbc73fdd12950724323ab63b5e37fd76001600160a01b0316856001600160a01b031603610b0d57610b068184611372565b9150610b4c565b60006064610b1c600186611331565b610b269190611350565b905080610b338386611372565b610b3d9190611372565b9250610b4a863083610ccc565b505b610b57853083610ccc565b50610b60565b50805b610878848483610ccc565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6007805460ff1916600117905547610bd282610dbf565b6000610bde8247611372565b60075460405191925061010090046001600160a01b0316906108fc8315029083906000818181858888f19350505050158015610c1e573d6000803e3d6000fd5b50506007805460ff191690555050565b6007805460ff191660011790556000610c48600283611350565b90506000610c568284611372565b905047610c6283610dbf565b6000610c6e8247611372565b9050610c7a8382610f8a565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a150506007805460ff19169055505050565b6001600160a01b038316610cf25760405162461bcd60e51b815260040161051890611263565b6001600160a01b038216610d185760405162461bcd60e51b8152600401610518906112a8565b6001600160a01b03831660009081526001602052604090205481811015610d515760405162461bcd60e51b8152600401610518906112eb565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610db19086815260200190565b60405180910390a350505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110610df457610df4611385565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e72573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e96919061139b565b81600181518110610ea957610ea9611385565b60200260200101906001600160a01b031690816001600160a01b031681525050610ef4307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846106e0565b6001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d1663791ac9478360008430610f344261012c61121b565b6040518663ffffffff1660e01b8152600401610f549594939291906113b8565b600060405180830381600087803b158015610f6e57600080fd5b505af1158015610f82573d6000803e3d6000fd5b505050505050565b610fb5307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846106e0565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af115801561103f573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906110649190611429565b5050505050565b600060208083528351808285015260005b818110156110985785810183015185820160400152820161107c565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146106dd57600080fd5b600080604083850312156110e157600080fd5b82356110ec816110b9565b946020939093013593505050565b60008060006060848603121561110f57600080fd5b833561111a816110b9565b9250602084013561112a816110b9565b929592945050506040919091013590565b60006020828403121561114d57600080fd5b8135611158816110b9565b9392505050565b6000806040838503121561117257600080fd5b823561117d816110b9565b9150602083013561118d816110b9565b809150509250929050565b600080604083850312156111ab57600080fd5b82356111b6816110b9565b91506020830135801515811461118d57600080fd5b600181811c908216806111df57607f821691505b6020821081036111ff57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156104a2576104a2611205565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b600081600019048311821515161561134b5761134b611205565b500290565b60008261136d57634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156104a2576104a2611205565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156113ad57600080fd5b8151611158816110b9565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156114085784516001600160a01b0316835293830193918301916001016113e3565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561143e57600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212209530568b9ee22091bf090a944610185fe3bd4b7a443681d4aa59b52f4a2f706964736f6c63430008100033

Deployed Bytecode Sourcemap

27125:6569:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27493:47;;;;;;;;;;;;27533:6;27493:47;;;;;-1:-1:-1;;;;;178:32:1;;;160:51;;148:2;133:18;27493:47:0;;;;;;;;18039:102;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;20314:244::-;;;;;;;;;;-1:-1:-1;20314:244:0;;;;;:::i;:::-;;:::i;:::-;;;1396:14:1;;1389:22;1371:41;;1359:2;1344:18;20314:244:0;1231:187:1;27579:51:0;;;;;;;;;;;;;;;18206:110;;;;;;;;;;-1:-1:-1;18296:12:0;;18206:110;;;1803:25:1;;;1791:2;1776:18;18206:110:0;1657:177:1;21138:297:0;;;;;;;;;;-1:-1:-1;21138:297:0;;;;;:::i;:::-;;:::i;19195:93::-;;;;;;;;;;-1:-1:-1;19195:93:0;;19278:2;2442:36:1;;2430:2;2415:18;19195:93:0;2300:184:1;21844:272:0;;;;;;;;;;-1:-1:-1;21844:272:0;;;;;:::i;:::-;;:::i;27637:38::-;;;;;;;;;;;;;;;18379:177;;;;;;;;;;-1:-1:-1;18379:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;18530:18:0;18498:7;18530:18;;;:9;:18;;;;;;;18379:177;2637:103;;;;;;;;;;;;;:::i;:::-;;27293:47;;;;;;;;;;;;27339:1;27293:47;;1986:87;;;;;;;;;;-1:-1:-1;2032:7:0;2059:6;-1:-1:-1;;;;;2059:6:0;1986:87;;17863:106;;;;;;;;;;;;;:::i;22619:507::-;;;;;;;;;;-1:-1:-1;22619:507:0;;;;;:::i;:::-;;:::i;19758:236::-;;;;;;;;;;-1:-1:-1;19758:236:0;;;;;:::i;:::-;;:::i;27400:86::-;;;;;;;;;;-1:-1:-1;27400:86:0;;;;;;;-1:-1:-1;;;;;27400:86:0;;;19351:201;;;;;;;;;;-1:-1:-1;19351:201:0;;;;;:::i;:::-;;:::i;29351:122::-;;;;;;;;;;-1:-1:-1;29351:122:0;;;;;:::i;:::-;;:::i;2895:201::-;;;;;;;;;;-1:-1:-1;2895:201:0;;;;;:::i;:::-;;:::i;18039:102::-;18095:13;18128:5;18121:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18039:102;:::o;20314:244::-;20435:4;790:10;20496:32;790:10;20512:7;20521:6;20496:8;:32::i;:::-;20546:4;20539:11;;;20314:244;;;;;:::o;21138:297::-;21271:4;790:10;21329:38;21345:4;790:10;21360:6;21329:15;:38::i;:::-;21378:27;21388:4;21394:2;21398:6;21378:9;:27::i;:::-;-1:-1:-1;21423:4:0;;21138:297;-1:-1:-1;;;;21138:297:0:o;21844:272::-;21961:4;790:10;22022:64;790:10;22038:7;22075:10;22047:25;790:10;22038:7;22047:9;:25::i;:::-;:38;;;;:::i;:::-;22022:8;:64::i;2637:103::-;2032:7;2059:6;-1:-1:-1;;;;;2059:6:0;790:10;2206:23;2198:68;;;;-1:-1:-1;;;2198:68:0;;;;;;;:::i;:::-;;;;;;;;;2702:30:::1;2729:1;2702:18;:30::i;:::-;2637:103::o:0;17863:106::-;17921:13;17954:7;17947:14;;;;;:::i;22619:507::-;22741:4;790:10;22741:4;22829:25;790:10;22846:7;22829:9;:25::i;:::-;22802:52;;22907:15;22887:16;:35;;22865:122;;;;-1:-1:-1;;;22865:122:0;;4765:2:1;22865:122:0;;;4747:21:1;4804:2;4784:18;;;4777:30;4843:34;4823:18;;;4816:62;-1:-1:-1;;;4894:18:1;;;4887:35;4939:19;;22865:122:0;4563:401:1;22865:122:0;23023:60;23032:5;23039:7;23067:15;23048:16;:34;23023:8;:60::i;19758:236::-;19875:4;790:10;19936:28;790:10;19953:2;19957:6;19936:9;:28::i;19351:201::-;-1:-1:-1;;;;;19517:18:0;;;19485:7;19517:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;19351:201::o;29351:122::-;2032:7;2059:6;-1:-1:-1;;;;;2059:6:0;790:10;2206:23;2198:68;;;;-1:-1:-1;;;2198:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29433:25:0;;;::::1;;::::0;;;:18:::1;:25;::::0;;;;:32;;-1:-1:-1;;29433:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;29351:122::o;2895:201::-;2032:7;2059:6;-1:-1:-1;;;;;2059:6:0;790:10;2206:23;2198:68;;;;-1:-1:-1;;;2198:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2984:22:0;::::1;2976:73;;;::::0;-1:-1:-1;;;2976:73:0;;5171:2:1;2976:73:0::1;::::0;::::1;5153:21:1::0;5210:2;5190:18;;;5183:30;5249:34;5229:18;;;5222:62;-1:-1:-1;;;5300:18:1;;;5293:36;5346:19;;2976:73:0::1;4969:402:1::0;2976:73:0::1;3060:28;3079:8;3060:18;:28::i;:::-;2895:201:::0;:::o;25954:380::-;-1:-1:-1;;;;;26090:19:0;;26082:68;;;;-1:-1:-1;;;26082:68:0;;5578:2:1;26082:68:0;;;5560:21:1;5617:2;5597:18;;;5590:30;5656:34;5636:18;;;5629:62;-1:-1:-1;;;5707:18:1;;;5700:34;5751:19;;26082:68:0;5376:400:1;26082:68:0;-1:-1:-1;;;;;26169:21:0;;26161:68;;;;-1:-1:-1;;;26161:68:0;;5983:2:1;26161:68:0;;;5965:21:1;6022:2;6002:18;;;5995:30;6061:34;6041:18;;;6034:62;-1:-1:-1;;;6112:18:1;;;6105:32;6154:19;;26161:68:0;5781:398:1;26161:68:0;-1:-1:-1;;;;;26242:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;26294:32;;1803:25:1;;;26294:32:0;;1776:18:1;26294:32:0;;;;;;;25954:380;;;:::o;25014:502::-;25149:24;25176:25;25186:5;25193:7;25176:9;:25::i;:::-;25149:52;;-1:-1:-1;;25216:16:0;:37;25212:297;;25316:6;25296:16;:26;;25270:117;;;;-1:-1:-1;;;25270:117:0;;6386:2:1;25270:117:0;;;6368:21:1;6425:2;6405:18;;;6398:30;6464:31;6444:18;;;6437:59;6513:18;;25270:117:0;6184:353:1;25270:117:0;25431:51;25440:5;25447:7;25475:6;25456:16;:25;25431:8;:51::i;:::-;25138:378;25014:502;;;:::o;31112:2542::-;-1:-1:-1;;;;;31244:18:0;;31236:68;;;;-1:-1:-1;;;31236:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31323:16:0;;31315:64;;;;-1:-1:-1;;;31315:64:0;;;;;;;:::i;:::-;31431:6;31412:15;31422:4;-1:-1:-1;;;;;18530:18:0;18498:7;18530:18;;;:9;:18;;;;;;;18379:177;31412:15;:25;;31390:113;;;;-1:-1:-1;;;31390:113:0;;;;;;;:::i;:::-;31516:22;31576:13;-1:-1:-1;;;;;31568:21:0;:4;-1:-1:-1;;;;;31568:21:0;;:44;;;;31599:13;-1:-1:-1;;;;;31593:19:0;:2;-1:-1:-1;;;;;31593:19:0;;31568:44;31567:67;;;;-1:-1:-1;31618:16:0;;;;31617:17;31567:67;31549:2046;;;31723:13;-1:-1:-1;;;;;31715:21:0;:4;-1:-1:-1;;;;;31715:21:0;;;:99;;;;-1:-1:-1;31788:25:0;;31777:4;18498:7;18530:18;;;:9;:18;;;;;;31758:55;;31715:99;31693:692;;;31855:16;27392:1;31874:23;27392:1;31874;:23;:::i;:::-;:42;;;;:::i;:::-;31985:4;18498:7;18530:18;;;:9;:18;;;;;;31855:61;;-1:-1:-1;31939:25:0;:52;;;32016:23;;32091:8;;32042:46;;27392:1;;32042:46;:::i;:::-;:57;;;;:::i;:::-;32016:83;;32122:39;32145:15;32122:22;:39::i;:::-;32187:23;32241:15;32213:25;;:43;;;;:::i;:::-;32187:69;;32337:32;32353:15;32337;:32::i;:::-;31832:553;;;31693:692;-1:-1:-1;;;;;32403:24:0;;;;;;:18;:24;;;;;;;;;:50;;-1:-1:-1;;;;;;32431:22:0;;;;;;:18;:22;;;;;;;;32403:50;32399:1087;;;-1:-1:-1;32538:6:0;31549:2046;;32399:1087;32664:23;32745:3;32692:28;27339:1;32692:6;:28;:::i;:::-;32691:57;;;;:::i;:::-;32664:85;;32780:13;-1:-1:-1;;;;;32772:21:0;:4;-1:-1:-1;;;;;32772:21:0;;32768:598;;32875:24;32884:15;32875:6;:24;:::i;:::-;32858:41;;32768:598;;;32989:25;33075:3;33019:27;27392:1;33019:6;:27;:::i;:::-;33018:60;;;;:::i;:::-;32989:90;-1:-1:-1;32989:90:0;33146:49;33180:15;33146:6;:49;:::i;:::-;:94;;;;:::i;:::-;33104:136;;33263:55;33279:4;33293;33300:17;33263:15;:55::i;:::-;32925:441;32768:598;33384:53;33400:4;33414;33421:15;33384;:53::i;:::-;32566:920;31549:2046;;;-1:-1:-1;33577:6:0;31549:2046;33605:41;33621:4;33627:2;33631:14;33605:15;:41::i;3256:191::-;3330:16;3349:6;;-1:-1:-1;;;;;3366:17:0;;;-1:-1:-1;;;;;;3366:17:0;;;;;;3399:40;;3349:6;;;;;;;3399:40;;3330:16;3399:40;3319:128;3256:191;:::o;29481:301::-;27911:16;:23;;-1:-1:-1;;27911:23:0;27930:4;27911:23;;;29586:21:::1;29618:25;29636:6:::0;29618:17:::1;:25::i;:::-;29654:18;29675:38;29699:14:::0;29675:21:::1;:38;:::i;:::-;29733:17;::::0;29724:48:::1;::::0;29654:59;;-1:-1:-1;29733:17:0::1;::::0;::::1;-1:-1:-1::0;;;;;29733:17:0::1;::::0;29724:48:::1;::::0;::::1;;::::0;29654:59;;29724:48:::1;::::0;;;29654:59;29733:17;29724:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;27957:16:0;:24;;-1:-1:-1;;27957:24:0;;;-1:-1:-1;;29481:301:0:o;28860:483::-;27911:16;:23;;-1:-1:-1;;27911:23:0;27930:4;27911:23;;;:16;28971:24:::1;28994:1;28971:20:::0;:24:::1;:::i;:::-;28955:41:::0;-1:-1:-1;29007:17:0::1;29028:27;28955:41:::0;29028:20;:27:::1;:::i;:::-;29007:49:::0;-1:-1:-1;29094:21:0::1;29128:23;29146:4:::0;29128:17:::1;:23::i;:::-;29164:18;29186:38;29210:14:::0;29186:21:::1;:38;:::i;:::-;29164:61;;29238:36;29252:9;29263:10;29238:13;:36::i;:::-;29292:43;::::0;;8489:25:1;;;8545:2;8530:18;;8523:34;;;8573:18;;;8566:34;;;29292:43:0::1;::::0;8477:2:1;8462:18;29292:43:0::1;;;;;;;-1:-1:-1::0;;27957:16:0;:24;;-1:-1:-1;;27957:24:0;;;-1:-1:-1;;;28860:483:0:o;26342:776::-;-1:-1:-1;;;;;26473:18:0;;26465:68;;;;-1:-1:-1;;;26465:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26552:16:0;;26544:64;;;;-1:-1:-1;;;26544:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26643:15:0;;26621:19;26643:15;;;:9;:15;;;;;;26691:21;;;;26669:109;;;;-1:-1:-1;;;26669:109:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26814:15:0;;;;;;;:9;:15;;;;;;26832:20;;;26814:38;;27032:13;;;;;;;;;;:23;;;;;;27084:26;;;;;;26846:6;1803:25:1;;1791:2;1776:18;;1657:177;27084:26:0;;;;;;;;26454:664;26342:776;;;:::o;29790:484::-;29881:16;;;29895:1;29881:16;;;;;;;;29857:21;;29881:16;;;;;;;;;;-1:-1:-1;29881:16:0;29857:40;;29926:4;29908;29913:1;29908:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;29908:23:0;;;-1:-1:-1;;;;;29908:23:0;;;;;29952:15;-1:-1:-1;;;;;29952:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;29942:4;29947:1;29942:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;29942:32:0;;;-1:-1:-1;;;;;29942:32:0;;;;;29987:62;30004:4;30019:15;30037:11;29987:8;:62::i;:::-;-1:-1:-1;;;;;30062:15:0;:66;;30143:11;30169:1;30185:4;30212;30233:21;:15;30251:3;30233:21;:::i;:::-;30062:204;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29846:428;29790:484;:::o;30282:360::-;30364:62;30381:4;30396:15;30414:11;30364:8;:62::i;:::-;30439:195;;-1:-1:-1;;;30439:195:0;;30511:4;30439:195;;;10457:34:1;10507:18;;;10500:34;;;30557:1:0;10550:18:1;;;10543:34;;;10593:18;;;10586:34;27533:6:0;10636:19:1;;;10629:44;30608:15:0;10689:19:1;;;10682:35;30439:15:0;-1:-1:-1;;;;;30439:31:0;;;;30478:9;;10391:19:1;;30439:195:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;30282:360;;:::o;222:548:1:-;334:4;363:2;392;381:9;374:21;424:6;418:13;467:6;462:2;451:9;447:18;440:34;492:1;502:140;516:6;513:1;510:13;502:140;;;611:14;;;607:23;;601:30;577:17;;;596:2;573:26;566:66;531:10;;502:140;;;506:3;691:1;686:2;677:6;666:9;662:22;658:31;651:42;761:2;754;750:7;745:2;737:6;733:15;729:29;718:9;714:45;710:54;702:62;;;;222:548;;;;:::o;775:131::-;-1:-1:-1;;;;;850:31:1;;840:42;;830:70;;896:1;893;886:12;911:315;979:6;987;1040:2;1028:9;1019:7;1015:23;1011:32;1008:52;;;1056:1;1053;1046:12;1008:52;1095:9;1082:23;1114:31;1139:5;1114:31;:::i;:::-;1164:5;1216:2;1201:18;;;;1188:32;;-1:-1:-1;;;911:315:1:o;1839:456::-;1916:6;1924;1932;1985:2;1973:9;1964:7;1960:23;1956:32;1953:52;;;2001:1;1998;1991:12;1953:52;2040:9;2027:23;2059:31;2084:5;2059:31;:::i;:::-;2109:5;-1:-1:-1;2166:2:1;2151:18;;2138:32;2179:33;2138:32;2179:33;:::i;:::-;1839:456;;2231:7;;-1:-1:-1;;;2285:2:1;2270:18;;;;2257:32;;1839: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;:::-;2725:5;2489:247;-1:-1:-1;;;2489:247:1:o;2741:388::-;2809:6;2817;2870:2;2858:9;2849:7;2845:23;2841:32;2838:52;;;2886:1;2883;2876:12;2838:52;2925:9;2912:23;2944:31;2969:5;2944:31;:::i;:::-;2994:5;-1:-1:-1;3051:2:1;3036:18;;3023:32;3064:33;3023:32;3064:33;:::i;:::-;3116:7;3106:17;;;2741:388;;;;;:::o;3134:416::-;3199:6;3207;3260:2;3248:9;3239:7;3235:23;3231:32;3228:52;;;3276:1;3273;3266:12;3228:52;3315:9;3302:23;3334:31;3359:5;3334:31;:::i;:::-;3384:5;-1:-1:-1;3441:2:1;3426:18;;3413:32;3483:15;;3476:23;3464:36;;3454:64;;3514:1;3511;3504:12;3555:380;3634:1;3630:12;;;;3677;;;3698:61;;3752:4;3744:6;3740:17;3730:27;;3698:61;3805:2;3797:6;3794:14;3774:18;3771:38;3768:161;;3851:10;3846:3;3842:20;3839:1;3832:31;3886:4;3883:1;3876:15;3914:4;3911:1;3904:15;3768:161;;3555:380;;;:::o;3940:127::-;4001:10;3996:3;3992:20;3989:1;3982:31;4032:4;4029:1;4022:15;4056:4;4053:1;4046:15;4072:125;4137:9;;;4158:10;;;4155:36;;;4171:18;;:::i;4202:356::-;4404:2;4386:21;;;4423:18;;;4416:30;4482:34;4477:2;4462:18;;4455:62;4549:2;4534:18;;4202:356::o;6542:401::-;6744:2;6726:21;;;6783:2;6763:18;;;6756:30;6822:34;6817:2;6802:18;;6795:62;-1:-1:-1;;;6888:2:1;6873:18;;6866:35;6933:3;6918:19;;6542:401::o;6948:399::-;7150:2;7132:21;;;7189:2;7169:18;;;7162:30;7228:34;7223:2;7208:18;;7201:62;-1:-1:-1;;;7294:2:1;7279:18;;7272:33;7337:3;7322:19;;6948:399::o;7352:402::-;7554:2;7536:21;;;7593:2;7573:18;;;7566:30;7632:34;7627:2;7612:18;;7605:62;-1:-1:-1;;;7698:2:1;7683:18;;7676:36;7744:3;7729:19;;7352:402::o;7759:168::-;7799:7;7865:1;7861;7857:6;7853:14;7850:1;7847:21;7842:1;7835:9;7828:17;7824:45;7821:71;;;7872:18;;:::i;:::-;-1:-1:-1;7912:9:1;;7759:168::o;7932:217::-;7972:1;7998;7988:132;;8042:10;8037:3;8033:20;8030:1;8023:31;8077:4;8074:1;8067:15;8105:4;8102:1;8095:15;7988:132;-1:-1:-1;8134:9:1;;7932:217::o;8154:128::-;8221:9;;;8242:11;;;8239:37;;;8256:18;;:::i;8743:127::-;8804:10;8799:3;8795:20;8792:1;8785:31;8835:4;8832:1;8825:15;8859:4;8856:1;8849:15;8875:251;8945:6;8998:2;8986:9;8977:7;8973:23;8969:32;8966:52;;;9014:1;9011;9004:12;8966:52;9046:9;9040:16;9065:31;9090:5;9065:31;:::i;9131:980::-;9393:4;9441:3;9430:9;9426:19;9472:6;9461:9;9454:25;9498:2;9536:6;9531:2;9520:9;9516:18;9509:34;9579:3;9574:2;9563:9;9559:18;9552:31;9603:6;9638;9632:13;9669:6;9661;9654:22;9707:3;9696:9;9692:19;9685:26;;9746:2;9738:6;9734:15;9720:29;;9767:1;9777:195;9791:6;9788:1;9785:13;9777:195;;;9856:13;;-1:-1:-1;;;;;9852:39:1;9840:52;;9947:15;;;;9912:12;;;;9888:1;9806:9;9777:195;;;-1:-1:-1;;;;;;;10028:32:1;;;;10023:2;10008:18;;10001:60;-1:-1:-1;;;10092:3:1;10077:19;10070:35;9989:3;9131:980;-1:-1:-1;;;9131:980:1:o;10728:306::-;10816:6;10824;10832;10885:2;10873:9;10864:7;10860:23;10856:32;10853:52;;;10901:1;10898;10891:12;10853:52;10930:9;10924:16;10914:26;;10980:2;10969:9;10965:18;10959:25;10949:35;;11024:2;11013:9;11009:18;11003:25;10993:35;;10728:306;;;;;:::o

Swarm Source

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