ETH Price: $3,219.39 (+5.42%)

Token

Big Green Dildo (BGD)
 

Overview

Max Total Supply

69,420,069,420,069 BGD

Holders

53

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
5,978,868,968.983995965004653331 BGD

Value
$0.00
0xd955b4057eb2903b2b39f7e639bf678df94eb2f6
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:
BigGreenDildo

Compiler Version
v0.8.25+commit.b61c2a91

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: UNLICENSED

// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions 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.0;

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

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
}

interface IFactory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
    function getPair(address tokenA, address tokenB) external view returns (address pair);
}

contract BigGreenDildo  is Ownable, ERC20('Big Green Dildo ', 'BGD ') {
       
    IRouter public Router;
    
    uint256 public buyTax;
    uint256 public sellTax;
    uint256 public devSplit;
    uint256 public marketingSplit;
    uint256 public lpSplit;
    uint256 public swapAtAmount;

    address payable public  marketingWallet;
    address payable public teamWallet;
    address public swapPair;
    address dead = 0x000000000000000000000000000000000000dEaD;

    mapping (address => bool) public automatedMarketMakerPairs;
    mapping (address => bool) private _isExcludedFromFees;
    
    
    constructor(
        uint256 _buyTax,
        uint256 _sellTax,
        uint256 _devSplit,
        uint256 _marketingSplit,
        uint256 _lpSplit,
        address _router,
        address _MarketingWallet, 
        address _teamWallet,
        uint256 initialSupply, 
        address realOwner
        ) {

        marketingWallet = payable(_MarketingWallet);
        teamWallet = payable(_teamWallet);

        setBuyTax(_buyTax);
        setSellTax(_sellTax);
        setTaxSplit(_devSplit, _marketingSplit, _lpSplit);

       excludeFromFees(realOwner, true);
       excludeFromFees(address(this), true);
       _mint(realOwner, initialSupply * (10**18));
       swapAtAmount = totalSupply() * 10 / 1000000;  // .01% 
       updateSwapRouter(_router);
       transferOwnership(realOwner);
    }
   
     event ExcludeFromFees(address indexed account, bool isExcluded);
     event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    function setBuyTax(uint256 _newBuyTax) public onlyOwner {
      buyTax = _newBuyTax;
      require(_newBuyTax <= 2000, "Cannot exceed 2000");
    }
    
    function setSellTax(uint256 _newSellTax) public onlyOwner {
      sellTax = _newSellTax;
      require(_newSellTax <= 2000, "TotalFee cannot exceed 2000");
    }
    function setTaxSplit(uint256 _devSplit, uint256 _marketingSplit, uint256 _lpSplit) public onlyOwner {
        devSplit = _devSplit;
        marketingSplit = _marketingSplit;
        lpSplit = _lpSplit;
        require(_devSplit + _marketingSplit + _lpSplit == 100, "Split combination must equal 100");
    }

    function setMarketingWallet(address payable newMarketingWallet) public onlyOwner {
         if (_isExcludedFromFees[marketingWallet] = true)
            excludeFromFees(marketingWallet, false);

        marketingWallet = newMarketingWallet;

         if (_isExcludedFromFees[marketingWallet] = false)
            excludeFromFees(marketingWallet, true);
    }
    function setTeamWallet(address payable newTeamWallet) public onlyOwner {
         if (_isExcludedFromFees[teamWallet] = true)
            excludeFromFees(teamWallet, false);

        teamWallet = newTeamWallet;

         if (_isExcludedFromFees[teamWallet] = false)
            excludeFromFees(teamWallet, true);
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        require(_isExcludedFromFees[account] != excluded, "Account is already the value of 'excluded'");
        _isExcludedFromFees[account] = excluded;

        emit ExcludeFromFees(account, excluded);
    }
    
    function _setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner {
        require(automatedMarketMakerPairs[pair] != value, "Automated market maker pair is already set to that value");
        automatedMarketMakerPairs[pair] = value;
        emit SetAutomatedMarketMakerPair(pair, value);
    }
   
    function updateSwapRouter(address newAddress) public onlyOwner {
        require(newAddress != address(Router), "The router already has that address");
        Router = IRouter(newAddress);
        address bnbPair = IFactory(Router.factory())
            .getPair(address(this), Router.WETH());

        if(bnbPair == address(0))
            bnbPair = IFactory(Router.factory()).createPair(address(this), Router.WETH());

        if (automatedMarketMakerPairs[bnbPair] != true && bnbPair != address(0) ){
            _setAutomatedMarketMakerPair(bnbPair, true);
        }
          _approve(address(this), address(Router), ~uint256(0));
            
        swapPair = bnbPair;
    }
    
    function isExcludedFromFees(address account) public view returns(bool) {
        return _isExcludedFromFees[account];
    }

    function setSwapAtAmount(uint256 _newSwapAtAmount) external onlyOwner {
        swapAtAmount = _newSwapAtAmount;
    }

    bool private inSwapAndLiquify;
    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }
    
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
          
        // if any account belongs to _isExcludedFromFee account then remove the fee
        if(!_isExcludedFromFees[from] && !_isExcludedFromFees[to]) {
            if(automatedMarketMakerPairs[to] || automatedMarketMakerPairs[from]) {
                if (balanceOf(address(this)) > swapAtAmount && !inSwapAndLiquify && automatedMarketMakerPairs[to]) SwapFees();
                uint256 currentFee = automatedMarketMakerPairs[to] ? sellTax : buyTax;
                uint256 extraFee =(amount * currentFee)/10000;
                if (extraFee > 0) {
                    super._transfer(from, address(this), extraFee);
                    amount = amount - extraFee;
                }   
            }     
        }
      super._transfer(from, to, amount);     
   }

    function SwapFees() private lockTheSwap {

        uint256 tokensToAddLiquidityWith = 0;
        uint256 contractTokenBalance = balanceOf(address(this));
        if(lpSplit > 0) tokensToAddLiquidityWith = contractTokenBalance * lpSplit / 200;
        uint256 toSwap = contractTokenBalance-tokensToAddLiquidityWith;
      
        uint256 initialBalance = address(this).balance;

        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = Router.WETH();

        try Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            toSwap,
            0,
            path,
            address(this),
            block.timestamp
        ) {} catch { revert("Failed to swap to eth");}

        if(lpSplit > 0) {
            uint256 deltaBalance = address(this).balance-initialBalance;
            uint256 bnbToAddLiquidityWith = (deltaBalance * lpSplit) / (200 - lpSplit);
            addLiquidity(tokensToAddLiquidityWith, bnbToAddLiquidityWith);
        }

        if(marketingSplit > 0) {
            uint256 marketingAmount = (address(this).balance * marketingSplit) / (marketingSplit + devSplit);
            payable(marketingWallet).transfer(marketingAmount);
        }
        if(devSplit > 0) payable(teamWallet).transfer(address(this).balance);
                    
    }

    function manualSwapAndBurn() external onlyOwner {
       SwapFees();
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // add the liquidity
        try Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            dead,
            block.timestamp
        ) {} catch {revert("Failed to add liquidity");}
        
    }

        function withdawlBNB() external onlyOwner {
            payable(msg.sender).transfer(address(this).balance);
        }

        function withdrawlToken(address _tokenAddress) external onlyOwner {
            ERC20(_tokenAddress).transfer(msg.sender, ERC20(_tokenAddress).balanceOf(address(this)));
        }   
 

    // to receive Eth From Router when Swapping
    receive() external payable {}
    
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_buyTax","type":"uint256"},{"internalType":"uint256","name":"_sellTax","type":"uint256"},{"internalType":"uint256","name":"_devSplit","type":"uint256"},{"internalType":"uint256","name":"_marketingSplit","type":"uint256"},{"internalType":"uint256","name":"_lpSplit","type":"uint256"},{"internalType":"address","name":"_router","type":"address"},{"internalType":"address","name":"_MarketingWallet","type":"address"},{"internalType":"address","name":"_teamWallet","type":"address"},{"internalType":"uint256","name":"initialSupply","type":"uint256"},{"internalType":"address","name":"realOwner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","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":"Router","outputs":[{"internalType":"contract IRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"_setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"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":"buyTax","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":"devSplit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","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":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpSplit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSwapAndBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingSplit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newBuyTax","type":"uint256"}],"name":"setBuyTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newMarketingWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSellTax","type":"uint256"}],"name":"setSellTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSwapAtAmount","type":"uint256"}],"name":"setSwapAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devSplit","type":"uint256"},{"internalType":"uint256","name":"_marketingSplit","type":"uint256"},{"internalType":"uint256","name":"_lpSplit","type":"uint256"}],"name":"setTaxSplit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newTeamWallet","type":"address"}],"name":"setTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"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":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateSwapRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdawlBNB","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"}],"name":"withdrawlToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052601080546001600160a01b03191661dead179055348015610023575f80fd5b50604051612c98380380612c9883398101604081905261004291610ba7565b6040518060400160405280601081526020016f02134b39023b932b2b7102234b63237960851b8152506040518060400160405280600481526020016302123a2160e51b81525061009e61009961017e60201b60201c565b610182565b60046100aa8382610cc8565b5060056100b78282610cc8565b5050600d80546001600160a01b038088166001600160a01b031992831617909255600e805492871692909116919091179055506100f38a6101d1565b6100fc8961022d565b61010788888861028c565b61011281600161030c565b61011d30600161030c565b6101388161013384670de0b6b3a7640000610d9b565b6103f4565b620f424061014560035490565b61015090600a610d9b565b61015a9190610db8565b600c55610166856104d0565b61016f816108a8565b50505050505050505050610e0a565b3390565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6101d961091e565b60078190556107d081111561022a5760405162461bcd60e51b8152602060048201526012602482015271043616e6e6f742065786365656420323030360741b60448201526064015b60405180910390fd5b50565b61023561091e565b60088190556107d081111561022a5760405162461bcd60e51b815260206004820152601b60248201527f546f74616c4665652063616e6e6f7420657863656564203230303000000000006044820152606401610221565b61029461091e565b6009839055600a829055600b819055806102ae8385610dd7565b6102b89190610dd7565b6064146103075760405162461bcd60e51b815260206004820181905260248201527f53706c697420636f6d62696e6174696f6e206d75737420657175616c203130306044820152606401610221565b505050565b61031461091e565b6001600160a01b0382165f9081526012602052604090205481151560ff9091161515036103965760405162461bcd60e51b815260206004820152602a60248201527f4163636f756e7420697320616c7265616479207468652076616c7565206f6620604482015269276578636c756465642760b01b6064820152608401610221565b6001600160a01b0382165f81815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b03821661044a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610221565b8060035f82825461045b9190610dd7565b90915550506001600160a01b0382165f9081526001602052604081208054839290610487908490610dd7565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6104d861091e565b6006546001600160a01b03908116908216036105425760405162461bcd60e51b815260206004820152602360248201527f54686520726f7574657220616c7265616479206861732074686174206164647260448201526265737360e81b6064820152608401610221565b600680546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b815290515f929163c45a01559160048083019260209291908290030181865afa15801561059b573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105bf9190610dea565b6001600160a01b031663e6a439053060065f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561061e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106429190610dea565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa15801561068b573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106af9190610dea565b90506001600160a01b0381166108275760065f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561070f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107339190610dea565b6001600160a01b031663c9c653963060065f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610792573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107b69190610dea565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610800573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108249190610dea565b90505b6001600160a01b0381165f9081526011602052604090205460ff16151560011480159061085c57506001600160a01b03811615155b1561086c5761086c816001610979565b6006546108859030906001600160a01b03165f19610a69565b600f80546001600160a01b0319166001600160a01b039290921691909117905550565b6108b061091e565b6001600160a01b0381166109155760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610221565b61022a81610182565b5f546001600160a01b031633146109775760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610221565b565b61098161091e565b6001600160a01b0382165f9081526011602052604090205481151560ff909116151503610a165760405162461bcd60e51b815260206004820152603860248201527f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160448201527f6c72656164792073657420746f20746861742076616c756500000000000000006064820152608401610221565b6001600160a01b0382165f81815260116020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316610acb5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610221565b6001600160a01b038216610b2c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610221565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b80516001600160a01b0381168114610ba2575f80fd5b919050565b5f805f805f805f805f806101408b8d031215610bc1575f80fd5b8a51995060208b0151985060408b0151975060608b0151965060808b01519550610bed60a08c01610b8c565b9450610bfb60c08c01610b8c565b9350610c0960e08c01610b8c565b92506101008b01519150610c206101208c01610b8c565b90509295989b9194979a5092959850565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680610c5957607f821691505b602082108103610c7757634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561030757805f5260205f20601f840160051c81016020851015610ca25750805b601f840160051c820191505b81811015610cc1575f8155600101610cae565b5050505050565b81516001600160401b03811115610ce157610ce1610c31565b610cf581610cef8454610c45565b84610c7d565b602080601f831160018114610d28575f8415610d115750858301515b5f19600386901b1c1916600185901b178555610d7f565b5f85815260208120601f198616915b82811015610d5657888601518255948401946001909101908401610d37565b5085821015610d7357878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610db257610db2610d87565b92915050565b5f82610dd257634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115610db257610db2610d87565b5f60208284031215610dfa575f80fd5b610e0382610b8c565b9392505050565b611e8180610e175f395ff3fe608060405260043610610220575f3560e01c806375f0a8741161011e578063b62496f5116100a8578063dc1052e21161006d578063dc1052e214610636578063dd62ed3e14610655578063e799ffb114610674578063f2fde38b14610688578063f6d7eade146106a7575f80fd5b8063b62496f5146105a1578063b9413b51146105cf578063b98b677f146105e3578063c024666814610602578063cc1776d314610621575f80fd5b806395d89b41116100ee57806395d89b4114610511578063a457c2d714610525578063a7f7b36f14610544578063a9059cbb14610563578063ac5cad5614610582575f80fd5b806375f0a874146104a257806386917524146104c15780638cd09d50146104d65780638da5cb5b146104f5575f80fd5b80633f7fc93b116101aa5780635d098b381161016f5780635d098b38146104075780636402511e146104265780636e0a0c8a1461044557806370a082311461045a578063715018a61461048e575f80fd5b80633f7fc93b146103685780634647283d146103875780634f7041a51461039c5780634fbee193146103b157806359927044146103e8575f80fd5b806323b872dd116101f057806323b872dd146102c357806326991cc8146102e2578063313ce5671461031957806339509351146103345780633d90784014610353575f80fd5b806306fdde031461022b578063095ea7b3146102555780631525ff7d1461028457806318160ddd146102a5575f80fd5b3661022757005b5f80fd5b348015610236575f80fd5b5061023f6106c6565b60405161024c9190611b23565b60405180910390f35b348015610260575f80fd5b5061027461026f366004611b6c565b610756565b604051901515815260200161024c565b34801561028f575f80fd5b506102a361029e366004611b96565b61076f565b005b3480156102b0575f80fd5b506003545b60405190815260200161024c565b3480156102ce575f80fd5b506102746102dd366004611bb8565b6107e8565b3480156102ed575f80fd5b50600f54610301906001600160a01b031681565b6040516001600160a01b03909116815260200161024c565b348015610324575f80fd5b506040516012815260200161024c565b34801561033f575f80fd5b5061027461034e366004611b6c565b61080b565b34801561035e575f80fd5b506102b560095481565b348015610373575f80fd5b506102a3610382366004611bf6565b61082c565b348015610392575f80fd5b506102b5600a5481565b3480156103a7575f80fd5b506102b560075481565b3480156103bc575f80fd5b506102746103cb366004611b96565b6001600160a01b03165f9081526012602052604090205460ff1690565b3480156103f3575f80fd5b50600e54610301906001600160a01b031681565b348015610412575f80fd5b506102a3610421366004611b96565b6108b1565b348015610431575f80fd5b506102a3610440366004611c1f565b610929565b348015610450575f80fd5b506102b5600b5481565b348015610465575f80fd5b506102b5610474366004611b96565b6001600160a01b03165f9081526001602052604090205490565b348015610499575f80fd5b506102a3610936565b3480156104ad575f80fd5b50600d54610301906001600160a01b031681565b3480156104cc575f80fd5b506102b5600c5481565b3480156104e1575f80fd5b506102a36104f0366004611c1f565b610949565b348015610500575f80fd5b505f546001600160a01b0316610301565b34801561051c575f80fd5b5061023f6109a8565b348015610530575f80fd5b5061027461053f366004611b6c565b6109b7565b34801561054f575f80fd5b506102a361055e366004611c43565b610a31565b34801561056e575f80fd5b5061027461057d366004611b6c565b610b21565b34801561058d575f80fd5b506102a361059c366004611b96565b610b2e565b3480156105ac575f80fd5b506102746105bb366004611b96565b60116020525f908152604090205460ff1681565b3480156105da575f80fd5b506102a3610c16565b3480156105ee575f80fd5b506102a36105fd366004611b96565b610c26565b34801561060d575f80fd5b506102a361061c366004611c43565b610ffe565b34801561062c575f80fd5b506102b560085481565b348015610641575f80fd5b506102a3610650366004611c1f565b6110e6565b348015610660575f80fd5b506102b561066f366004611c7a565b61113a565b34801561067f575f80fd5b506102a3611164565b348015610693575f80fd5b506102a36106a2366004611b96565b611195565b3480156106b2575f80fd5b50600654610301906001600160a01b031681565b6060600480546106d590611ca6565b80601f016020809104026020016040519081016040528092919081815260200182805461070190611ca6565b801561074c5780601f106107235761010080835404028352916020019161074c565b820191905f5260205f20905b81548152906001019060200180831161072f57829003601f168201915b5050505050905090565b5f3361076381858561120b565b60019150505b92915050565b61077761132e565b600e546001600160a01b03165f908152601260205260409020805460ff19166001179055600e546107b1906001600160a01b03165f610ffe565b600e80546001600160a01b0319166001600160a01b0383169081179091555f908152601260205260409020805460ff191690555b50565b5f336107f5858285611387565b6108008585856113ff565b506001949350505050565b5f3361076381858561081d838361113a565b6108279190611cf2565b61120b565b61083461132e565b6009839055600a829055600b8190558061084e8385611cf2565b6108589190611cf2565b6064146108ac5760405162461bcd60e51b815260206004820181905260248201527f53706c697420636f6d62696e6174696f6e206d75737420657175616c2031303060448201526064015b60405180910390fd5b505050565b6108b961132e565b600d546001600160a01b03165f908152601260205260409020805460ff19166001179055600d546108f3906001600160a01b03165f610ffe565b600d80546001600160a01b0319166001600160a01b0383169081179091555f908152601260205260409020805460ff1916905550565b61093161132e565b600c55565b61093e61132e565b6109475f61154b565b565b61095161132e565b60088190556107d08111156107e55760405162461bcd60e51b815260206004820152601b60248201527f546f74616c4665652063616e6e6f74206578636565642032303030000000000060448201526064016108a3565b6060600580546106d590611ca6565b5f33816109c4828661113a565b905083811015610a245760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016108a3565b610800828686840361120b565b610a3961132e565b6001600160a01b0382165f9081526011602052604090205481151560ff909116151503610ace5760405162461bcd60e51b815260206004820152603860248201527f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160448201527f6c72656164792073657420746f20746861742076616c7565000000000000000060648201526084016108a3565b6001600160a01b0382165f81815260116020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b5f336107638185856113ff565b610b3661132e565b6040516370a0823160e01b81523060048201526001600160a01b0382169063a9059cbb90339083906370a0823190602401602060405180830381865afa158015610b82573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ba69190611d05565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303815f875af1158015610bee573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c129190611d1c565b5050565b610c1e61132e565b61094761159a565b610c2e61132e565b6006546001600160a01b0390811690821603610c985760405162461bcd60e51b815260206004820152602360248201527f54686520726f7574657220616c7265616479206861732074686174206164647260448201526265737360e81b60648201526084016108a3565b600680546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b815290515f929163c45a01559160048083019260209291908290030181865afa158015610cf1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d159190611d37565b6001600160a01b031663e6a439053060065f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d74573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d989190611d37565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa158015610de1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e059190611d37565b90506001600160a01b038116610f7d5760065f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e65573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e899190611d37565b6001600160a01b031663c9c653963060065f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ee8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f0c9190611d37565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610f56573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f7a9190611d37565b90505b6001600160a01b0381165f9081526011602052604090205460ff161515600114801590610fb257506001600160a01b03811615155b15610fc257610fc2816001610a31565b600654610fdb9030906001600160a01b03165f1961120b565b600f80546001600160a01b0319166001600160a01b039290921691909117905550565b61100661132e565b6001600160a01b0382165f9081526012602052604090205481151560ff9091161515036110885760405162461bcd60e51b815260206004820152602a60248201527f4163636f756e7420697320616c7265616479207468652076616c7565206f6620604482015269276578636c756465642760b01b60648201526084016108a3565b6001600160a01b0382165f81815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6110ee61132e565b60078190556107d08111156107e55760405162461bcd60e51b8152602060048201526012602482015271043616e6e6f742065786365656420323030360741b60448201526064016108a3565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b61116c61132e565b60405133904780156108fc02915f818181858888f193505050501580156107e5573d5f803e3d5ffd5b61119d61132e565b6001600160a01b0381166112025760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108a3565b6107e58161154b565b6001600160a01b03831661126d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108a3565b6001600160a01b0382166112ce5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108a3565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f546001600160a01b031633146109475760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108a3565b5f611392848461113a565b90505f1981146113f957818110156113ec5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016108a3565b6113f9848484840361120b565b50505050565b6001600160a01b0383165f9081526012602052604090205460ff1615801561143f57506001600160a01b0382165f9081526012602052604090205460ff16155b15611540576001600160a01b0382165f9081526011602052604090205460ff168061148157506001600160a01b0383165f9081526011602052604090205460ff165b1561154057600c54305f908152600160205260409020541180156114a8575060135460ff16155b80156114cb57506001600160a01b0382165f9081526011602052604090205460ff165b156114d8576114d861159a565b6001600160a01b0382165f9081526011602052604081205460ff166114ff57600754611503565b6008545b90505f6127106115138385611d52565b61151d9190611d69565b9050801561153d57611530853083611878565b61153a8184611d88565b92505b50505b6108ac838383611878565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6013805460ff191660011790555f806115c7306001600160a01b03165f9081526001602052604090205490565b600b54909150156115ef5760c8600b54826115e29190611d52565b6115ec9190611d69565b91505b5f6115fa8383611d88565b60408051600280825260608201835292935047925f9260208301908036833701905050905030815f8151811061163257611632611d9b565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611689573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116ad9190611d37565b816001815181106116c0576116c0611d9b565b6001600160a01b03928316602091820292909201015260065460405163791ac94760e01b815291169063791ac947906117059086905f90869030904290600401611daf565b5f604051808303815f87803b15801561171c575f80fd5b505af192505050801561172d575060015b6117715760405162461bcd60e51b815260206004820152601560248201527408cc2d2d8cac840e8de40e6eec2e040e8de40cae8d605b1b60448201526064016108a3565b600b54156117bc575f6117848347611d88565b90505f600b5460c86117969190611d88565b600b546117a39084611d52565b6117ad9190611d69565b90506117b98782611a44565b50505b600a5415611827575f600954600a546117d59190611cf2565b600a546117e29047611d52565b6117ec9190611d69565b600d546040519192506001600160a01b03169082156108fc029083905f818181858888f19350505050158015611824573d5f803e3d5ffd5b50505b6009541561186757600e546040516001600160a01b03909116904780156108fc02915f818181858888f19350505050158015611865573d5f803e3d5ffd5b505b50506013805460ff19169055505050565b6001600160a01b0383166118dc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016108a3565b6001600160a01b03821661193e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016108a3565b6001600160a01b0383165f90815260016020526040902054818110156119b55760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016108a3565b6001600160a01b038085165f908152600160205260408082208585039055918516815290812080548492906119eb908490611cf2565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a3791815260200190565b60405180910390a36113f9565b60065460105460405163f305d71960e01b8152306004820152602481018590525f6044820181905260648201526001600160a01b0391821660848201524260a482015291169063f305d71990839060c40160606040518083038185885af193505050508015611ad0575060408051601f3d908101601f19168201909252611acd91810190611e20565b60015b611b1c5760405162461bcd60e51b815260206004820152601760248201527f4661696c656420746f20616464206c697175696469747900000000000000000060448201526064016108a3565b5050505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b03811681146107e5575f80fd5b5f8060408385031215611b7d575f80fd5b8235611b8881611b58565b946020939093013593505050565b5f60208284031215611ba6575f80fd5b8135611bb181611b58565b9392505050565b5f805f60608486031215611bca575f80fd5b8335611bd581611b58565b92506020840135611be581611b58565b929592945050506040919091013590565b5f805f60608486031215611c08575f80fd5b505081359360208301359350604090920135919050565b5f60208284031215611c2f575f80fd5b5035919050565b80151581146107e5575f80fd5b5f8060408385031215611c54575f80fd5b8235611c5f81611b58565b91506020830135611c6f81611c36565b809150509250929050565b5f8060408385031215611c8b575f80fd5b8235611c9681611b58565b91506020830135611c6f81611b58565b600181811c90821680611cba57607f821691505b602082108103611cd857634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561076957610769611cde565b5f60208284031215611d15575f80fd5b5051919050565b5f60208284031215611d2c575f80fd5b8151611bb181611c36565b5f60208284031215611d47575f80fd5b8151611bb181611b58565b808202811582820484141761076957610769611cde565b5f82611d8357634e487b7160e01b5f52601260045260245ffd5b500490565b8181038181111561076957610769611cde565b634e487b7160e01b5f52603260045260245ffd5b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015611dff5784516001600160a01b031683529383019391830191600101611dda565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f60608486031215611e32575f80fd5b835192506020840151915060408401519050925092509256fea26469706673582212205b123d063b5cd1f5e47d445ca1fcf292d41c71ce47acee134c37e96980275ee464736f6c63430008190033000000000000000000000000000000000000000000000000000000000000019000000000000000000000000000000000000000000000000000000000000001900000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000003200000000000000000000000000000000000000000000000000000000000000000000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000a9c67543cfc58e2d51957fc0e42cba15dc961bc7000000000000000000000000934cfd56b7159e2140a8733ea9d3883b3b94615c00000000000000000000000000000000000000000000000000003f231e93fc25000000000000000000000000934cfd56b7159e2140a8733ea9d3883b3b94615c

