ETH Price: $2,273.38 (-0.74%)

Token

DOGEONE (DOGEONE)
 

Overview

Max Total Supply

440,000,000 DOGEONE

Holders

30

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.764500194640625 DOGEONE

Value
$0.00
0x54cb9b19bc76769988a3d8a800cd1479e0ccee5b
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:
DOGEONE

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-03-13
*/

/**
    Twitter - https://twitter.com/dogeoneerc
    Telegram - https://t.me/dogeoneerc
    Medium - https://medium.com/@dogeonerc
    Website - https://d-one.digital

    ██████╗░░█████╗░░██████╗░███████╗  ░█████╗░███╗░░██╗███████╗
    ██╔══██╗██╔══██╗██╔════╝░██╔════╝  ██╔══██╗████╗░██║██╔════╝
    ██║░░██║██║░░██║██║░░██╗░█████╗░░  ██║░░██║██╔██╗██║█████╗░░
    ██║░░██║██║░░██║██║░░╚██╗██╔══╝░░  ██║░░██║██║╚████║██╔══╝░░
    ██████╔╝╚█████╔╝╚██████╔╝███████╗  ╚█████╔╝██║░╚███║███████╗
    ╚═════╝░░╚════╝░░╚═════╝░╚══════╝  ░╚════╝░╚═╝░░╚══╝╚══════╝
*/
// SPDX-License-Identifier: MIT                                                                               
                                                    
pragma solidity =0.8.18;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

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

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

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

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

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

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

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

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

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);
}


contract ERC20 is Context, IERC20, IERC20Metadata {

    mapping(address => uint256) _balances;

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

    uint256 _totalSupply;
    string _name;
    string _symbol;

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender, 
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        require(_allowances[sender][msg.sender] >= amount, "ERC20: transfer amount exceeds allowance");
        _transfer(sender, recipient, amount);
        _approve(sender, msg.sender, _allowances[sender][msg.sender] - 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 tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }
        emit Transfer(from, to, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");
        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }
        emit Transfer(account, address(0), amount);
    }

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


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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