Deployed Bytecode

0x608060405260043610610220575f3560e01c806375f0a8741161011e578063b62496f5116100a8578063dc1052e21161006d578063dc1052e214610636578063dd62ed3e14610655578063e799ffb114610674578063f2fde38b14610688578063f6d7eade146106a7575f80fd5b8063b62496f5146105a1578063b9413b51146105cf578063b98b677f146105e3578063c024666814610602578063cc1776d314610621575f80fd5b806395d89b41116100ee57806395d89b4114610511578063a457c2d714610525578063a7f7b36f14610544578063a9059cbb14610563578063ac5cad5614610582575f80fd5b806375f0a874146104a257806386917524146104c15780638cd09d50146104d65780638da5cb5b146104f5575f80fd5b80633f7fc93b116101aa5780635d098b381161016f5780635d098b38146104075780636402511e146104265780636e0a0c8a1461044557806370a082311461045a578063715018a61461048e575f80fd5b80633f7fc93b146103685780634647283d146103875780634f7041a51461039c5780634fbee193146103b157806359927044146103e8575f80fd5b806323b872dd116101f057806323b872dd146102c357806326991cc8146102e2578063313ce5671461031957806339509351146103345780633d90784014610353575f80fd5b806306fdde031461022b578063095ea7b3146102555780631525ff7d1461028457806318160ddd146102a5575f80fd5b3661022757005b5f80fd5b348015610236575f80fd5b5061023f6106c6565b60405161024c9190611b23565b60405180910390f35b348015610260575f80fd5b5061027461026f366004611b6c565b610756565b604051901515815260200161024c565b34801561028f575f80fd5b506102a361029e366004611b96565b61076f565b005b3480156102b0575f80fd5b506003545b60405190815260200161024c565b3480156102ce575f80fd5b506102746102dd366004611bb8565b6107e8565b3480156102ed575f80fd5b50600f54610301906001600160a01b031681565b6040516001600160a01b03909116815260200161024c565b348015610324575f80fd5b506040516012815260200161024c565b34801561033f575f80fd5b5061027461034e366004611b6c565b61080b565b34801561035e575f80fd5b506102b560095481565b348015610373575f80fd5b506102a3610382366004611bf6565b61082c565b348015610392575f80fd5b506102b5600a5481565b3480156103a7575f80fd5b506102b560075481565b3480156103bc575f80fd5b506102746103cb366004611b96565b6001600160a01b03165f9081526012602052604090205460ff1690565b3480156103f3575f80fd5b50600e54610301906001600160a01b031681565b348015610412575f80fd5b506102a3610421366004611b96565b6108b1565b348015610431575f80fd5b506102a3610440366004611c1f565b610929565b348015610450575f80fd5b506102b5600b5481565b348015610465575f80fd5b506102b5610474366004611b96565b6001600160a01b03165f9081526001602052604090205490565b348015610499575f80fd5b506102a3610936565b3480156104ad575f80fd5b50600d54610301906001600160a01b031681565b3480156104cc575f80fd5b506102b5600c5481565b3480156104e1575f80fd5b506102a36104f0366004611c1f565b610949565b348015610500575f80fd5b505f546001600160a01b0316610301565b34801561051c575f80fd5b5061023f6109a8565b348015610530575f80fd5b5061027461053f366004611b6c565b6109b7565b34801561054f575f80fd5b506102a361055e366004611c43565b610a31565b34801561056e575f80fd5b5061027461057d366004611b6c565b610b21565b34801561058d575f80fd5b506102a361059c366004611b96565b610b2e565b3480156105ac575f80fd5b506102746105bb366004611b96565b60116020525f908152604090205460ff1681565b3480156105da575f80fd5b506102a3610c16565b3480156105ee575f80fd5b506102a36105fd366004611b96565b610c26565b34801561060d575f80fd5b506102a361061c366004611c43565b610ffe565b34801561062c575f80fd5b506102b560085481565b348015610641575f80fd5b506102a3610650366004611c1f565b6110e6565b348015610660575f80fd5b506102b561066f366004611c7a565b61113a565b34801561067f575f80fd5b506102a3611164565b348015610693575f80fd5b506102a36106a2366004611b96565b611195565b3480156106b2575f80fd5b50600654610301906001600160a01b031681565b6060600480546106d590611ca6565b80601f016020809104026020016040519081016040528092919081815260200182805461070190611ca6565b801561074c5780601f106107235761010080835404028352916020019161074c565b820191905f5260205f20905b81548152906001019060200180831161072f57829003601f168201915b5050505050905090565b5f3361076381858561120b565b60019150505b92915050565b61077761132e565b600e546001600160a01b03165f908152601260205260409020805460ff19166001179055600e546107b1906001600160a01b03165f610ffe565b600e80546001600160a01b0319166001600160a01b0383169081179091555f908152601260205260409020805460ff191690555b50565b5f336107f5858285611387565b6108008585856113ff565b506001949350505050565b5f3361076381858561081d838361113a565b6108279190611cf2565b61120b565b61083461132e565b6009839055600a829055600b8190558061084e8385611cf2565b6108589190611cf2565b6064146108ac5760405162461bcd60e51b815260206004820181905260248201527f53706c697420636f6d62696e6174696f6e206d75737420657175616c2031303060448201526064015b60405180910390fd5b505050565b6108b961132e565b600d546001600160a01b03165f908152601260205260409020805460ff19166001179055600d546108f3906001600160a01b03165f610ffe565b600d80546001600160a01b0319166001600160a01b0383169081179091555f908152601260205260409020805460ff1916905550565b61093161132e565b600c55565b61093e61132e565b6109475f61154b565b565b61095161132e565b60088190556107d08111156107e55760405162461bcd60e51b815260206004820152601b60248201527f546f74616c4665652063616e6e6f74206578636565642032303030000000000060448201526064016108a3565b6060600580546106d590611ca6565b5f33816109c4828661113a565b905083811015610a245760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016108a3565b610800828686840361120b565b610a3961132e565b6001600160a01b0382165f9081526011602052604090205481151560ff909116151503610ace5760405162461bcd60e51b815260206004820152603860248201527f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160448201527f6c72656164792073657420746f20746861742076616c7565000000000000000060648201526084016108a3565b6001600160a01b0382165f81815260116020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b5f336107638185856113ff565b610b3661132e565b6040516370a0823160e01b81523060048201526001600160a01b0382169063a9059cbb90339083906370a0823190602401602060405180830381865afa158015610b82573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ba69190611d05565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303815f875af1158015610bee573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c129190611d1c565b5050565b610c1e61132e565b61094761159a565b610c2e61132e565b6006546001600160a01b0390811690821603610c985760405162461bcd60e51b815260206004820152602360248201527f54686520726f7574657220616c7265616479206861732074686174206164647260448201526265737360e81b60648201526084016108a3565b600680546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b815290515f929163c45a01559160048083019260209291908290030181865afa158015610cf1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d159190611d37565b6001600160a01b031663e6a439053060065f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d74573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d989190611d37565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa158015610de1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e059190611d37565b90506001600160a01b038116610f7d5760065f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e65573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e899190611d37565b6001600160a01b031663c9c653963060065f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ee8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f0c9190611d37565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610f56573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f7a9190611d37565b90505b6001600160a01b0381165f9081526011602052604090205460ff161515600114801590610fb257506001600160a01b03811615155b15610fc257610fc2816001610a31565b600654610fdb9030906001600160a01b03165f1961120b565b600f80546001600160a01b0319166001600160a01b039290921691909117905550565b61100661132e565b6001600160a01b0382165f9081526012602052604090205481151560ff9091161515036110885760405162461bcd60e51b815260206004820152602a60248201527f4163636f756e7420697320616c7265616479207468652076616c7565206f6620604482015269276578636c756465642760b01b60648201526084016108a3565b6001600160a01b0382165f81815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6110ee61132e565b60078190556107d08111156107e55760405162461bcd60e51b8152602060048201526012602482015271043616e6e6f742065786365656420323030360741b60448201526064016108a3565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b61116c61132e565b60405133904780156108fc02915f818181858888f193505050501580156107e5573d5f803e3d5ffd5b61119d61132e565b6001600160a01b0381166112025760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108a3565b6107e58161154b565b6001600160a01b03831661126d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108a3565b6001600160a01b0382166112ce5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108a3565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f546001600160a01b031633146109475760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108a3565b5f611392848461113a565b90505f1981146113f957818110156113ec5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016108a3565b6113f9848484840361120b565b50505050565b6001600160a01b0383165f9081526012602052604090205460ff1615801561143f57506001600160a01b0382165f9081526012602052604090205460ff16155b15611540576001600160a01b0382165f9081526011602052604090205460ff168061148157506001600160a01b0383165f9081526011602052604090205460ff165b1561154057600c54305f908152600160205260409020541180156114a8575060135460ff16155b80156114cb57506001600160a01b0382165f9081526011602052604090205460ff165b156114d8576114d861159a565b6001600160a01b0382165f9081526011602052604081205460ff166114ff57600754611503565b6008545b90505f6127106115138385611d52565b61151d9190611d69565b9050801561153d57611530853083611878565b61153a8184611d88565b92505b50505b6108ac838383611878565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6013805460ff191660011790555f806115c7306001600160a01b03165f9081526001602052604090205490565b600b54909150156115ef5760c8600b54826115e29190611d52565b6115ec9190611d69565b91505b5f6115fa8383611d88565b60408051600280825260608201835292935047925f9260208301908036833701905050905030815f8151811061163257611632611d9b565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611689573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116ad9190611d37565b816001815181106116c0576116c0611d9b565b6001600160a01b03928316602091820292909201015260065460405163791ac94760e01b815291169063791ac947906117059086905f90869030904290600401611daf565b5f604051808303815f87803b15801561171c575f80fd5b505af192505050801561172d575060015b6117715760405162461bcd60e51b815260206004820152601560248201527408cc2d2d8cac840e8de40e6eec2e040e8de40cae8d605b1b60448201526064016108a3565b600b54156117bc575f6117848347611d88565b90505f600b5460c86117969190611d88565b600b546117a39084611d52565b6117ad9190611d69565b90506117b98782611a44565b50505b600a5415611827575f600954600a546117d59190611cf2565b600a546117e29047611d52565b6117ec9190611d69565b600d546040519192506001600160a01b03169082156108fc029083905f818181858888f19350505050158015611824573d5f803e3d5ffd5b50505b6009541561186757600e546040516001600160a01b03909116904780156108fc02915f818181858888f19350505050158015611865573d5f803e3d5ffd5b505b50506013805460ff19169055505050565b6001600160a01b0383166118dc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016108a3565b6001600160a01b03821661193e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016108a3565b6001600160a01b0383165f90815260016020526040902054818110156119b55760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016108a3565b6001600160a01b038085165f908152600160205260408082208585039055918516815290812080548492906119eb908490611cf2565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a3791815260200190565b60405180910390a36113f9565b60065460105460405163f305d71960e01b8152306004820152602481018590525f6044820181905260648201526001600160a01b0391821660848201524260a482015291169063f305d71990839060c40160606040518083038185885af193505050508015611ad0575060408051601f3d908101601f19168201909252611acd91810190611e20565b60015b611b1c5760405162461bcd60e51b815260206004820152601760248201527f4661696c656420746f20616464206c697175696469747900000000000000000060448201526064016108a3565b5050505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b03811681146107e5575f80fd5b5f8060408385031215611b7d575f80fd5b8235611b8881611b58565b946020939093013593505050565b5f60208284031215611ba6575f80fd5b8135611bb181611b58565b9392505050565b5f805f60608486031215611bca575f80fd5b8335611bd581611b58565b92506020840135611be581611b58565b929592945050506040919091013590565b5f805f60608486031215611c08575f80fd5b505081359360208301359350604090920135919050565b5f60208284031215611c2f575f80fd5b5035919050565b80151581146107e5575f80fd5b5f8060408385031215611c54575f80fd5b8235611c5f81611b58565b91506020830135611c6f81611c36565b809150509250929050565b5f8060408385031215611c8b575f80fd5b8235611c9681611b58565b91506020830135611c6f81611b58565b600181811c90821680611cba57607f821691505b602082108103611cd857634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561076957610769611cde565b5f60208284031215611d15575f80fd5b5051919050565b5f60208284031215611d2c575f80fd5b8151611bb181611c36565b5f60208284031215611d47575f80fd5b8151611bb181611b58565b808202811582820484141761076957610769611cde565b5f82611d8357634e487b7160e01b5f52601260045260245ffd5b500490565b8181038181111561076957610769611cde565b634e487b7160e01b5f52603260045260245ffd5b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015611dff5784516001600160a01b031683529383019391830191600101611dda565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f60608486031215611e32575f80fd5b835192506020840151915060408401519050925092509256fea26469706673582212205b123d063b5cd1f5e47d445ca1fcf292d41c71ce47acee134c37e96980275ee464736f6c63430008190033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000019000000000000000000000000000000000000000000000000000000000000001900000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000003200000000000000000000000000000000000000000000000000000000000000000000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000a9c67543cfc58e2d51957fc0e42cba15dc961bc7000000000000000000000000934cfd56b7159e2140a8733ea9d3883b3b94615c00000000000000000000000000000000000000000000000000003f231e93fc25000000000000000000000000934cfd56b7159e2140a8733ea9d3883b3b94615c