contract DOGEONE is ERC20, Ownable {

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    address public deployer;
    address public devWallet;
    
    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    bool public limitsInEffect = true;
    bool public swapEnabled = true;
    
    uint256 public buyTotalFees;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;
    
    uint256 public sellTotalFees;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;
    
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

    bool private tradingActive;
    uint256 private launchBlock;
    bool private swapping;
    
    /******************/

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

    // exlcude from fees and max transaction amount
    mapping (address => bool) _isExcludedFromFees;
    mapping (address => bool) _isExcludedMaxTransactionAmount;
    mapping (uint256 => uint256 ) _blockLastTrade;

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

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

    constructor() ERC20("DOGEONE", "DOGEONE") {

        _totalSupply = 440_000_000 * 1e18;
        maxTransactionAmount = _totalSupply * 2 / 100; // 2% maxTransactionAmountTxn
        maxWallet = _totalSupply * 2 / 100; // 2% maxWallet
        swapTokensAtAmount = _totalSupply * 1 / 1000; // 0.1% swap wallet

        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 20;

        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 40;

        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyLiquidityFee + buyDevFee;
        
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellLiquidityFee + sellDevFee;
        
        deployer = address(_msgSender()); // set as deployer
        devWallet = address(0x3cD15a76b18424B960365c0eA5666Ecfba877D98); // set as dev wallet

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

        // exclude from paying fees or having max transaction amount
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
        excludeFromFees(devWallet, true);
        
        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);

        _balances[deployer] = _totalSupply;
        emit Transfer(address(0), deployer, _totalSupply);
    }

    receive() external payable {}

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool){
        limitsInEffect = false;
        return true;
    }
    
     // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool){
  	    require(newAmount >= totalSupply() * 1 / 100000, "Swap amount cannot be lower than 0.001% total supply.");
  	    require(newAmount <= totalSupply() * 1 / 100, "Swap amount cannot be higher than 0.5% total supply.");
  	    swapTokensAtAmount = newAmount;
  	    return true;
  	}
    
    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(newNum >= (totalSupply() * 1 / 100)/1e18, "Cannot set maxTransactionAmount lower than 1%");
        maxTransactionAmount = newNum * (10**18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(newNum >= (totalSupply() * 2 / 100)/1e18, "Cannot set maxWallet lower than 2%");
        maxWallet = newNum * (10**18);
    }
    
    function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }
    
    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner{
        swapEnabled = enabled;
    }

    function initialize() external onlyOwner {
        require(!tradingActive);
        launchBlock = 1;
    }

    function openTrading(uint256 b) external onlyOwner {
        require(!tradingActive && launchBlock != 0);
        launchBlock+=block.number+b;
        tradingActive = true;
    }
    
    function updateBuyFees(uint256 _liquidityFee, uint256 _devFee) external onlyOwner {
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyLiquidityFee + buyDevFee;
        
    }
    
    function updateSellFees(uint256 _liquidityFee, uint256 _devFee) external onlyOwner {
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellLiquidityFee + sellDevFee;
        
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner {
        require(pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs");

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }
 
    function isExcludedFromFees(address account) public view returns(bool) {
        return _isExcludedFromFees[account];
    }
    
    event BoughtEarly(address indexed sniper);

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        
         if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }
        
        if(limitsInEffect){
            if (
                from != deployer &&
                to != deployer && 
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ){
                if(!tradingActive){
                    require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active.");
                }
           
                //when buy
                if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) {
                        require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount.");
                        require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                }
                
                //when sell
                else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) {
                        require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount.");
                }
                else if(!_isExcludedMaxTransactionAmount[to]){
                    require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                }
            }
        }
        
		uint256 contractTokenBalance = balanceOf(address(this));
        bool canSwap = swappable(contractTokenBalance);

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

            swapping = false;
        }
        
        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }
        
        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if(takeFee){
            if(0 < launchBlock && launchBlock < block.number){
                // on buy
                if (automatedMarketMakerPairs[to] && sellTotalFees > 0){
                    fees = amount * sellTotalFees / 100;
                    tokensForLiquidity += fees * sellLiquidityFee / sellTotalFees;
                    tokensForDev += fees * sellDevFee / sellTotalFees;
                }
                // on sell
                else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                    fees = amount * buyTotalFees / 100;
                    tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees;
                    tokensForDev += fees * buyDevFee / buyTotalFees;
                }
            }
            else{
                fees = getFees(from, to, amount);
            }

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

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

    function swappable(uint256 contractTokenBalance) private view returns (bool) {
        return contractTokenBalance >= swapTokensAtAmount && 
            block.number > launchBlock && _blockLastTrade[block.number] < 3;
    }

    function swapTokensForEth(uint256 tokenAmount) private {

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

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

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
        _blockLastTrade[block.number]++;
    }
    
    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            deadAddress,
            block.timestamp
        );
    }

     function getFees(address from, address to, uint256 amount) private returns (uint256 fees) {
        if(automatedMarketMakerPairs[from]){
            fees = amount * 49 / 100;
            tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees;
            tokensForDev += fees * buyDevFee / buyTotalFees;
            emit BoughtEarly(to); //sniper
        }
        else{
            fees = amount * (launchBlock == 0 ? 30 : 70) / 100;   
            tokensForLiquidity += fees * sellLiquidityFee / sellTotalFees;
            tokensForDev += fees * sellDevFee / sellTotalFees;
        }
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity + tokensForDev;
        bool success;
        
        if(contractBalance == 0 || totalTokensToSwap == 0) {return;}

        if(contractBalance > swapTokensAtAmount * 22){
          contractBalance = swapTokensAtAmount * 22;
        }
        
        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = contractBalance * tokensForLiquidity / totalTokensToSwap / 2;
        uint256 amountToSwapForETH = contractBalance - liquidityTokens;
        
        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH); 
        
        uint256 ethBalance = address(this).balance - initialETHBalance;
        
        uint256 ethForDev = ethBalance * tokensForDev / totalTokensToSwap;
        
        uint256 ethForLiquidity = ethBalance - ethForDev;
        
        tokensForLiquidity = 0;
        tokensForDev = 0;
        
        (success,) = address(devWallet).call{value: ethForDev}("");
        
        if(liquidityTokens > 0 && ethForLiquidity > 0){
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, tokensForLiquidity);
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","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":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"deployer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialize","outputs":[],"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":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"b","type":"uint256"}],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600b805461ffff19166101011790553480156200002057600080fd5b50604080518082018252600780825266444f47454f4e4560c81b60208084018290528451808601909552918452908301529060036200006083826200064b565b5060046200006f82826200064b565b5050506000620000846200042a60201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506b016bf59fcb70386cb80000006002818155606491620000f2916200072d565b620000fe91906200074d565b600855600280546064916200011491906200072d565b6200012091906200074d565b600a556002546103e890620001379060016200072d565b6200014391906200074d565b6009556000600d8190556014600e81905581602862000163838362000770565b600c55601082905560118190556200017c818362000770565b600f5560068054336001600160a01b03199182161790915560078054909116733cd15a76b18424b960365c0ea5666ecfba877d98179055737a250d5630b4cf539739df2c5dacb4c659f2488d6080819052620001da8160016200042e565b806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000219573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023f919062000786565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200028d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002b3919062000786565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000301573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000327919062000786565b6001600160a01b031660a081905262000342906001620004a8565b60a051620003529060016200042e565b6200035f306001620004fc565b6200036e61dead6001620004fc565b60075462000387906001600160a01b03166001620004fc565b620003a66200039e6005546001600160a01b031690565b60016200042e565b620003b33060016200042e565b620003c261dead60016200042e565b600254600680546001600160a01b0390811660009081526020818152604080832086905593549351948552929091169290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050505050620007b8565b3390565b6005546001600160a01b031633146200047d5760405162461bcd60e51b8152602060048201819052602482015260008051602062002e2383398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601960205260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260176020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620005475760405162461bcd60e51b8152602060048201819052602482015260008051602062002e23833981519152604482015260640162000474565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620005d157607f821691505b602082108103620005f257634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200064657600081815260208120601f850160051c81016020861015620006215750805b601f850160051c820191505b8181101562000642578281556001016200062d565b5050505b505050565b81516001600160401b03811115620006675762000667620005a6565b6200067f81620006788454620005bc565b84620005f8565b602080601f831160018114620006b757600084156200069e5750858301515b600019600386901b1c1916600185901b17855562000642565b600085815260208120601f198616915b82811015620006e857888601518255948401946001909101908401620006c7565b5085821015620007075787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141762000747576200074762000717565b92915050565b6000826200076b57634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111562000747576200074762000717565b6000602082840312156200079957600080fd5b81516001600160a01b0381168114620007b157600080fd5b9392505050565b60805160a05161261b620008086000396000818161042f0152610d0501526000818161031c01528181611f5f0152818161201801528181612054015281816120ef015261214c015261261b6000f3fe6080604052600436106102815760003560e01c80638ea5220f1161014f578063c18bc195116100c1578063dd62ed3e1161007a578063dd62ed3e1461079f578063e2f45605146107bf578063f11a24d3146107d5578063f2fde38b146107eb578063f63743421461080b578063f8b45b051461082157600080fd5b8063c18bc195146106f3578063c8c8ebe414610713578063d163364914610729578063d257b34f14610749578063d5f3948814610769578063d85ba0631461078957600080fd5b80639fccce32116101135780639fccce3214610637578063a0d82dc51461064d578063a457c2d714610663578063a9059cbb14610683578063b62496f5146106a3578063c0246668146106d357600080fd5b80638ea5220f146105ac578063924de9b7146105cc57806395d89b41146105ec5780639a7a23d6146106015780639c3b4fdc1461062157600080fd5b806349bd5a5e116101f357806370a08231116101ac57806370a08231146104f9578063715018a61461052f578063751039fc146105445780637571336a146105595780638129fc1c146105795780638da5cb5b1461058e57600080fd5b806349bd5a5e1461041d5780634a62bb65146104515780634fbee1931461046b57806366ca9b83146104a45780636a486a8e146104c45780636ddd1713146104da57600080fd5b80631a8145bb116102455780631a8145bb14610375578063203e727e1461038b57806323b872dd146103ab57806327c8f835146103cb578063313ce567146103e157806339509351146103fd57600080fd5b806302dbd8f81461028d57806306fdde03146102af578063095ea7b3146102da5780631694505e1461030a57806318160ddd1461035657600080fd5b3661028857005b600080fd5b34801561029957600080fd5b506102ad6102a83660046121ca565b610837565b005b3480156102bb57600080fd5b506102c4610885565b6040516102d191906121ec565b60405180910390f35b3480156102e657600080fd5b506102fa6102f5366004612252565b610917565b60405190151581526020016102d1565b34801561031657600080fd5b5061033e7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102d1565b34801561036257600080fd5b506002545b6040519081526020016102d1565b34801561038157600080fd5b5061036760125481565b34801561039757600080fd5b506102ad6103a636600461227e565b61092e565b3480156103b757600080fd5b506102fa6103c6366004612297565b610a08565b3480156103d757600080fd5b5061033e61dead81565b3480156103ed57600080fd5b50604051601281526020016102d1565b34801561040957600080fd5b506102fa610418366004612252565b610add565b34801561042957600080fd5b5061033e7f000000000000000000000000000000000000000000000000000000000000000081565b34801561045d57600080fd5b50600b546102fa9060ff1681565b34801561047757600080fd5b506102fa6104863660046122d8565b6001600160a01b031660009081526018602052604090205460ff1690565b3480156104b057600080fd5b506102ad6104bf3660046121ca565b610afa565b3480156104d057600080fd5b50610367600f5481565b3480156104e657600080fd5b50600b546102fa90610100900460ff1681565b34801561050557600080fd5b506103676105143660046122d8565b6001600160a01b031660009081526020819052604090205490565b34801561053b57600080fd5b506102ad610b3f565b34801561055057600080fd5b506102fa610bb3565b34801561056557600080fd5b506102ad610574366004612305565b610bf0565b34801561058557600080fd5b506102ad610c45565b34801561059a57600080fd5b506005546001600160a01b031661033e565b3480156105b857600080fd5b5060075461033e906001600160a01b031681565b3480156105d857600080fd5b506102ad6105e736600461233a565b610c86565b3480156105f857600080fd5b506102c4610cca565b34801561060d57600080fd5b506102ad61061c366004612305565b610cd9565b34801561062d57600080fd5b50610367600e5481565b34801561064357600080fd5b5061036760135481565b34801561065957600080fd5b5061036760115481565b34801561066f57600080fd5b506102fa61067e366004612252565b610db8565b34801561068f57600080fd5b506102fa61069e366004612252565b610e3e565b3480156106af57600080fd5b506102fa6106be3660046122d8565b60176020526000908152604090205460ff1681565b3480156106df57600080fd5b506102ad6106ee366004612305565b610e4b565b3480156106ff57600080fd5b506102ad61070e36600461227e565b610ed4565b34801561071f57600080fd5b5061036760085481565b34801561073557600080fd5b506102ad61074436600461227e565b610fa3565b34801561075557600080fd5b506102fa61076436600461227e565b61101a565b34801561077557600080fd5b5060065461033e906001600160a01b031681565b34801561079557600080fd5b50610367600c5481565b3480156107ab57600080fd5b506103676107ba366004612355565b611170565b3480156107cb57600080fd5b5061036760095481565b3480156107e157600080fd5b50610367600d5481565b3480156107f757600080fd5b506102ad6108063660046122d8565b61119b565b34801561081757600080fd5b5061036760105481565b34801561082d57600080fd5b50610367600a5481565b6005546001600160a01b0316331461086a5760405162461bcd60e51b81526004016108619061238e565b60405180910390fd5b6010829055601181905561087e81836123d9565b600f555050565b606060038054610894906123ec565b80601f01602080910402602001604051908101604052809291908181526020018280546108c0906123ec565b801561090d5780601f106108e25761010080835404028352916020019161090d565b820191906000526020600020905b8154815290600101906020018083116108f057829003601f168201915b5050505050905090565b6000610924338484611286565b5060015b92915050565b6005546001600160a01b031633146109585760405162461bcd60e51b81526004016108619061238e565b670de0b6b3a7640000606461096c60025490565b610977906001612426565b610981919061243d565b61098b919061243d565b8110156109f05760405162461bcd60e51b815260206004820152602d60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526c6c6f776572207468616e20312560981b6064820152608401610861565b610a0281670de0b6b3a7640000612426565b60085550565b6001600160a01b0383166000908152600160209081526040808320338452909152812054821115610a8c5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610861565b610a978484846113aa565b6001600160a01b038416600090815260016020908152604080832033808552925290912054610ad2918691610acd90869061245f565b611286565b5060015b9392505050565b600033610ad2818585610af08383611170565b610acd91906123d9565b6005546001600160a01b03163314610b245760405162461bcd60e51b81526004016108619061238e565b600d829055600e819055610b3881836123d9565b600c555050565b6005546001600160a01b03163314610b695760405162461bcd60e51b81526004016108619061238e565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546000906001600160a01b03163314610be05760405162461bcd60e51b81526004016108619061238e565b50600b805460ff19169055600190565b6005546001600160a01b03163314610c1a5760405162461bcd60e51b81526004016108619061238e565b6001600160a01b03919091166000908152601960205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c6f5760405162461bcd60e51b81526004016108619061238e565b60145460ff1615610c7f57600080fd5b6001601555565b6005546001600160a01b03163314610cb05760405162461bcd60e51b81526004016108619061238e565b600b80549115156101000261ff0019909216919091179055565b606060048054610894906123ec565b6005546001600160a01b03163314610d035760405162461bcd60e51b81526004016108619061238e565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603610daa5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610861565b610db48282611a3f565b5050565b60003381610dc68286611170565b905083811015610e265760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610861565b610e338286868403611286565b506001949350505050565b60006109243384846113aa565b6005546001600160a01b03163314610e755760405162461bcd60e51b81526004016108619061238e565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610efe5760405162461bcd60e51b81526004016108619061238e565b670de0b6b3a76400006064610f1260025490565b610f1d906002612426565b610f27919061243d565b610f31919061243d565b811015610f8b5760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015261322560f01b6064820152608401610861565b610f9d81670de0b6b3a7640000612426565b600a5550565b6005546001600160a01b03163314610fcd5760405162461bcd60e51b81526004016108619061238e565b60145460ff16158015610fe1575060155415155b610fea57600080fd5b610ff481436123d9565b6015600082825461100591906123d9565b90915550506014805460ff1916600117905550565b6005546000906001600160a01b031633146110475760405162461bcd60e51b81526004016108619061238e565b620186a061105460025490565b61105f906001612426565b611069919061243d565b8210156110d65760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610861565b60646110e160025490565b6110ec906001612426565b6110f6919061243d565b8211156111625760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610861565b50600981905560015b919050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b031633146111c55760405162461bcd60e51b81526004016108619061238e565b6001600160a01b03811661122a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610861565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166112e85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610861565b6001600160a01b0382166113495760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610861565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166113d05760405162461bcd60e51b815260040161086190612472565b6001600160a01b0382166113f65760405162461bcd60e51b8152600401610861906124b7565b8060000361140f5761140a83836000611a93565b505050565b600b5460ff1615611779576006546001600160a01b0384811691161480159061144657506006546001600160a01b03838116911614155b801561145a57506001600160a01b03821615155b801561147157506001600160a01b03821661dead14155b8015611480575060165460ff16155b156117795760145460ff16611513576001600160a01b03831660009081526018602052604090205460ff16806114ce57506001600160a01b03821660009081526018602052604090205460ff165b6115135760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610861565b6001600160a01b03831660009081526017602052604090205460ff16801561155457506001600160a01b03821660009081526019602052604090205460ff16155b15611638576008548111156115c95760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610861565b600a546001600160a01b0383166000908152602081905260409020546115ef90836123d9565b11156116335760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610861565b611779565b6001600160a01b03821660009081526017602052604090205460ff16801561167957506001600160a01b03831660009081526019602052604090205460ff16155b156116ef576008548111156116335760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610861565b6001600160a01b03821660009081526019602052604090205460ff1661177957600a546001600160a01b03831660009081526020819052604090205461173590836123d9565b11156117795760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610861565b306000908152602081905260408120549061179382611bbe565b90508080156117a95750600b54610100900460ff165b80156117b8575060165460ff16155b80156117dd57506001600160a01b03851660009081526017602052604090205460ff16155b801561180257506001600160a01b03851660009081526018602052604090205460ff16155b801561182757506001600160a01b03841660009081526018602052604090205460ff16155b1561184c576016805460ff19166001179055611841611bf3565b6016805460ff191690555b6016546001600160a01b03861660009081526018602052604090205460ff9182161591168061189357506001600160a01b03851660009081526018602052604090205460ff165b1561189c575060005b60008115611a2b5760155460001080156118b7575043601554105b156119ff576001600160a01b03861660009081526017602052604090205460ff1680156118e657506000600f54115b1561196e576064600f54866118fb9190612426565b611905919061243d565b9050600f54601054826119189190612426565b611922919061243d565b6012600082825461193391906123d9565b9091555050600f546011546119489083612426565b611952919061243d565b6013600082825461196391906123d9565b90915550611a0d9050565b6001600160a01b03871660009081526017602052604090205460ff16801561199857506000600c54115b156119fa576064600c54866119ad9190612426565b6119b7919061243d565b9050600c54600d54826119ca9190612426565b6119d4919061243d565b601260008282546119e591906123d9565b9091555050600c54600e546119489083612426565b611a0d565b611a0a878787611d9d565b90505b8015611a1e57611a1e873083611a93565b611a28818661245f565b94505b611a36878787611a93565b50505050505050565b6001600160a01b038216600081815260176020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611ab95760405162461bcd60e51b815260040161086190612472565b6001600160a01b038216611adf5760405162461bcd60e51b8152600401610861906124b7565b6001600160a01b03831660009081526020819052604090205481811015611b575760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610861565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b60006009548210158015611bd3575060155443115b80156109285750436000908152601a602052604090205460031192915050565b3060009081526020819052604081205490506000601354601254611c1791906123d9565b90506000821580611c26575081155b15611c3057505050565b600954611c3e906016612426565b831115611c5657600954611c53906016612426565b92505b600060028360125486611c699190612426565b611c73919061243d565b611c7d919061243d565b90506000611c8b828661245f565b905047611c9782611f08565b6000611ca3824761245f565b905060008660135483611cb69190612426565b611cc0919061243d565b90506000611cce828461245f565b6000601281905560138190556007546040519293506001600160a01b031691849181818185875af1925050503d8060008114611d26576040519150601f19603f3d011682016040523d82523d6000602084013e611d2b565b606091505b50909750508515801590611d3f5750600081115b15611d9257611d4e86826120e9565b601254604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b505050505050505050565b6001600160a01b03831660009081526017602052604081205460ff1615611e71576064611dcb836031612426565b611dd5919061243d565b9050600c54600d5482611de89190612426565b611df2919061243d565b60126000828254611e0391906123d9565b9091555050600c54600e54611e189083612426565b611e22919061243d565b60136000828254611e3391906123d9565b90915550506040516001600160a01b038416907fb90badc1cf1c52268f4fa9afb5276aebf640bcca3300cdfc9cf37db17daa13e290600090a2610ad6565b6064601554600014611e84576046611e87565b601e5b611e949060ff1684612426565b611e9e919061243d565b9050600f5460105482611eb19190612426565b611ebb919061243d565b60126000828254611ecc91906123d9565b9091555050600f54601154611ee19083612426565b611eeb919061243d565b60136000828254611efc91906123d9565b90915550509392505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611f3d57611f3d6124fa565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611fbb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fdf9190612510565b81600181518110611ff257611ff26124fa565b60200260200101906001600160a01b031690816001600160a01b03168152505061203d307f000000000000000000000000000000000000000000000000000000000000000084611286565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac9479061209290859060009086903090429060040161252d565b600060405180830381600087803b1580156120ac57600080fd5b505af11580156120c0573d6000803e3d6000fd5b5050436000908152601a602052604081208054935091506120e08361259e565b91905055505050565b612114307f000000000000000000000000000000000000000000000000000000000000000084611286565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af115801561219e573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906121c391906125b7565b5050505050565b600080604083850312156121dd57600080fd5b50508035926020909101359150565b600060208083528351808285015260005b81811015612219578581018301518582016040015282016121fd565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461224f57600080fd5b50565b6000806040838503121561226557600080fd5b82356122708161223a565b946020939093013593505050565b60006020828403121561229057600080fd5b5035919050565b6000806000606084860312156122ac57600080fd5b83356122b78161223a565b925060208401356122c78161223a565b929592945050506040919091013590565b6000602082840312156122ea57600080fd5b8135610ad68161223a565b8035801515811461116b57600080fd5b6000806040838503121561231857600080fd5b82356123238161223a565b9150612331602084016122f5565b90509250929050565b60006020828403121561234c57600080fd5b610ad6826122f5565b6000806040838503121561236857600080fd5b82356123738161223a565b915060208301356123838161223a565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610928576109286123c3565b600181811c9082168061240057607f821691505b60208210810361242057634e487b7160e01b600052602260045260246000fd5b50919050565b8082028115828204841417610928576109286123c3565b60008261245a57634e487b7160e01b600052601260045260246000fd5b500490565b81810381811115610928576109286123c3565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561252257600080fd5b8151610ad68161223a565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561257d5784516001600160a01b031683529383019391830191600101612558565b50506001600160a01b03969096166060850152505050608001529392505050565b6000600182016125b0576125b06123c3565b5060010190565b6000806000606084860312156125cc57600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220eb029dbe75565c685036942899a3704026fed7925764b5449d37164115936cd864736f6c634300081200334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106102815760003560e01c80638ea5220f1161014f578063c18bc195116100c1578063dd62ed3e1161007a578063dd62ed3e1461079f578063e2f45605146107bf578063f11a24d3146107d5578063f2fde38b146107eb578063f63743421461080b578063f8b45b051461082157600080fd5b8063c18bc195146106f3578063c8c8ebe414610713578063d163364914610729578063d257b34f14610749578063d5f3948814610769578063d85ba0631461078957600080fd5b80639fccce32116101135780639fccce3214610637578063a0d82dc51461064d578063a457c2d714610663578063a9059cbb14610683578063b62496f5146106a3578063c0246668146106d357600080fd5b80638ea5220f146105ac578063924de9b7146105cc57806395d89b41146105ec5780639a7a23d6146106015780639c3b4fdc1461062157600080fd5b806349bd5a5e116101f357806370a08231116101ac57806370a08231146104f9578063715018a61461052f578063751039fc146105445780637571336a146105595780638129fc1c146105795780638da5cb5b1461058e57600080fd5b806349bd5a5e1461041d5780634a62bb65146104515780634fbee1931461046b57806366ca9b83146104a45780636a486a8e146104c45780636ddd1713146104da57600080fd5b80631a8145bb116102455780631a8145bb14610375578063203e727e1461038b57806323b872dd146103ab57806327c8f835146103cb578063313ce567146103e157806339509351146103fd57600080fd5b806302dbd8f81461028d57806306fdde03146102af578063095ea7b3146102da5780631694505e1461030a57806318160ddd1461035657600080fd5b3661028857005b600080fd5b34801561029957600080fd5b506102ad6102a83660046121ca565b610837565b005b3480156102bb57600080fd5b506102c4610885565b6040516102d191906121ec565b60405180910390f35b3480156102e657600080fd5b506102fa6102f5366004612252565b610917565b60405190151581526020016102d1565b34801561031657600080fd5b5061033e7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102d1565b34801561036257600080fd5b506002545b6040519081526020016102d1565b34801561038157600080fd5b5061036760125481565b34801561039757600080fd5b506102ad6103a636600461227e565b61092e565b3480156103b757600080fd5b506102fa6103c6366004612297565b610a08565b3480156103d757600080fd5b5061033e61dead81565b3480156103ed57600080fd5b50604051601281526020016102d1565b34801561040957600080fd5b506102fa610418366004612252565b610add565b34801561042957600080fd5b5061033e7f0000000000000000000000008edf7c454b51cff36bb6fd9345ac33751f830a2f81565b34801561045d57600080fd5b50600b546102fa9060ff1681565b34801561047757600080fd5b506102fa6104863660046122d8565b6001600160a01b031660009081526018602052604090205460ff1690565b3480156104b057600080fd5b506102ad6104bf3660046121ca565b610afa565b3480156104d057600080fd5b50610367600f5481565b3480156104e657600080fd5b50600b546102fa90610100900460ff1681565b34801561050557600080fd5b506103676105143660046122d8565b6001600160a01b031660009081526020819052604090205490565b34801561053b57600080fd5b506102ad610b3f565b34801561055057600080fd5b506102fa610bb3565b34801561056557600080fd5b506102ad610574366004612305565b610bf0565b34801561058557600080fd5b506102ad610c45565b34801561059a57600080fd5b506005546001600160a01b031661033e565b3480156105b857600080fd5b5060075461033e906001600160a01b031681565b3480156105d857600080fd5b506102ad6105e736600461233a565b610c86565b3480156105f857600080fd5b506102c4610cca565b34801561060d57600080fd5b506102ad61061c366004612305565b610cd9565b34801561062d57600080fd5b50610367600e5481565b34801561064357600080fd5b5061036760135481565b34801561065957600080fd5b5061036760115481565b34801561066f57600080fd5b506102fa61067e366004612252565b610db8565b34801561068f57600080fd5b506102fa61069e366004612252565b610e3e565b3480156106af57600080fd5b506102fa6106be3660046122d8565b60176020526000908152604090205460ff1681565b3480156106df57600080fd5b506102ad6106ee366004612305565b610e4b565b3480156106ff57600080fd5b506102ad61070e36600461227e565b610ed4565b34801561071f57600080fd5b5061036760085481565b34801561073557600080fd5b506102ad61074436600461227e565b610fa3565b34801561075557600080fd5b506102fa61076436600461227e565b61101a565b34801561077557600080fd5b5060065461033e906001600160a01b031681565b34801561079557600080fd5b50610367600c5481565b3480156107ab57600080fd5b506103676107ba366004612355565b611170565b3480156107cb57600080fd5b5061036760095481565b3480156107e157600080fd5b50610367600d5481565b3480156107f757600080fd5b506102ad6108063660046122d8565b61119b565b34801561081757600080fd5b5061036760105481565b34801561082d57600080fd5b50610367600a5481565b6005546001600160a01b0316331461086a5760405162461bcd60e51b81526004016108619061238e565b60405180910390fd5b6010829055601181905561087e81836123d9565b600f555050565b606060038054610894906123ec565b80601f01602080910402602001604051908101604052809291908181526020018280546108c0906123ec565b801561090d5780601f106108e25761010080835404028352916020019161090d565b820191906000526020600020905b8154815290600101906020018083116108f057829003601f168201915b5050505050905090565b6000610924338484611286565b5060015b92915050565b6005546001600160a01b031633146109585760405162461bcd60e51b81526004016108619061238e565b670de0b6b3a7640000606461096c60025490565b610977906001612426565b610981919061243d565b61098b919061243d565b8110156109f05760405162461bcd60e51b815260206004820152602d60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526c6c6f776572207468616e20312560981b6064820152608401610861565b610a0281670de0b6b3a7640000612426565b60085550565b6001600160a01b0383166000908152600160209081526040808320338452909152812054821115610a8c5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610861565b610a978484846113aa565b6001600160a01b038416600090815260016020908152604080832033808552925290912054610ad2918691610acd90869061245f565b611286565b5060015b9392505050565b600033610ad2818585610af08383611170565b610acd91906123d9565b6005546001600160a01b03163314610b245760405162461bcd60e51b81526004016108619061238e565b600d829055600e819055610b3881836123d9565b600c555050565b6005546001600160a01b03163314610b695760405162461bcd60e51b81526004016108619061238e565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546000906001600160a01b03163314610be05760405162461bcd60e51b81526004016108619061238e565b50600b805460ff19169055600190565b6005546001600160a01b03163314610c1a5760405162461bcd60e51b81526004016108619061238e565b6001600160a01b03919091166000908152601960205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c6f5760405162461bcd60e51b81526004016108619061238e565b60145460ff1615610c7f57600080fd5b6001601555565b6005546001600160a01b03163314610cb05760405162461bcd60e51b81526004016108619061238e565b600b80549115156101000261ff0019909216919091179055565b606060048054610894906123ec565b6005546001600160a01b03163314610d035760405162461bcd60e51b81526004016108619061238e565b7f0000000000000000000000008edf7c454b51cff36bb6fd9345ac33751f830a2f6001600160a01b0316826001600160a01b031603610daa5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610861565b610db48282611a3f565b5050565b60003381610dc68286611170565b905083811015610e265760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610861565b610e338286868403611286565b506001949350505050565b60006109243384846113aa565b6005546001600160a01b03163314610e755760405162461bcd60e51b81526004016108619061238e565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610efe5760405162461bcd60e51b81526004016108619061238e565b670de0b6b3a76400006064610f1260025490565b610f1d906002612426565b610f27919061243d565b610f31919061243d565b811015610f8b5760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015261322560f01b6064820152608401610861565b610f9d81670de0b6b3a7640000612426565b600a5550565b6005546001600160a01b03163314610fcd5760405162461bcd60e51b81526004016108619061238e565b60145460ff16158015610fe1575060155415155b610fea57600080fd5b610ff481436123d9565b6015600082825461100591906123d9565b90915550506014805460ff1916600117905550565b6005546000906001600160a01b031633146110475760405162461bcd60e51b81526004016108619061238e565b620186a061105460025490565b61105f906001612426565b611069919061243d565b8210156110d65760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610861565b60646110e160025490565b6110ec906001612426565b6110f6919061243d565b8211156111625760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610861565b50600981905560015b919050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b031633146111c55760405162461bcd60e51b81526004016108619061238e565b6001600160a01b03811661122a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610861565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166112e85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610861565b6001600160a01b0382166113495760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610861565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166113d05760405162461bcd60e51b815260040161086190612472565b6001600160a01b0382166113f65760405162461bcd60e51b8152600401610861906124b7565b8060000361140f5761140a83836000611a93565b505050565b600b5460ff1615611779576006546001600160a01b0384811691161480159061144657506006546001600160a01b03838116911614155b801561145a57506001600160a01b03821615155b801561147157506001600160a01b03821661dead14155b8015611480575060165460ff16155b156117795760145460ff16611513576001600160a01b03831660009081526018602052604090205460ff16806114ce57506001600160a01b03821660009081526018602052604090205460ff165b6115135760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610861565b6001600160a01b03831660009081526017602052604090205460ff16801561155457506001600160a01b03821660009081526019602052604090205460ff16155b15611638576008548111156115c95760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610861565b600a546001600160a01b0383166000908152602081905260409020546115ef90836123d9565b11156116335760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610861565b611779565b6001600160a01b03821660009081526017602052604090205460ff16801561167957506001600160a01b03831660009081526019602052604090205460ff16155b156116ef576008548111156116335760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610861565b6001600160a01b03821660009081526019602052604090205460ff1661177957600a546001600160a01b03831660009081526020819052604090205461173590836123d9565b11156117795760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610861565b306000908152602081905260408120549061179382611bbe565b90508080156117a95750600b54610100900460ff165b80156117b8575060165460ff16155b80156117dd57506001600160a01b03851660009081526017602052604090205460ff16155b801561180257506001600160a01b03851660009081526018602052604090205460ff16155b801561182757506001600160a01b03841660009081526018602052604090205460ff16155b1561184c576016805460ff19166001179055611841611bf3565b6016805460ff191690555b6016546001600160a01b03861660009081526018602052604090205460ff9182161591168061189357506001600160a01b03851660009081526018602052604090205460ff165b1561189c575060005b60008115611a2b5760155460001080156118b7575043601554105b156119ff576001600160a01b03861660009081526017602052604090205460ff1680156118e657506000600f54115b1561196e576064600f54866118fb9190612426565b611905919061243d565b9050600f54601054826119189190612426565b611922919061243d565b6012600082825461193391906123d9565b9091555050600f546011546119489083612426565b611952919061243d565b6013600082825461196391906123d9565b90915550611a0d9050565b6001600160a01b03871660009081526017602052604090205460ff16801561199857506000600c54115b156119fa576064600c54866119ad9190612426565b6119b7919061243d565b9050600c54600d54826119ca9190612426565b6119d4919061243d565b601260008282546119e591906123d9565b9091555050600c54600e546119489083612426565b611a0d565b611a0a878787611d9d565b90505b8015611a1e57611a1e873083611a93565b611a28818661245f565b94505b611a36878787611a93565b50505050505050565b6001600160a01b038216600081815260176020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611ab95760405162461bcd60e51b815260040161086190612472565b6001600160a01b038216611adf5760405162461bcd60e51b8152600401610861906124b7565b6001600160a01b03831660009081526020819052604090205481811015611b575760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610861565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b60006009548210158015611bd3575060155443115b80156109285750436000908152601a602052604090205460031192915050565b3060009081526020819052604081205490506000601354601254611c1791906123d9565b90506000821580611c26575081155b15611c3057505050565b600954611c3e906016612426565b831115611c5657600954611c53906016612426565b92505b600060028360125486611c699190612426565b611c73919061243d565b611c7d919061243d565b90506000611c8b828661245f565b905047611c9782611f08565b6000611ca3824761245f565b905060008660135483611cb69190612426565b611cc0919061243d565b90506000611cce828461245f565b6000601281905560138190556007546040519293506001600160a01b031691849181818185875af1925050503d8060008114611d26576040519150601f19603f3d011682016040523d82523d6000602084013e611d2b565b606091505b50909750508515801590611d3f5750600081115b15611d9257611d4e86826120e9565b601254604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b505050505050505050565b6001600160a01b03831660009081526017602052604081205460ff1615611e71576064611dcb836031612426565b611dd5919061243d565b9050600c54600d5482611de89190612426565b611df2919061243d565b60126000828254611e0391906123d9565b9091555050600c54600e54611e189083612426565b611e22919061243d565b60136000828254611e3391906123d9565b90915550506040516001600160a01b038416907fb90badc1cf1c52268f4fa9afb5276aebf640bcca3300cdfc9cf37db17daa13e290600090a2610ad6565b6064601554600014611e84576046611e87565b601e5b611e949060ff1684612426565b611e9e919061243d565b9050600f5460105482611eb19190612426565b611ebb919061243d565b60126000828254611ecc91906123d9565b9091555050600f54601154611ee19083612426565b611eeb919061243d565b60136000828254611efc91906123d9565b90915550509392505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611f3d57611f3d6124fa565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611fbb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fdf9190612510565b81600181518110611ff257611ff26124fa565b60200260200101906001600160a01b031690816001600160a01b03168152505061203d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611286565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac9479061209290859060009086903090429060040161252d565b600060405180830381600087803b1580156120ac57600080fd5b505af11580156120c0573d6000803e3d6000fd5b5050436000908152601a602052604081208054935091506120e08361259e565b91905055505050565b612114307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611286565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af115801561219e573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906121c391906125b7565b5050505050565b600080604083850312156121dd57600080fd5b50508035926020909101359150565b600060208083528351808285015260005b81811015612219578581018301518582016040015282016121fd565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461224f57600080fd5b50565b6000806040838503121561226557600080fd5b82356122708161223a565b946020939093013593505050565b60006020828403121561229057600080fd5b5035919050565b6000806000606084860312156122ac57600080fd5b83356122b78161223a565b925060208401356122c78161223a565b929592945050506040919091013590565b6000602082840312156122ea57600080fd5b8135610ad68161223a565b8035801515811461116b57600080fd5b6000806040838503121561231857600080fd5b82356123238161223a565b9150612331602084016122f5565b90509250929050565b60006020828403121561234c57600080fd5b610ad6826122f5565b6000806040838503121561236857600080fd5b82356123738161223a565b915060208301356123838161223a565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610928576109286123c3565b600181811c9082168061240057607f821691505b60208210810361242057634e487b7160e01b600052602260045260246000fd5b50919050565b8082028115828204841417610928576109286123c3565b60008261245a57634e487b7160e01b600052601260045260246000fd5b500490565b81810381811115610928576109286123c3565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561252257600080fd5b8151610ad68161223a565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561257d5784516001600160a01b031683529383019391830191600101612558565b50506001600160a01b03969096166060850152505050608001529392505050565b6000600182016125b0576125b06123c3565b5060010190565b6000806000606084860312156125cc57600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220eb029dbe75565c685036942899a3704026fed7925764b5449d37164115936cd864736f6c63430008120033

Deployed Bytecode Sourcemap

15932:13596:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21513:231;;;;;;;;;;-1:-1:-1;21513:231:0;;;;;:::i;:::-;;:::i;:::-;;6529:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8696:169;;;;;;;;;;-1:-1:-1;8696:169:0;;;;;:::i;:::-;;:::i;:::-;;;1441:14:1;;1434:22;1416:41;;1404:2;1389:18;8696:169:0;1276:187:1;15976:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1657:32:1;;;1639:51;;1627:2;1612:18;15976:51:0;1468:228:1;7649:108:0;;;;;;;;;;-1:-1:-1;7737:12:0;;7649:108;;;1847:25:1;;;1835:2;1820:18;7649:108:0;1701:177:1;16625:33:0;;;;;;;;;;;;;;;;20151:231;;;;;;;;;;-1:-1:-1;20151:231:0;;;;;:::i;:::-;;:::i;9347:410::-;;;;;;;;;;-1:-1:-1;9347:410:0;;;;;:::i;:::-;;:::i;16079:53::-;;;;;;;;;;;;16125:6;16079:53;;7491:93;;;;;;;;;;-1:-1:-1;7491:93:0;;7574:2;2879:36:1;;2867:2;2852:18;7491:93:0;2737:184:1;10166:238:0;;;;;;;;;;-1:-1:-1;10166:238:0;;;;;:::i;:::-;;:::i;16034:38::-;;;;;;;;;;;;;;;16323:33;;;;;;;;;;-1:-1:-1;16323:33:0;;;;;;;;22391:125;;;;;;;;;;-1:-1:-1;22391:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;22480:28:0;22456:4;22480:28;;;:19;:28;;;;;;;;;22391:125;21276:225;;;;;;;;;;-1:-1:-1;21276:225:0;;;;;:::i;:::-;;:::i;16514:28::-;;;;;;;;;;;;;;;;16363:30;;;;;;;;;;-1:-1:-1;16363:30:0;;;;;;;;;;;7820:127;;;;;;;;;;-1:-1:-1;7820:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;7921:18:0;7894:7;7921:18;;;;;;;;;;;;7820:127;15378:148;;;;;;;;;;;;;:::i;19564:120::-;;;;;;;;;;;;;:::i;20614:144::-;;;;;;;;;;-1:-1:-1;20614:144:0;;;;;:::i;:::-;;:::i;20965:109::-;;;;;;;;;;;;;:::i;14736:79::-;;;;;;;;;;-1:-1:-1;14801:6:0;;-1:-1:-1;;;;;14801:6:0;14736:79;;16171:24;;;;;;;;;;-1:-1:-1;16171:24:0;;;;-1:-1:-1;;;;;16171:24:0;;;20858:99;;;;;;;;;;-1:-1:-1;20858:99:0;;;;;:::i;:::-;;:::i;6748:104::-;;;;;;;;;;;;;:::i;21942:244::-;;;;;;;;;;-1:-1:-1;21942:244:0;;;;;:::i;:::-;;:::i;16477:24::-;;;;;;;;;;;;;;;;16665:27;;;;;;;;;;;;;;;;16587:25;;;;;;;;;;;;;;;;10907:434;;;;;;;;;;-1:-1:-1;10907:434:0;;;;;:::i;:::-;;:::i;8160:175::-;;;;;;;;;;-1:-1:-1;8160:175:0;;;;;:::i;:::-;;:::i;16979:58::-;;;;;;;;;;-1:-1:-1;16979:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;21752:182;;;;;;;;;;-1:-1:-1;21752:182:0;;;;;:::i;:::-;;:::i;20390:212::-;;;;;;;;;;-1:-1:-1;20390:212:0;;;;;:::i;:::-;;:::i;16208:35::-;;;;;;;;;;;;;;;;21082:182;;;;;;;;;;-1:-1:-1;21082:182:0;;;;;:::i;:::-;;:::i;19759:380::-;;;;;;;;;;-1:-1:-1;19759:380:0;;;;;:::i;:::-;;:::i;16141:23::-;;;;;;;;;;-1:-1:-1;16141:23:0;;;;-1:-1:-1;;;;;16141:23:0;;;16406:27;;;;;;;;;;;;;;;;8398:151;;;;;;;;;;-1:-1:-1;8398:151:0;;;;;:::i;:::-;;:::i;16250:33::-;;;;;;;;;;;;;;;;16440:30;;;;;;;;;;;;;;;;15681:244;;;;;;;;;;-1:-1:-1;15681:244:0;;;;;:::i;:::-;;:::i;16549:31::-;;;;;;;;;;;;;;;;16290:24;;;;;;;;;;;;;;;;21513:231;14948:6;;-1:-1:-1;;;;;14948:6:0;1601:10;14948:22;14940:67;;;;-1:-1:-1;;;14940:67:0;;;;;;;:::i;:::-;;;;;;;;;21607:16:::1;:32:::0;;;21650:10:::1;:20:::0;;;21697:29:::1;21663:7:::0;21626:13;21697:29:::1;:::i;:::-;21681:13;:45:::0;-1:-1:-1;;21513:231:0:o;6529:100::-;6583:13;6616:5;6609:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6529:100;:::o;8696:169::-;8779:4;8796:39;1601:10;8819:7;8828:6;8796:8;:39::i;:::-;-1:-1:-1;8853:4:0;8696:169;;;;;:::o;20151:231::-;14948:6;;-1:-1:-1;;;;;14948:6:0;1601:10;14948:22;14940:67;;;;-1:-1:-1;;;14940:67:0;;;;;;;:::i;:::-;20269:4:::1;20264:3;20244:13;7737:12:::0;;;7649:108;20244:13:::1;:17;::::0;20260:1:::1;20244:17;:::i;:::-;:23;;;;:::i;:::-;20243:30;;;;:::i;:::-;20233:6;:40;;20225:98;;;::::0;-1:-1:-1;;;20225:98:0;;5846:2:1;20225:98:0::1;::::0;::::1;5828:21:1::0;5885:2;5865:18;;;5858:30;5924:34;5904:18;;;5897:62;-1:-1:-1;;;5975:18:1;;;5968:43;6028:19;;20225:98:0::1;5644:409:1::0;20225:98:0::1;20357:17;:6:::0;20367::::1;20357:17;:::i;:::-;20334:20;:40:::0;-1:-1:-1;20151:231:0:o;9347:410::-;-1:-1:-1;;;;;9513:19:0;;9488:4;9513:19;;;:11;:19;;;;;;;;9533:10;9513:31;;;;;;;;:41;-1:-1:-1;9513:41:0;9505:94;;;;-1:-1:-1;;;9505:94:0;;6260:2:1;9505:94:0;;;6242:21:1;6299:2;6279:18;;;6272:30;6338:34;6318:18;;;6311:62;-1:-1:-1;;;6389:18:1;;;6382:38;6437:19;;9505:94:0;6058:404:1;9505:94:0;9610:36;9620:6;9628:9;9639:6;9610:9;:36::i;:::-;-1:-1:-1;;;;;9686:19:0;;;;;;:11;:19;;;;;;;;9674:10;9686:31;;;;;;;;;9657:70;;9666:6;;9686:40;;9720:6;;9686:40;:::i;:::-;9657:8;:70::i;:::-;-1:-1:-1;9745:4:0;9347:410;;;;;;:::o;10166:238::-;10254:4;1601:10;10310:64;1601:10;10326:7;10363:10;10335:25;1601:10;10326:7;10335:9;:25::i;:::-;:38;;;;:::i;21276:225::-;14948:6;;-1:-1:-1;;;;;14948:6:0;1601:10;14948:22;14940:67;;;;-1:-1:-1;;;14940:67:0;;;;;;;:::i;:::-;21369:15:::1;:31:::0;;;21411:9:::1;:19:::0;;;21456:27:::1;21423:7:::0;21387:13;21456:27:::1;:::i;:::-;21441:12;:42:::0;-1:-1:-1;;21276:225:0:o;15378:148::-;14948:6;;-1:-1:-1;;;;;14948:6:0;1601:10;14948:22;14940:67;;;;-1:-1:-1;;;14940:67:0;;;;;;;:::i;:::-;15469:6:::1;::::0;15448:40:::1;::::0;15485:1:::1;::::0;-1:-1:-1;;;;;15469:6:0::1;::::0;15448:40:::1;::::0;15485:1;;15448:40:::1;15499:6;:19:::0;;-1:-1:-1;;;;;;15499:19:0::1;::::0;;15378:148::o;19564:120::-;14948:6;;19616:4;;-1:-1:-1;;;;;14948:6:0;1601:10;14948:22;14940:67;;;;-1:-1:-1;;;14940:67:0;;;;;;;:::i;:::-;-1:-1:-1;19632:14:0::1;:22:::0;;-1:-1:-1;;19632:22:0::1;::::0;;;19564:120;:::o;20614:144::-;14948:6;;-1:-1:-1;;;;;14948:6:0;1601:10;14948:22;14940:67;;;;-1:-1:-1;;;14940:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20704:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;20704:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;20614:144::o;20965:109::-;14948:6;;-1:-1:-1;;;;;14948:6:0;1601:10;14948:22;14940:67;;;;-1:-1:-1;;;14940:67:0;;;;;;;:::i;:::-;21026:13:::1;::::0;::::1;;21025:14;21017:23;;;::::0;::::1;;21065:1;21051:11;:15:::0;20965:109::o;20858:99::-;14948:6;;-1:-1:-1;;;;;14948:6:0;1601:10;14948:22;14940:67;;;;-1:-1:-1;;;14940:67:0;;;;;;;:::i;:::-;20928:11:::1;:21:::0;;;::::1;;;;-1:-1:-1::0;;20928:21:0;;::::1;::::0;;;::::1;::::0;;20858:99::o;6748:104::-;6804:13;6837:7;6830:14;;;;;:::i;21942:244::-;14948:6;;-1:-1:-1;;;;;14948:6:0;1601:10;14948:22;14940:67;;;;-1:-1:-1;;;14940:67:0;;;;;;;:::i;:::-;22049:13:::1;-1:-1:-1::0;;;;;22041:21:0::1;:4;-1:-1:-1::0;;;;;22041:21:0::1;::::0;22033:91:::1;;;::::0;-1:-1:-1;;;22033:91:0;;6802:2:1;22033:91:0::1;::::0;::::1;6784:21:1::0;6841:2;6821:18;;;6814:30;6880:34;6860:18;;;6853:62;6951:27;6931:18;;;6924:55;6996:19;;22033:91:0::1;6600:421:1::0;22033:91:0::1;22137:41;22166:4;22172:5;22137:28;:41::i;:::-;21942:244:::0;;:::o;10907:434::-;11000:4;1601:10;11000:4;11083:25;1601:10;11100:7;11083:9;:25::i;:::-;11056:52;;11147:15;11127:16;:35;;11119:85;;;;-1:-1:-1;;;11119:85:0;;7228:2:1;11119:85:0;;;7210:21:1;7267:2;7247:18;;;7240:30;7306:34;7286:18;;;7279:62;-1:-1:-1;;;7357:18:1;;;7350:35;7402:19;;11119:85:0;7026:401:1;11119:85:0;11240:60;11249:5;11256:7;11284:15;11265:16;:34;11240:8;:60::i;:::-;-1:-1:-1;11329:4:0;;10907:434;-1:-1:-1;;;;10907:434:0:o;8160:175::-;8246:4;8263:42;1601:10;8287:9;8298:6;8263:9;:42::i;21752:182::-;14948:6;;-1:-1:-1;;;;;14948:6:0;1601:10;14948:22;14940:67;;;;-1:-1:-1;;;14940:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21837:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;21837:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;21892:34;;1416:41:1;;;21892:34:0::1;::::0;1389:18:1;21892:34:0::1;;;;;;;21752:182:::0;;:::o;20390:212::-;14948:6;;-1:-1:-1;;;;;14948:6:0;1601:10;14948:22;14940:67;;;;-1:-1:-1;;;14940:67:0;;;;;;;:::i;:::-;20511:4:::1;20506:3;20486:13;7737:12:::0;;;7649:108;20486:13:::1;:17;::::0;20502:1:::1;20486:17;:::i;:::-;:23;;;;:::i;:::-;20485:30;;;;:::i;:::-;20475:6;:40;;20467:87;;;::::0;-1:-1:-1;;;20467:87:0;;7634:2:1;20467:87:0::1;::::0;::::1;7616:21:1::0;7673:2;7653:18;;;7646:30;7712:34;7692:18;;;7685:62;-1:-1:-1;;;7763:18:1;;;7756:32;7805:19;;20467:87:0::1;7432:398:1::0;20467:87:0::1;20577:17;:6:::0;20587::::1;20577:17;:::i;:::-;20565:9;:29:::0;-1:-1:-1;20390:212:0:o;21082:182::-;14948:6;;-1:-1:-1;;;;;14948:6:0;1601:10;14948:22;14940:67;;;;-1:-1:-1;;;14940:67:0;;;;;;;:::i;:::-;21153:13:::1;::::0;::::1;;21152:14;:34:::0;::::1;;;-1:-1:-1::0;21170:11:0::1;::::0;:16;::::1;21152:34;21144:43;;;::::0;::::1;;21211:14;21224:1:::0;21211:12:::1;:14;:::i;:::-;21198:11;;:27;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;21236:13:0::1;:20:::0;;-1:-1:-1;;21236:20:0::1;21252:4;21236:20;::::0;;-1:-1:-1;21082:182:0:o;19759:380::-;14948:6;;19840:4;;-1:-1:-1;;;;;14948:6:0;1601:10;14948:22;14940:67;;;;-1:-1:-1;;;14940:67:0;;;;;;;:::i;:::-;19896:6:::1;19876:13;7737:12:::0;;;7649:108;19876:13:::1;:17;::::0;19892:1:::1;19876:17;:::i;:::-;:26;;;;:::i;:::-;19863:9;:39;;19855:105;;;::::0;-1:-1:-1;;;19855:105:0;;8037:2:1;19855:105:0::1;::::0;::::1;8019:21:1::0;8076:2;8056:18;;;8049:30;8115:34;8095:18;;;8088:62;-1:-1:-1;;;8166:18:1;;;8159:51;8227:19;;19855:105:0::1;7835:417:1::0;19855:105:0::1;20011:3;19991:13;7737:12:::0;;;7649:108;19991:13:::1;:17;::::0;20007:1:::1;19991:17;:::i;:::-;:23;;;;:::i;:::-;19978:9;:36;;19970:101;;;::::0;-1:-1:-1;;;19970:101:0;;8459:2:1;19970:101:0::1;::::0;::::1;8441:21:1::0;8498:2;8478:18;;;8471:30;8537:34;8517:18;;;8510:62;-1:-1:-1;;;8588:18:1;;;8581:50;8648:19;;19970:101:0::1;8257:416:1::0;19970:101:0::1;-1:-1:-1::0;20081:18:0::1;:30:::0;;;20128:4:::1;15018:1;19759:380:::0;;;:::o;8398:151::-;-1:-1:-1;;;;;8514:18:0;;;8487:7;8514:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8398:151::o;15681:244::-;14948:6;;-1:-1:-1;;;;;14948:6:0;1601:10;14948:22;14940:67;;;;-1:-1:-1;;;14940:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15770:22:0;::::1;15762:73;;;::::0;-1:-1:-1;;;15762:73:0;;8880:2:1;15762:73:0::1;::::0;::::1;8862:21:1::0;8919:2;8899:18;;;8892:30;8958:34;8938:18;;;8931:62;-1:-1:-1;;;9009:18:1;;;9002:36;9055:19;;15762:73:0::1;8678:402:1::0;15762:73:0::1;15872:6;::::0;15851:38:::1;::::0;-1:-1:-1;;;;;15851:38:0;;::::1;::::0;15872:6:::1;::::0;15851:38:::1;::::0;15872:6:::1;::::0;15851:38:::1;15900:6;:17:::0;;-1:-1:-1;;;;;;15900:17:0::1;-1:-1:-1::0;;;;;15900:17:0;;;::::1;::::0;;;::::1;::::0;;15681:244::o;13851:380::-;-1:-1:-1;;;;;13987:19:0;;13979:68;;;;-1:-1:-1;;;13979:68:0;;9287:2:1;13979:68:0;;;9269:21:1;9326:2;9306:18;;;9299:30;9365:34;9345:18;;;9338:62;-1:-1:-1;;;9416:18:1;;;9409:34;9460:19;;13979:68:0;9085:400:1;13979:68:0;-1:-1:-1;;;;;14066:21:0;;14058:68;;;;-1:-1:-1;;;14058:68:0;;9692:2:1;14058:68:0;;;9674:21:1;9731:2;9711:18;;;9704:30;9770:34;9750:18;;;9743:62;-1:-1:-1;;;9821:18:1;;;9814:32;9863:19;;14058:68:0;9490:398:1;14058:68:0;-1:-1:-1;;;;;14139:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14191:32;;1847:25:1;;;14191:32:0;;1820:18:1;14191:32:0;;;;;;;13851:380;;;:::o;22578:3557::-;-1:-1:-1;;;;;22710:18:0;;22702:68;;;;-1:-1:-1;;;22702:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22789:16:0;;22781:64;;;;-1:-1:-1;;;22781:64:0;;;;;;;:::i;:::-;22870:6;22880:1;22870:11;22867:92;;22898:28;22914:4;22920:2;22924:1;22898:15;:28::i;:::-;22578:3557;;;:::o;22867:92::-;22982:14;;;;22979:1261;;;23042:8;;-1:-1:-1;;;;;23034:16:0;;;23042:8;;23034:16;;;;:51;;-1:-1:-1;23077:8:0;;-1:-1:-1;;;;;23071:14:0;;;23077:8;;23071:14;;23034:51;:89;;;;-1:-1:-1;;;;;;23107:16:0;;;;23034:89;:131;;;;-1:-1:-1;;;;;;23144:21:0;;23158:6;23144:21;;23034:131;:161;;;;-1:-1:-1;23187:8:0;;;;23186:9;23034:161;23012:1217;;;23233:13;;;;23229:148;;-1:-1:-1;;;;;23278:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;23307:23:0;;;;;;:19;:23;;;;;;;;23278:52;23270:87;;;;-1:-1:-1;;;23270:87:0;;10905:2:1;23270:87:0;;;10887:21:1;10944:2;10924:18;;;10917:30;-1:-1:-1;;;10963:18:1;;;10956:52;11025:18;;23270:87:0;10703:346:1;23270:87:0;-1:-1:-1;;;;;23440:31:0;;;;;;:25;:31;;;;;;;;:71;;;;-1:-1:-1;;;;;;23476:35:0;;;;;;:31;:35;;;;;;;;23475:36;23440:71;23436:778;;;23558:20;;23548:6;:30;;23540:96;;;;-1:-1:-1;;;23540:96:0;;11256:2:1;23540:96:0;;;11238:21:1;11295:2;11275:18;;;11268:30;11334:34;11314:18;;;11307:62;-1:-1:-1;;;11385:18:1;;;11378:51;11446:19;;23540:96:0;11054:417:1;23540:96:0;23697:9;;-1:-1:-1;;;;;7921:18:0;;7894:7;7921:18;;;;;;;;;;;23671:22;;:6;:22;:::i;:::-;:35;;23663:67;;;;-1:-1:-1;;;23663:67:0;;11678:2:1;23663:67:0;;;11660:21:1;11717:2;11697:18;;;11690:30;-1:-1:-1;;;11736:18:1;;;11729:49;11795:18;;23663:67:0;11476:343:1;23663:67:0;23436:778;;;-1:-1:-1;;;;;23824:29:0;;;;;;:25;:29;;;;;;;;:71;;;;-1:-1:-1;;;;;;23858:37:0;;;;;;:31;:37;;;;;;;;23857:38;23824:71;23820:394;;;23942:20;;23932:6;:30;;23924:97;;;;-1:-1:-1;;;23924:97:0;;12026:2:1;23924:97:0;;;12008:21:1;12065:2;12045:18;;;12038:30;12104:34;12084:18;;;12077:62;-1:-1:-1;;;12155:18:1;;;12148:52;12217:19;;23924:97:0;11824:418:1;23820:394:0;-1:-1:-1;;;;;24068:35:0;;;;;;:31;:35;;;;;;;;24064:150;;24161:9;;-1:-1:-1;;;;;7921:18:0;;7894:7;7921:18;;;;;;;;;;;24135:22;;:6;:22;:::i;:::-;:35;;24127:67;;;;-1:-1:-1;;;24127:67:0;;11678:2:1;24127:67:0;;;11660:21:1;11717:2;11697:18;;;11690:30;-1:-1:-1;;;11736:18:1;;;11729:49;11795:18;;24127:67:0;11476:343:1;24127:67:0;24303:4;24254:28;7921:18;;;;;;;;;;;;24335:31;7921:18;24335:9;:31::i;:::-;24320:46;;24397:7;:35;;;;-1:-1:-1;24421:11:0;;;;;;;24397:35;:61;;;;-1:-1:-1;24450:8:0;;;;24449:9;24397:61;:110;;;;-1:-1:-1;;;;;;24476:31:0;;;;;;:25;:31;;;;;;;;24475:32;24397:110;:153;;;;-1:-1:-1;;;;;;24525:25:0;;;;;;:19;:25;;;;;;;;24524:26;24397:153;:194;;;;-1:-1:-1;;;;;;24568:23:0;;;;;;:19;:23;;;;;;;;24567:24;24397:194;24379:338;;;24618:8;:15;;-1:-1:-1;;24618:15:0;24629:4;24618:15;;;24662:10;:8;:10::i;:::-;24689:8;:16;;-1:-1:-1;;24689:16:0;;;24379:338;24753:8;;-1:-1:-1;;;;;24862:25:0;;24737:12;24862:25;;;:19;:25;;;;;;24753:8;;;;24752:9;;24862:25;;:52;;-1:-1:-1;;;;;;24891:23:0;;;;;;:19;:23;;;;;;;;24862:52;24859:99;;;-1:-1:-1;24941:5:0;24859:99;24978:12;25082:7;25079:1003;;;25112:11;;25108:1;:15;:45;;;;;25141:12;25127:11;;:26;25108:45;25105:820;;;-1:-1:-1;;;;;25204:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;25253:1;25237:13;;:17;25204:50;25200:625;;;25310:3;25294:13;;25285:6;:22;;;;:::i;:::-;:28;;;;:::i;:::-;25278:35;;25384:13;;25365:16;;25358:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;25336:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;25456:13:0;;25443:10;;25436:17;;:4;:17;:::i;:::-;:33;;;;:::i;:::-;25420:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;25105:820:0;;-1:-1:-1;25105:820:0;25200:625;-1:-1:-1;;;;;25543:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;25593:1;25578:12;;:16;25543:51;25540:285;;;25650:3;25635:12;;25626:6;:21;;;;:::i;:::-;:27;;;;:::i;:::-;25619:34;;25723:12;;25705:15;;25698:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;25676:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;25793:12:0;;25781:9;;25774:16;;:4;:16;:::i;25540:285::-;25105:820;;;25884:25;25892:4;25898:2;25902:6;25884:7;:25::i;:::-;25877:32;;25105:820;25944:8;;25941:93;;25976:42;25992:4;26006;26013;25976:15;:42::i;:::-;26056:14;26066:4;26056:14;;:::i;:::-;;;25079:1003;26094:33;26110:4;26116:2;26120:6;26094:15;:33::i;:::-;22691:3444;;;;22578:3557;;;:::o;22194:188::-;-1:-1:-1;;;;;22277:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;22277:39:0;;;;;;;;;;22334:40;;22277:39;;:31;22334:40;;;22194:188;;:::o;11831:701::-;-1:-1:-1;;;;;11928:18:0;;11920:68;;;;-1:-1:-1;;;11920:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12007:16:0;;11999:64;;;;-1:-1:-1;;;11999:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12096:15:0;;12074:19;12096:15;;;;;;;;;;;12130:21;;;;12122:72;;;;-1:-1:-1;;;12122:72:0;;12449:2:1;12122:72:0;;;12431:21:1;12488:2;12468:18;;;12461:30;12527:34;12507:18;;;12500:62;-1:-1:-1;;;12578:18:1;;;12571:36;12624:19;;12122:72:0;12247:402:1;12122:72:0;-1:-1:-1;;;;;12230:15:0;;;:9;:15;;;;;;;;;;;12248:20;;;12230:38;;12448:13;;;;;;;;;;:23;;;;;;12498:26;;1847:25:1;;;12448:13:0;;12498:26;;1820:18:1;12498:26:0;;;;;;;11909:623;11831:701;;;:::o;26143:226::-;26214:4;26262:18;;26238:20;:42;;:86;;;;;26313:11;;26298:12;:26;26238:86;:123;;;;-1:-1:-1;26344:12:0;26328:29;;;;:15;:29;;;;;;26360:1;-1:-1:-1;26231:130:0;26143:226;-1:-1:-1;;26143:226:0:o;28164:1361::-;28247:4;28203:23;7921:18;;;;;;;;;;;28203:50;;28264:25;28313:12;;28292:18;;:33;;;;:::i;:::-;28264:61;-1:-1:-1;28336:12:0;28372:20;;;:46;;-1:-1:-1;28396:22:0;;28372:46;28369:60;;;28421:7;;;28164:1361::o;28369:60::-;28462:18;;:23;;28483:2;28462:23;:::i;:::-;28444:15;:41;28441:111;;;28517:18;;:23;;28538:2;28517:23;:::i;:::-;28499:41;;28441:111;28621:23;28706:1;28686:17;28665:18;;28647:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;28621:86;-1:-1:-1;28718:26:0;28747:33;28621:86;28747:15;:33;:::i;:::-;28718:62;-1:-1:-1;28829:21:0;28863:36;28718:62;28863:16;:36::i;:::-;28921:18;28942:41;28966:17;28942:21;:41;:::i;:::-;28921:62;;29004:17;29052;29037:12;;29024:10;:25;;;;:::i;:::-;:45;;;;:::i;:::-;29004:65;-1:-1:-1;29090:23:0;29116:22;29004:65;29116:10;:22;:::i;:::-;29180:1;29159:18;:22;;;29192:12;:16;;;29250:9;;29242:45;;29090:48;;-1:-1:-1;;;;;;29250:9:0;;29273;;29242:45;29180:1;29242:45;29273:9;29250;29242:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29229:58:0;;-1:-1:-1;;29311:19:0;;;;;:42;;;29352:1;29334:15;:19;29311:42;29308:210;;;29369:46;29382:15;29399;29369:12;:46::i;:::-;29487:18;;29435:71;;;13066:25:1;;;13122:2;13107:18;;13100:34;;;13150:18;;;13143:34;;;;29435:71:0;;;;;;13054:2:1;29435:71:0;;;29308:210;28192:1333;;;;;;;;;28164:1361::o;27548:608::-;-1:-1:-1;;;;;27652:31:0;;27624:12;27652:31;;;:25;:31;;;;;;;;27649:500;;;27720:3;27706:11;:6;27715:2;27706:11;:::i;:::-;:17;;;;:::i;:::-;27699:24;;27785:12;;27767:15;;27760:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;27738:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;27847:12:0;;27835:9;;27828:16;;:4;:16;:::i;:::-;:31;;;;:::i;:::-;27812:12;;:47;;;;;;;:::i;:::-;;;;-1:-1:-1;;27879:15:0;;-1:-1:-1;;;;;27879:15:0;;;;;;;;27649:500;;;27991:3;27961:11;;27976:1;27961:16;:26;;27985:2;27961:26;;;27980:2;27961:26;27951:37;;;;:6;:37;:::i;:::-;:43;;;;:::i;:::-;27944:50;;28060:13;;28041:16;;28034:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;28012:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;28124:13:0;;28111:10;;28104:17;;:4;:17;:::i;:::-;:33;;;;:::i;:::-;28088:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;27548:608:0;;;;;:::o;26377:633::-;26529:16;;;26543:1;26529:16;;;;;;;;26505:21;;26529:16;;;;;;;;;;-1:-1:-1;26529:16:0;26505:40;;26574:4;26556;26561:1;26556:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;26556:23:0;;;-1:-1:-1;;;;;26556:23:0;;;;;26600:15;-1:-1:-1;;;;;26600:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;26590:4;26595:1;26590:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;26590:32:0;;;-1:-1:-1;;;;;26590:32:0;;;;;26635:62;26652:4;26667:15;26685:11;26635:8;:62::i;:::-;26736:224;;-1:-1:-1;;;26736:224:0;;-1:-1:-1;;;;;26736:15:0;:66;;;;:224;;26817:11;;26843:1;;26887:4;;26914;;26934:15;;26736:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;26987:12:0;26971:29;;;;:15;:29;;;;;:31;;;-1:-1:-1;26971:29:0;-1:-1:-1;26971:31:0;;;:::i;:::-;;;;;;26432:578;26377:633;:::o;27022:517::-;27170:62;27187:4;27202:15;27220:11;27170:8;:62::i;:::-;27275:256;;-1:-1:-1;;;27275:256:0;;27347:4;27275:256;;;15174:34:1;15224:18;;;15217:34;;;27393:1:0;15267:18:1;;;15260:34;;;15310:18;;;15303:34;16125:6:0;15353:19:1;;;15346:44;27505:15:0;15406:19:1;;;15399:35;27275:15:0;-1:-1:-1;;;;;27275:31:0;;;;27314:9;;15108:19:1;;27275:256:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;27022:517;;:::o;14:248:1:-;82:6;90;143:2;131:9;122:7;118:23;114:32;111:52;;;159:1;156;149:12;111:52;-1:-1:-1;;182:23:1;;;252:2;237:18;;;224:32;;-1:-1:-1;14:248:1:o;267:548::-;379:4;408:2;437;426:9;419:21;469:6;463:13;512:6;507:2;496:9;492:18;485:34;537:1;547:140;561:6;558:1;555:13;547:140;;;656:14;;;652:23;;646:30;622:17;;;641:2;618:26;611:66;576:10;;547:140;;;551:3;736:1;731:2;722:6;711:9;707:22;703:31;696:42;806:2;799;795:7;790:2;782:6;778:15;774:29;763:9;759:45;755:54;747:62;;;;267:548;;;;:::o;820:131::-;-1:-1:-1;;;;;895:31:1;;885:42;;875:70;;941:1;938;931:12;875:70;820:131;:::o;956:315::-;1024:6;1032;1085:2;1073:9;1064:7;1060:23;1056:32;1053:52;;;1101:1;1098;1091:12;1053:52;1140:9;1127:23;1159:31;1184:5;1159:31;:::i;:::-;1209:5;1261:2;1246:18;;;;1233:32;;-1:-1:-1;;;956:315:1:o;1883:180::-;1942:6;1995:2;1983:9;1974:7;1970:23;1966:32;1963:52;;;2011:1;2008;2001:12;1963:52;-1:-1:-1;2034:23:1;;1883:180;-1:-1:-1;1883:180:1:o;2068:456::-;2145:6;2153;2161;2214:2;2202:9;2193:7;2189:23;2185:32;2182:52;;;2230:1;2227;2220:12;2182:52;2269:9;2256:23;2288:31;2313:5;2288:31;:::i;:::-;2338:5;-1:-1:-1;2395:2:1;2380:18;;2367:32;2408:33;2367:32;2408:33;:::i;:::-;2068:456;;2460:7;;-1:-1:-1;;;2514:2:1;2499:18;;;;2486:32;;2068:456::o;2926:247::-;2985:6;3038:2;3026:9;3017:7;3013:23;3009:32;3006:52;;;3054:1;3051;3044:12;3006:52;3093:9;3080:23;3112:31;3137:5;3112:31;:::i;3178:160::-;3243:20;;3299:13;;3292:21;3282:32;;3272:60;;3328:1;3325;3318:12;3343:315;3408:6;3416;3469:2;3457:9;3448:7;3444:23;3440:32;3437:52;;;3485:1;3482;3475:12;3437:52;3524:9;3511:23;3543:31;3568:5;3543:31;:::i;:::-;3593:5;-1:-1:-1;3617:35:1;3648:2;3633:18;;3617:35;:::i;:::-;3607:45;;3343:315;;;;;:::o;3663:180::-;3719:6;3772:2;3760:9;3751:7;3747:23;3743:32;3740:52;;;3788:1;3785;3778:12;3740:52;3811:26;3827:9;3811:26;:::i;3848:388::-;3916:6;3924;3977:2;3965:9;3956:7;3952:23;3948:32;3945:52;;;3993:1;3990;3983:12;3945:52;4032:9;4019:23;4051:31;4076:5;4051:31;:::i;:::-;4101:5;-1:-1:-1;4158:2:1;4143:18;;4130:32;4171:33;4130:32;4171:33;:::i;:::-;4223:7;4213:17;;;3848:388;;;;;:::o;4241:356::-;4443:2;4425:21;;;4462:18;;;4455:30;4521:34;4516:2;4501:18;;4494:62;4588:2;4573:18;;4241:356::o;4602:127::-;4663:10;4658:3;4654:20;4651:1;4644:31;4694:4;4691:1;4684:15;4718:4;4715:1;4708:15;4734:125;4799:9;;;4820:10;;;4817:36;;;4833:18;;:::i;4864:380::-;4943:1;4939:12;;;;4986;;;5007:61;;5061:4;5053:6;5049:17;5039:27;;5007:61;5114:2;5106:6;5103:14;5083:18;5080:38;5077:161;;5160:10;5155:3;5151:20;5148:1;5141:31;5195:4;5192:1;5185:15;5223:4;5220:1;5213:15;5077:161;;4864:380;;;:::o;5249:168::-;5322:9;;;5353;;5370:15;;;5364:22;;5350:37;5340:71;;5391:18;;:::i;5422:217::-;5462:1;5488;5478:132;;5532:10;5527:3;5523:20;5520:1;5513:31;5567:4;5564:1;5557:15;5595:4;5592:1;5585:15;5478:132;-1:-1:-1;5624:9:1;;5422:217::o;6467:128::-;6534:9;;;6555:11;;;6552:37;;;6569:18;;:::i;9893:401::-;10095:2;10077:21;;;10134:2;10114:18;;;10107:30;10173:34;10168:2;10153:18;;10146:62;-1:-1:-1;;;10239:2:1;10224:18;;10217:35;10284:3;10269:19;;9893:401::o;10299:399::-;10501:2;10483:21;;;10540:2;10520:18;;;10513:30;10579:34;10574:2;10559:18;;10552:62;-1:-1:-1;;;10645:2:1;10630:18;;10623:33;10688:3;10673:19;;10299:399::o;13320:127::-;13381:10;13376:3;13372:20;13369:1;13362:31;13412:4;13409:1;13402:15;13436:4;13433:1;13426:15;13452:251;13522:6;13575:2;13563:9;13554:7;13550:23;13546:32;13543:52;;;13591:1;13588;13581:12;13543:52;13623:9;13617:16;13642:31;13667:5;13642:31;:::i;13708:980::-;13970:4;14018:3;14007:9;14003:19;14049:6;14038:9;14031:25;14075:2;14113:6;14108:2;14097:9;14093:18;14086:34;14156:3;14151:2;14140:9;14136:18;14129:31;14180:6;14215;14209:13;14246:6;14238;14231:22;14284:3;14273:9;14269:19;14262:26;;14323:2;14315:6;14311:15;14297:29;;14344:1;14354:195;14368:6;14365:1;14362:13;14354:195;;;14433:13;;-1:-1:-1;;;;;14429:39:1;14417:52;;14524:15;;;;14489:12;;;;14465:1;14383:9;14354:195;;;-1:-1:-1;;;;;;;14605:32:1;;;;14600:2;14585:18;;14578:60;-1:-1:-1;;;14669:3:1;14654:19;14647:35;14566:3;13708:980;-1:-1:-1;;;13708:980:1:o;14693:135::-;14732:3;14753:17;;;14750:43;;14773:18;;:::i;:::-;-1:-1:-1;14820:1:1;14809:13;;14693:135::o;15445:306::-;15533:6;15541;15549;15602:2;15590:9;15581:7;15577:23;15573:32;15570:52;;;15618:1;15615;15608:12;15570:52;15647:9;15641:16;15631:26;;15697:2;15686:9;15682:18;15676:25;15666:35;;15741:2;15730:9;15726:18;15720:25;15710:35;;15445:306;;;;;:::o

Swarm Source

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