-----Decoded View---------------
Arg [0] : _buyTax (uint256): 400
Arg [1] : _sellTax (uint256): 400
Arg [2] : _devSplit (uint256): 50
Arg [3] : _marketingSplit (uint256): 50
Arg [4] : _lpSplit (uint256): 0
Arg [5] : _router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [6] : _MarketingWallet (address): 0xA9c67543CfC58e2d51957fC0E42CBA15dC961BC7
Arg [7] : _teamWallet (address): 0x934cfD56b7159e2140A8733eA9D3883B3B94615C
Arg [8] : initialSupply (uint256): 69420069420069
Arg [9] : realOwner (address): 0x934cfD56b7159e2140A8733eA9D3883B3B94615C

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000190
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000190
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000032
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000032
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [6] : 000000000000000000000000a9c67543cfc58e2d51957fc0e42cba15dc961bc7
Arg [7] : 000000000000000000000000934cfd56b7159e2140a8733ea9d3883b3b94615c
Arg [8] : 00000000000000000000000000000000000000000000000000003f231e93fc25
Arg [9] : 000000000000000000000000934cfd56b7159e2140a8733ea9d3883b3b94615c


Deployed Bytecode Sourcemap

20997:7943:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6634:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8985:201;;;;;;;;;;-1:-1:-1;8985:201:0;;;;;:::i;:::-;;:::i;:::-;;;1058:14:1;;1051:22;1033:41;;1021:2;1006:18;8985:201:0;893:187:1;23641:326:0;;;;;;;;;;-1:-1:-1;23641:326:0;;;;;:::i;:::-;;:::i;:::-;;7754:108;;;;;;;;;;-1:-1:-1;7842:12:0;;7754:108;;;1491:25:1;;;1479:2;1464:18;7754:108:0;1345:177:1;9766:295:0;;;;;;;;;;-1:-1:-1;9766:295:0;;;;;:::i;:::-;;:::i;21391:23::-;;;;;;;;;;-1:-1:-1;21391:23:0;;;;-1:-1:-1;;;;;21391:23:0;;;;;;-1:-1:-1;;;;;2152:32:1;;;2134:51;;2122:2;2107:18;21391:23:0;1988:203:1;7596:93:0;;;;;;;;;;-1:-1:-1;7596:93:0;;7679:2;2338:36:1;;2326:2;2311:18;7596:93:0;2196:184:1;10470:238:0;;;;;;;;;;-1:-1:-1;10470:238:0;;;;;:::i;:::-;;:::i;21174:23::-;;;;;;;;;;;;;;;;22949:312;;;;;;;;;;-1:-1:-1;22949:312:0;;;;;:::i;:::-;;:::i;21204:29::-;;;;;;;;;;;;;;;;21117:21;;;;;;;;;;;;;;;;25313:125;;;;;;;;;;-1:-1:-1;25313:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;25402:28:0;25378:4;25402:28;;;:19;:28;;;;;;;;;25313:125;21351:33;;;;;;;;;;-1:-1:-1;21351:33:0;;;;-1:-1:-1;;;;;21351:33:0;;;23269:366;;;;;;;;;;-1:-1:-1;23269:366:0;;;;;:::i;:::-;;:::i;25446:120::-;;;;;;;;;;-1:-1:-1;25446:120:0;;;;;:::i;:::-;;:::i;21240:22::-;;;;;;;;;;;;;;;;7925:127;;;;;;;;;;-1:-1:-1;7925:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;8026:18:0;7999:7;8026:18;;;:9;:18;;;;;;;7925:127;19303:103;;;;;;;;;;;;;:::i;21305:39::-;;;;;;;;;;-1:-1:-1;21305:39:0;;;;-1:-1:-1;;;;;21305:39:0;;;21269:27;;;;;;;;;;;;;;;;22779:164;;;;;;;;;;-1:-1:-1;22779:164:0;;;;;:::i;:::-;;:::i;18655:87::-;;;;;;;;;;-1:-1:-1;18701:7:0;18728:6;-1:-1:-1;;;;;18728:6:0;18655:87;;6853:104;;;;;;;;;;;;;:::i;11211:436::-;;;;;;;;;;-1:-1:-1;11211:436:0;;;;;:::i;:::-;;:::i;24277:315::-;;;;;;;;;;-1:-1:-1;24277:315:0;;;;;:::i;:::-;;:::i;8258:193::-;;;;;;;;;;-1:-1:-1;8258:193:0;;;;;:::i;:::-;;:::i;28658:181::-;;;;;;;;;;-1:-1:-1;28658:181:0;;;;;:::i;:::-;;:::i;21487:58::-;;;;;;;;;;-1:-1:-1;21487:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;28012:76;;;;;;;;;;;;;:::i;24603:698::-;;;;;;;;;;-1:-1:-1;24603:698:0;;;;;:::i;:::-;;:::i;23975:290::-;;;;;;;;;;-1:-1:-1;23975:290:0;;;;;:::i;:::-;;:::i;21145:22::-;;;;;;;;;;;;;;;;22617:150;;;;;;;;;;-1:-1:-1;22617:150:0;;;;;:::i;:::-;;:::i;8514:151::-;;;;;;;;;;-1:-1:-1;8514:151:0;;;;;:::i;:::-;;:::i;28526:120::-;;;;;;;;;;;;;:::i;19561:201::-;;;;;;;;;;-1:-1:-1;19561:201:0;;;;;:::i;:::-;;:::i;21083:21::-;;;;;;;;;;-1:-1:-1;21083:21:0;;;;-1:-1:-1;;;;;21083:21:0;;;6634:100;6688:13;6721:5;6714:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6634:100;:::o;8985:201::-;9068:4;4354:10;9124:32;4354:10;9140:7;9149:6;9124:8;:32::i;:::-;9174:4;9167:11;;;8985:201;;;;;:::o;23641:326::-;18541:13;:11;:13::i;:::-;23748:10:::1;::::0;-1:-1:-1;;;;;23748:10:0::1;23728:31;::::0;;;:19:::1;:31;::::0;;;;:38;;-1:-1:-1;;23728:38:0::1;23762:4;23728:38;::::0;;23797:10:::1;::::0;23781:34:::1;::::0;-1:-1:-1;;;;;23797:10:0::1;;23781:15;:34::i;:::-;23828:10;:26:::0;;-1:-1:-1;;;;;;23828:26:0::1;-1:-1:-1::0;;;;;23828:26:0;::::1;::::0;;::::1;::::0;;;-1:-1:-1;23872:31:0;;;:19:::1;:31;::::0;;;;:39;;-1:-1:-1;;23872:39:0::1;::::0;;23926:33:::1;23641:326:::0;:::o;9766:295::-;9897:4;4354:10;9955:38;9971:4;4354:10;9986:6;9955:15;:38::i;:::-;10004:27;10014:4;10020:2;10024:6;10004:9;:27::i;:::-;-1:-1:-1;10049:4:0;;9766:295;-1:-1:-1;;;;9766:295:0:o;10470:238::-;10558:4;4354:10;10614:64;4354:10;10630:7;10667:10;10639:25;4354:10;10630:7;10639:9;:25::i;:::-;:38;;;;:::i;:::-;10614:8;:64::i;22949:312::-;18541:13;:11;:13::i;:::-;23060:8:::1;:20:::0;;;23091:14:::1;:32:::0;;;23134:7:::1;:18:::0;;;23144:8;23171:27:::1;23108:15:::0;23071:9;23171:27:::1;:::i;:::-;:38;;;;:::i;:::-;23213:3;23171:45;23163:90;;;::::0;-1:-1:-1;;;23163:90:0;;5342:2:1;23163:90:0::1;::::0;::::1;5324:21:1::0;;;5361:18;;;5354:30;5420:34;5400:18;;;5393:62;5472:18;;23163:90:0::1;;;;;;;;;22949:312:::0;;;:::o;23269:366::-;18541:13;:11;:13::i;:::-;23386:15:::1;::::0;-1:-1:-1;;;;;23386:15:0::1;23366:36;::::0;;;:19:::1;:36;::::0;;;;:43;;-1:-1:-1;;23366:43:0::1;23405:4;23366:43;::::0;;23440:15:::1;::::0;23424:39:::1;::::0;-1:-1:-1;;;;;23440:15:0::1;;23424;:39::i;:::-;23476:15;:36:::0;;-1:-1:-1;;;;;;23476:36:0::1;-1:-1:-1::0;;;;;23476:36:0;::::1;::::0;;::::1;::::0;;;-1:-1:-1;23530:36:0;;;:19:::1;:36;::::0;;;;:44;;-1:-1:-1;;23530:44:0::1;::::0;;23641:326;:::o;25446:120::-;18541:13;:11;:13::i;:::-;25527:12:::1;:31:::0;25446:120::o;19303:103::-;18541:13;:11;:13::i;:::-;19368:30:::1;19395:1;19368:18;:30::i;:::-;19303:103::o:0;22779:164::-;18541:13;:11;:13::i;:::-;22846:7:::1;:21:::0;;;22899:4:::1;22884:19:::0;::::1;;22876:59;;;::::0;-1:-1:-1;;;22876:59:0;;5703:2:1;22876:59:0::1;::::0;::::1;5685:21:1::0;5742:2;5722:18;;;5715:30;5781:29;5761:18;;;5754:57;5828:18;;22876:59:0::1;5501:351:1::0;6853:104:0;6909:13;6942:7;6935:14;;;;;:::i;11211:436::-;11304:4;4354:10;11304:4;11387:25;4354:10;11404:7;11387:9;:25::i;:::-;11360:52;;11451:15;11431:16;:35;;11423:85;;;;-1:-1:-1;;;11423:85:0;;6059:2:1;11423:85:0;;;6041:21:1;6098:2;6078:18;;;6071:30;6137:34;6117:18;;;6110:62;-1:-1:-1;;;6188:18:1;;;6181:35;6233:19;;11423:85:0;5857:401:1;11423:85:0;11544:60;11553:5;11560:7;11588:15;11569:16;:34;11544:8;:60::i;24277:315::-;18541:13;:11;:13::i;:::-;-1:-1:-1;;;;;24377:31:0;::::1;;::::0;;;:25:::1;:31;::::0;;;;;:40;::::1;;:31;::::0;;::::1;:40;;::::0;24369:109:::1;;;::::0;-1:-1:-1;;;24369:109:0;;6465:2:1;24369:109:0::1;::::0;::::1;6447:21:1::0;6504:2;6484:18;;;6477:30;6543:34;6523:18;;;6516:62;6614:26;6594:18;;;6587:54;6658:19;;24369:109:0::1;6263:420:1::0;24369:109:0::1;-1:-1:-1::0;;;;;24489:31:0;::::1;;::::0;;;:25:::1;:31;::::0;;;;;:39;;-1:-1:-1;;24489:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;24544:40;;24489:39;;:31;24544:40:::1;::::0;::::1;24277:315:::0;;:::o;8258:193::-;8337:4;4354:10;8393:28;4354:10;8410:2;8414:6;8393:9;:28::i;28658:181::-;18541:13;:11;:13::i;:::-;28781:45:::1;::::0;-1:-1:-1;;;28781:45:0;;28820:4:::1;28781:45;::::0;::::1;2134:51:1::0;-1:-1:-1;;;;;28739:29:0;::::1;::::0;::::1;::::0;28769:10:::1;::::0;28739:29;;28781:30:::1;::::0;2107:18:1;;28781:45:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;28739:88;::::0;-1:-1:-1;;;;;;28739:88:0::1;::::0;;;;;;-1:-1:-1;;;;;7069:32:1;;;28739:88:0::1;::::0;::::1;7051:51:1::0;7118:18;;;7111:34;7024:18;;28739:88:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28658:181:::0;:::o;28012:76::-;18541:13;:11;:13::i;:::-;28070:10:::1;:8;:10::i;24603:698::-:0;18541:13;:11;:13::i;:::-;24707:6:::1;::::0;-1:-1:-1;;;;;24707:6:0;;::::1;24685:29:::0;;::::1;::::0;24677:77:::1;;;::::0;-1:-1:-1;;;24677:77:0;;7608:2:1;24677:77:0::1;::::0;::::1;7590:21:1::0;7647:2;7627:18;;;7620:30;7686:34;7666:18;;;7659:62;-1:-1:-1;;;7737:18:1;;;7730:33;7780:19;;24677:77:0::1;7406:399:1::0;24677:77:0::1;24765:6;:28:::0;;-1:-1:-1;;;;;;24765:28:0::1;-1:-1:-1::0;;;;;24765:28:0;::::1;::::0;;::::1;::::0;;;24831:16:::1;::::0;;-1:-1:-1;;;24831:16:0;;;;-1:-1:-1;;24765:28:0;24831:14:::1;::::0;:16:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;24765:28;24831:16:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;24822:48:0::1;;24879:4;24886:6;;;;;;;;;-1:-1:-1::0;;;;;24886:6:0::1;-1:-1:-1::0;;;;;24886:11:0::1;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24822:78;::::0;-1:-1:-1;;;;;;24822:78:0::1;::::0;;;;;;-1:-1:-1;;;;;8296:15:1;;;24822:78:0::1;::::0;::::1;8278:34:1::0;8348:15;;8328:18;;;8321:43;8213:18;;24822:78:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24804:96:::0;-1:-1:-1;;;;;;24916:21:0;::::1;24913:116;;24971:6;;;;;;;;;-1:-1:-1::0;;;;;24971:6:0::1;-1:-1:-1::0;;;;;24971:14:0::1;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;24962:37:0::1;;25008:4;25015:6;;;;;;;;;-1:-1:-1::0;;;;;25015:6:0::1;-1:-1:-1::0;;;;;25015:11:0::1;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24962:67;::::0;-1:-1:-1;;;;;;24962:67:0::1;::::0;;;;;;-1:-1:-1;;;;;8296:15:1;;;24962:67:0::1;::::0;::::1;8278:34:1::0;8348:15;;8328:18;;;8321:43;8213:18;;24962:67:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24952:77;;24913:116;-1:-1:-1::0;;;;;25046:34:0;::::1;;::::0;;;:25:::1;:34;::::0;;;;;::::1;;:42;;:34:::0;:42:::1;::::0;::::1;::::0;:67:::1;;-1:-1:-1::0;;;;;;25092:21:0;::::1;::::0;::::1;25046:67;25042:143;;;25130:43;25159:7;25168:4;25130:28;:43::i;:::-;25229:6;::::0;25197:53:::1;::::0;25214:4:::1;::::0;-1:-1:-1;;;;;25229:6:0::1;-1:-1:-1::0;;25197:8:0::1;:53::i;:::-;25275:8;:18:::0;;-1:-1:-1;;;;;;25275:18:0::1;-1:-1:-1::0;;;;;25275:18:0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;24603:698:0:o;23975:290::-;18541:13;:11;:13::i;:::-;-1:-1:-1;;;;;24068:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;:40;::::1;;:28;::::0;;::::1;:40;;::::0;24060:95:::1;;;::::0;-1:-1:-1;;;24060:95:0;;8577:2:1;24060:95:0::1;::::0;::::1;8559:21:1::0;8616:2;8596:18;;;8589:30;8655:34;8635:18;;;8628:62;-1:-1:-1;;;8706:18:1;;;8699:40;8756:19;;24060:95:0::1;8375:406:1::0;24060:95:0::1;-1:-1:-1::0;;;;;24166:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;24166:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;24223:34;;1033:41:1;;;24223:34:0::1;::::0;1006:18:1;24223:34:0::1;;;;;;;23975:290:::0;;:::o;22617:150::-;18541:13;:11;:13::i;:::-;22682:6:::1;:19:::0;;;22732:4:::1;22718:18:::0;::::1;;22710:49;;;::::0;-1:-1:-1;;;22710:49:0;;8988:2:1;22710:49:0::1;::::0;::::1;8970:21:1::0;9027:2;9007:18;;;9000:30;-1:-1:-1;;;9046:18:1;;;9039:48;9104:18;;22710:49:0::1;8786:342:1::0;8514:151:0;-1:-1:-1;;;;;8630:18:0;;;8603:7;8630:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8514:151::o;28526:120::-;18541:13;:11;:13::i;:::-;28583:51:::1;::::0;28591:10:::1;::::0;28612:21:::1;28583:51:::0;::::1;;;::::0;::::1;::::0;;;28612:21;28591:10;28583:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;19561:201:::0;18541:13;:11;:13::i;:::-;-1:-1:-1;;;;;19650:22:0;::::1;19642:73;;;::::0;-1:-1:-1;;;19642:73:0;;9335:2:1;19642:73:0::1;::::0;::::1;9317:21:1::0;9374:2;9354:18;;;9347:30;9413:34;9393:18;;;9386:62;-1:-1:-1;;;9464:18:1;;;9457:36;9510:19;;19642:73:0::1;9133:402:1::0;19642:73:0::1;19726:28;19745:8;19726:18;:28::i;14836:380::-:0;-1:-1:-1;;;;;14972:19:0;;14964:68;;;;-1:-1:-1;;;14964:68:0;;9742:2:1;14964:68:0;;;9724:21:1;9781:2;9761:18;;;9754:30;9820:34;9800:18;;;9793:62;-1:-1:-1;;;9871:18:1;;;9864:34;9915:19;;14964:68:0;9540:400:1;14964:68:0;-1:-1:-1;;;;;15051:21:0;;15043:68;;;;-1:-1:-1;;;15043:68:0;;10147:2:1;15043:68:0;;;10129:21:1;10186:2;10166:18;;;10159:30;10225:34;10205:18;;;10198:62;-1:-1:-1;;;10276:18:1;;;10269:32;10318:19;;15043:68:0;9945:398:1;15043:68:0;-1:-1:-1;;;;;15124:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15176:32;;1491:25:1;;;15176:32:0;;1464:18:1;15176:32:0;;;;;;;14836:380;;;:::o;18820:132::-;18701:7;18728:6;-1:-1:-1;;;;;18728:6:0;4354:10;18884:23;18876:68;;;;-1:-1:-1;;;18876:68:0;;10550:2:1;18876:68:0;;;10532:21:1;;;10569:18;;;10562:30;10628:34;10608:18;;;10601:62;10680:18;;18876:68:0;10348:356:1;15507:453:0;15642:24;15669:25;15679:5;15686:7;15669:9;:25::i;:::-;15642:52;;-1:-1:-1;;15709:16:0;:37;15705:248;;15791:6;15771:16;:26;;15763:68;;;;-1:-1:-1;;;15763:68:0;;10911:2:1;15763:68:0;;;10893:21:1;10950:2;10930:18;;;10923:30;10989:31;10969:18;;;10962:59;11038:18;;15763:68:0;10709:353:1;15763:68:0;15875:51;15884:5;15891:7;15919:6;15900:16;:25;15875:8;:51::i;:::-;15631:329;15507:453;;;:::o;25732:906::-;-1:-1:-1;;;;;25957:25:0;;;;;;:19;:25;;;;;;;;25956:26;:54;;;;-1:-1:-1;;;;;;25987:23:0;;;;;;:19;:23;;;;;;;;25986:24;25956:54;25953:632;;;-1:-1:-1;;;;;26030:29:0;;;;;;:25;:29;;;;;;;;;:64;;-1:-1:-1;;;;;;26063:31:0;;;;;;:25;:31;;;;;;;;26030:64;26027:542;;;26146:12;;26137:4;7999:7;8026:18;;;:9;:18;;;;;;26119:39;:60;;;;-1:-1:-1;26163:16:0;;;;26162:17;26119:60;:93;;;;-1:-1:-1;;;;;;26183:29:0;;;;;;:25;:29;;;;;;;;26119:93;26115:109;;;26214:10;:8;:10::i;:::-;-1:-1:-1;;;;;26264:29:0;;26243:18;26264:29;;;:25;:29;;;;;;;;:48;;26306:6;;26264:48;;;26296:7;;26264:48;26243:69;-1:-1:-1;26331:16:0;26371:5;26350:19;26243:69;26350:6;:19;:::i;:::-;26349:27;;;;:::i;:::-;26331:45;-1:-1:-1;26399:12:0;;26395:156;;26436:46;26452:4;26466;26473:8;26436:15;:46::i;:::-;26514:17;26523:8;26514:6;:17;:::i;:::-;26505:26;;26395:156;26096:473;;26027:542;26593:33;26609:4;26615:2;26619:6;26593:15;:33::i;19922:191::-;19996:16;20015:6;;-1:-1:-1;;;;;20032:17:0;;;-1:-1:-1;;;;;;20032:17:0;;;;;;20065:40;;20015:6;;;;;;;20065:40;;19996:16;20065:40;19985:128;19922:191;:::o;26646:1358::-;25642:16;:23;;-1:-1:-1;;25642:23:0;25661:4;25642:23;;;:16;;26777:24:::1;26795:4;-1:-1:-1::0;;;;;8026:18:0;7999:7;8026:18;;;:9;:18;;;;;;;7925:127;26777:24:::1;26815:7;::::0;26746:55;;-1:-1:-1;26815:11:0;26812:79:::1;;26888:3;26878:7;;26855:20;:30;;;;:::i;:::-;:36;;;;:::i;:::-;26828:63;;26812:79;26902:14;26919:45;26940:24:::0;26919:20;:45:::1;:::i;:::-;27066:16;::::0;;27080:1:::1;27066:16:::0;;;;;::::1;::::0;;26902:62;;-1:-1:-1;27008:21:0::1;::::0;26983:22:::1;::::0;27066:16:::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;27066:16:0::1;27042:40;;27111:4;27093;27098:1;27093:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;27093:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;;:23;;;;27137:6:::1;::::0;:13:::1;::::0;;-1:-1:-1;;;27137:13:0;;;;:6;;;::::1;::::0;:11:::1;::::0;:13:::1;::::0;;::::1;::::0;27093:7;;27137:13;;;;;:6;:13:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27127:4;27132:1;27127:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;27127:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;:23;27167:6:::1;::::0;:182:::1;::::0;-1:-1:-1;;;27167:182:0;;:6;::::1;::::0;:57:::1;::::0;:182:::1;::::0;27239:6;;27167::::1;::::0;27276:4;;27303::::1;::::0;27323:15:::1;::::0;27167:182:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;27163:231;;27361:31;::::0;-1:-1:-1;;;27361:31:0;;13046:2:1;27361:31:0::1;::::0;::::1;13028:21:1::0;13085:2;13065:18;;;13058:30;-1:-1:-1;;;13104:18:1;;;13097:51;13165:18;;27361:31:0::1;12844:345:1::0;27163:231:0::1;27409:7;::::0;:11;27406:267:::1;;27437:20;27460:36;27482:14:::0;27460:21:::1;:36;:::i;:::-;27437:59;;27511:29;27577:7;;27571:3;:13;;;;:::i;:::-;27559:7;::::0;27544:22:::1;::::0;:12;:22:::1;:::i;:::-;27543:42;;;;:::i;:::-;27511:74;;27600:61;27613:24;27639:21;27600:12;:61::i;:::-;27422:251;;27406:267;27688:14;::::0;:18;27685:211:::1;;27723:23;27810:8;;27793:14;;:25;;;;:::i;:::-;27774:14;::::0;27750:38:::1;::::0;:21:::1;:38;:::i;:::-;27749:70;;;;:::i;:::-;27842:15;::::0;27834:50:::1;::::0;27723:96;;-1:-1:-1;;;;;;27842:15:0::1;::::0;27834:50;::::1;;;::::0;27723:96;;27842:15:::1;27834:50:::0;27842:15;27834:50;27723:96;27842:15;27834:50;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;27708:188;27685:211;27909:8;::::0;:12;27906:68:::1;;27931:10;::::0;27923:51:::1;::::0;-1:-1:-1;;;;;27931:10:0;;::::1;::::0;27952:21:::1;27923:51:::0;::::1;;;::::0;27931:10:::1;27923:51:::0;27931:10;27923:51;27952:21;27931:10;27923:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;27906:68;-1:-1:-1::0;;25688:16:0;:24;;-1:-1:-1;;25688:24:0;;;-1:-1:-1;;;26646:1358:0:o;12117:671::-;-1:-1:-1;;;;;12248:18:0;;12240:68;;;;-1:-1:-1;;;12240:68:0;;13396:2:1;12240:68:0;;;13378:21:1;13435:2;13415:18;;;13408:30;13474:34;13454:18;;;13447:62;-1:-1:-1;;;13525:18:1;;;13518:35;13570:19;;12240:68:0;13194:401:1;12240:68:0;-1:-1:-1;;;;;12327:16:0;;12319:64;;;;-1:-1:-1;;;12319:64:0;;13802:2:1;12319:64:0;;;13784:21:1;13841:2;13821:18;;;13814:30;13880:34;13860:18;;;13853:62;-1:-1:-1;;;13931:18:1;;;13924:33;13974:19;;12319:64:0;13600:399:1;12319:64:0;-1:-1:-1;;;;;12469:15:0;;12447:19;12469:15;;;:9;:15;;;;;;12503:21;;;;12495:72;;;;-1:-1:-1;;;12495:72:0;;14206:2:1;12495:72:0;;;14188:21:1;14245:2;14225:18;;;14218:30;14284:34;14264:18;;;14257:62;-1:-1:-1;;;14335:18:1;;;14328:36;14381:19;;12495:72:0;14004:402:1;12495:72:0;-1:-1:-1;;;;;12603:15:0;;;;;;;:9;:15;;;;;;12621:20;;;12603:38;;12663:13;;;;;;;;:23;;12635:6;;12603:15;12663:23;;12635:6;;12663:23;:::i;:::-;;;;;;;;12719:2;-1:-1:-1;;;;;12704:26:0;12713:4;-1:-1:-1;;;;;12704:26:0;;12723:6;12704:26;;;;1491:25:1;;1479:2;1464:18;;1345:177;12704:26:0;;;;;;;;12743:37;22949:312;28096:418;28211:6;;28406:4;;28211:240;;-1:-1:-1;;;28211:240:0;;28274:4;28211:240;;;14752:34:1;14802:18;;;14795:34;;;28211:6:0;14845:18:1;;;14838:34;;;14888:18;;;14881:34;-1:-1:-1;;;;;28406:4:0;;;14931:19:1;;;14924:44;28425:15:0;14984:19:1;;;14977:35;28211:6:0;;;:22;;28241:9;;14686:19:1;;28211:240:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28211:240:0;;;;;;;;-1:-1:-1;;28211:240:0;;;;;;;;;;;;:::i;:::-;;;28207:290;;28462:33;;-1:-1:-1;;;28462:33:0;;15536:2:1;28462:33:0;;;15518:21:1;15575:2;15555:18;;;15548:30;15614:25;15594:18;;;15587:53;15657:18;;28462:33:0;15334:347:1;28207:290:0;;;;28096:418;;:::o;14::1:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;423:2;416;412:7;407:2;399:6;395:15;391:29;380:9;376:45;372:54;364:62;;;14:418;;;;:::o;437:131::-;-1:-1:-1;;;;;512:31:1;;502:42;;492:70;;558:1;555;548:12;573:315;641:6;649;702:2;690:9;681:7;677:23;673:32;670:52;;;718:1;715;708:12;670:52;757:9;744:23;776:31;801:5;776:31;:::i;:::-;826:5;878:2;863:18;;;;850:32;;-1:-1:-1;;;573:315:1:o;1085:255::-;1152:6;1205:2;1193:9;1184:7;1180:23;1176:32;1173:52;;;1221:1;1218;1211:12;1173:52;1260:9;1247:23;1279:31;1304:5;1279:31;:::i;:::-;1329:5;1085:255;-1:-1:-1;;;1085:255:1:o;1527:456::-;1604:6;1612;1620;1673:2;1661:9;1652:7;1648:23;1644:32;1641:52;;;1689:1;1686;1679:12;1641:52;1728:9;1715:23;1747:31;1772:5;1747:31;:::i;:::-;1797:5;-1:-1:-1;1854:2:1;1839:18;;1826:32;1867:33;1826:32;1867:33;:::i;:::-;1527:456;;1919:7;;-1:-1:-1;;;1973:2:1;1958:18;;;;1945:32;;1527:456::o;2385:316::-;2462:6;2470;2478;2531:2;2519:9;2510:7;2506:23;2502:32;2499:52;;;2547:1;2544;2537:12;2499:52;-1:-1:-1;;2570:23:1;;;2640:2;2625:18;;2612:32;;-1:-1:-1;2691:2:1;2676:18;;;2663:32;;2385:316;-1:-1:-1;2385:316:1:o;3182:180::-;3241:6;3294:2;3282:9;3273:7;3269:23;3265:32;3262:52;;;3310:1;3307;3300:12;3262:52;-1:-1:-1;3333:23:1;;3182:180;-1:-1:-1;3182:180:1:o;3367:118::-;3453:5;3446:13;3439:21;3432:5;3429:32;3419:60;;3475:1;3472;3465:12;3490:382;3555:6;3563;3616:2;3604:9;3595:7;3591:23;3587:32;3584:52;;;3632:1;3629;3622:12;3584:52;3671:9;3658:23;3690:31;3715:5;3690:31;:::i;:::-;3740:5;-1:-1:-1;3797:2:1;3782:18;;3769:32;3810:30;3769:32;3810:30;:::i;:::-;3859:7;3849:17;;;3490:382;;;;;:::o;3877:388::-;3945:6;3953;4006:2;3994:9;3985:7;3981:23;3977:32;3974:52;;;4022:1;4019;4012:12;3974:52;4061:9;4048:23;4080:31;4105:5;4080:31;:::i;:::-;4130:5;-1:-1:-1;4187:2:1;4172:18;;4159:32;4200:33;4159:32;4200:33;:::i;4493:380::-;4572:1;4568:12;;;;4615;;;4636:61;;4690:4;4682:6;4678:17;4668:27;;4636:61;4743:2;4735:6;4732:14;4712:18;4709:38;4706:161;;4789:10;4784:3;4780:20;4777:1;4770:31;4824:4;4821:1;4814:15;4852:4;4849:1;4842:15;4706:161;;4493:380;;;:::o;4878:127::-;4939:10;4934:3;4930:20;4927:1;4920:31;4970:4;4967:1;4960:15;4994:4;4991:1;4984:15;5010:125;5075:9;;;5096:10;;;5093:36;;;5109:18;;:::i;6688:184::-;6758:6;6811:2;6799:9;6790:7;6786:23;6782:32;6779:52;;;6827:1;6824;6817:12;6779:52;-1:-1:-1;6850:16:1;;6688:184;-1:-1:-1;6688:184:1:o;7156:245::-;7223:6;7276:2;7264:9;7255:7;7251:23;7247:32;7244:52;;;7292:1;7289;7282:12;7244:52;7324:9;7318:16;7343:28;7365:5;7343:28;:::i;7810:251::-;7880:6;7933:2;7921:9;7912:7;7908:23;7904:32;7901:52;;;7949:1;7946;7939:12;7901:52;7981:9;7975:16;8000:31;8025:5;8000:31;:::i;11067:168::-;11140:9;;;11171;;11188:15;;;11182:22;;11168:37;11158:71;;11209:18;;:::i;11240:217::-;11280:1;11306;11296:132;;11350:10;11345:3;11341:20;11338:1;11331:31;11385:4;11382:1;11375:15;11413:4;11410:1;11403:15;11296:132;-1:-1:-1;11442:9:1;;11240:217::o;11462:128::-;11529:9;;;11550:11;;;11547:37;;;11564:18;;:::i;11727:127::-;11788:10;11783:3;11779:20;11776:1;11769:31;11819:4;11816:1;11809:15;11843:4;11840:1;11833:15;11859:980;12121:4;12169:3;12158:9;12154:19;12200:6;12189:9;12182:25;12226:2;12264:6;12259:2;12248:9;12244:18;12237:34;12307:3;12302:2;12291:9;12287:18;12280:31;12331:6;12366;12360:13;12397:6;12389;12382:22;12435:3;12424:9;12420:19;12413:26;;12474:2;12466:6;12462:15;12448:29;;12495:1;12505:195;12519:6;12516:1;12513:13;12505:195;;;12584:13;;-1:-1:-1;;;;;12580:39:1;12568:52;;12675:15;;;;12640:12;;;;12616:1;12534:9;12505:195;;;-1:-1:-1;;;;;;;12756:32:1;;;;12751:2;12736:18;;12729:60;-1:-1:-1;;;12820:3:1;12805:19;12798:35;12717:3;11859:980;-1:-1:-1;;;11859:980:1:o;15023:306::-;15111:6;15119;15127;15180:2;15168:9;15159:7;15155:23;15151:32;15148:52;;;15196:1;15193;15186:12;15148:52;15225:9;15219:16;15209:26;;15275:2;15264:9;15260:18;15254:25;15244:35;;15319:2;15308:9;15304:18;15298:25;15288:35;;15023:306;;;;;:::o

Swarm Source

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