ETH Price: $3,292.65 (+1.16%)
Gas: 5 Gwei

Token

Naruto Run (Naruto_Run)
 

Overview

Max Total Supply

1,000,000,000,000 Naruto_Run

Holders

64

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
3,857,628,969.030072065 Naruto_Run

Value
$0.00
0x5A9eF14B49a991082Ac388f071dB5A7E9af2D7ea
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:
NarutoRun

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-26
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;
/*

888b    888                           888                 8888888b.                    
8888b   888                           888                 888   Y88b                   
88888b  888                           888                 888    888                   
888Y88b 888  8888b.  888d888 888  888 888888 .d88b.       888   d88P 888  888 88888b.  
888 Y88b888     "88b 888P"   888  888 888   d88""88b      8888888P"  888  888 888 "88b 
888  Y88888 .d888888 888     888  888 888   888  888      888 T88b   888  888 888  888 
888   Y8888 888  888 888     Y88b 888 Y88b. Y88..88P      888  T88b  Y88b 888 888  888 
888    Y888 "Y888888 888      "Y88888  "Y888 "Y88P"       888   T88b  "Y88888 888  888 
                                                                                      

Naruto Run is one piece of a larger Metaverse of tokens to come.

100% LP Tokens Burnt
40% of Supply Burnt
No Team Tokens
Continuous Marketing & Calls
Giveaways for token holders

Telegram:
https://t.me/NarutoRunToken

Website:
https://www.narutoruntoken.com
 */

abstract contract Context {

    function _msgSender() internal virtual view returns (address payable) {

        return msg.sender;

    }



    function _msgData() internal virtual view returns (bytes memory) {

        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691

        return msg.data;
    }

}


interface IERC20 {

    function totalSupply() external view returns (uint256);


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


    function transfer(address recipient, uint256 amount)

        external

        returns (bool);


    function allowance(address owner, address spender)

        external

        view

        returns (uint256);


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


    event Transfer(address indexed from, address indexed to, uint256 value);


    event Approval(

        address indexed owner,

        address indexed spender,

        uint256 value

    );

}

library SafeMath {

    function add(uint256 a, uint256 b) internal pure returns (uint256) {

        uint256 c = a + b;

        require(c >= a, "SafeMath: addition overflow");

        return c;

    }


    function sub(uint256 a, uint256 b) internal pure returns (uint256) {

        return sub(a, b, "SafeMath: subtraction overflow");

    }
    function sub(

        uint256 a,

        uint256 b,

        string memory errorMessage

    ) internal pure returns (uint256) {

        require(b <= a, errorMessage);

        uint256 c = a - b;

        return c;

    }

    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) {

            return 0;
        }

        uint256 c = a * b;

        require(c / a == b, "SafeMath: multiplication overflow");

        return c;

    }

    function div(uint256 a, uint256 b) internal pure returns (uint256) {

        return div(a, b, "SafeMath: division by zero");

    }

    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage

    ) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold
        return c;
    }

    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }
    
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }

    function ceil(uint256 a, uint256 m) internal pure returns (uint256) {
    uint256 c = add(a,m);
    uint256 d = sub(c,1);
    return mul(div(d,m),m);
  }
}

library Address {

    function isContract(address account) internal view returns (bool) {

        bytes32 codehash;
        bytes32 accountHash
         = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        assembly {
            codehash := extcodehash(account)
        }
        return (codehash != accountHash && codehash != 0x0);
    }


    function sendValue(address payable recipient, uint256 amount) internal {
        require(
            address(this).balance >= amount,
            "Address: insufficient balance"
        );

        (bool success, ) = recipient.call{value: amount}("");
        require(
            success,
            "Address: unable to send value, recipient may have reverted"
        );
    }

 function functionCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return functionCall(target, data, "Address: low-level call failed");
    }


    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return _functionCallWithValue(target, data, 0, errorMessage);
    }

     function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return
            functionCallWithValue(
                target,
                data,
                value,
                "Address: low-level call with value failed"
            );
    }


    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {

        require(
            address(this).balance >= value,
            "Address: insufficient balance for call"
        );

        return _functionCallWithValue(target, data, value, errorMessage);
    }



    function _functionCallWithValue(
        address target,
        bytes memory data,
        uint256 weiValue,
        string memory errorMessage
    ) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");
        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{value: weiValue}(
            data
        );
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}


contract Ownable is Context {
    address private _owner;
    event OwnershipTransferred(
        address indexed previousOwner,
        address indexed newOwner
    );
    
    constructor() internal {
        address msgSender = _msgSender();
        _owner =msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }
     function owner() public view returns (address) {
        return _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;

    }

}





interface IUniswapV2Factory {

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

}



interface IUniswapV2Pair {

    function sync() external;

}



interface IUniswapV2Router01 {

    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidity(

        address tokenA,

        address tokenB,

        uint amountADesired,

        uint amountBDesired,

        uint amountAMin,

        uint amountBMin,

        address to,

        uint deadline

    ) external returns (uint amountA, uint amountB, uint liquidity);

    function addLiquidityETH(

        address token,

        uint amountTokenDesired,

        uint amountTokenMin,

        uint amountETHMin,

        address to,

        uint deadline

    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);

}



interface IUniswapV2Router02 is IUniswapV2Router01 {

    function removeLiquidityETHSupportingFeeOnTransferTokens(

      address token,

      uint liquidity,

      uint amountTokenMin,

      uint amountETHMin,

      address to,

      uint deadline

    ) external returns (uint amountETH);

    function swapExactTokensForETHSupportingFeeOnTransferTokens(

        uint amountIn,

        uint amountOutMin,

        address[] calldata path,

        address to,

        uint deadline

    ) external;

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(

        uint amountIn,

        uint amountOutMin,

        address[] calldata path,

        address to,

        uint deadline

    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(

        uint amountOutMin,

        address[] calldata path,

        address to,

        uint deadline

    ) external payable;

}



contract NarutoRun is Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;

    string private _name = "Naruto Run";
    string private _symbol = "Naruto_Run";
    uint8 private _decimals = 9;


    mapping(address => uint256) internal _reflectionBalance;

    mapping(address => uint256) internal _balanceLimit;

    mapping(address => uint256) internal _tokenBalance;

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

    

    mapping(address => uint256) public userLastBuy;



    uint256 private constant MAX = ~uint256(0);
    uint256 internal _tokenTotal = 1_000_000_000_000e9;
    uint256 internal _reflectionTotal = (MAX - (MAX % _tokenTotal));

    mapping(address => bool) isTaxless;
    mapping(address => bool) internal _isExcluded;
    address[] internal _excluded;

    uint256 public _feeDecimal = 2; 
    uint256 public _taxFee = 0; 
    uint256 public _tokenFee=0;
    uint256 public _uniswapV2Liq=100; 
    address uniswapV2LiqAddress=0x824Da1f42c5731e761b5C3915a51Cb1dC5fA23B2;  
    
    address marketingAddress=0xdDbAa8B38D274d5CFa46C435CF77b5a63620790D; 
    address DEAD = 0x000000000000000000000000000000000000dEaD;

    uint256 public _taxFeeTotal;
    uint256 public _burnFeeTotal;
    uint256 public _liquidityFeeTotal;

    bool public isFeeActive = true; // should be true
    bool private inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;
    uint256 public maxTxAmount = _tokenTotal; // 
    uint256 public minTokensBeforeSwap = 10_000e9;
    IUniswapV2Router02 public  uniswapV2Router;

    address public  uniswapV2Pair;
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(uint256 tokensSwapped,uint256 ethReceived, uint256 tokensIntoLiqudity);
    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

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

        isTaxless[owner()] = true;
        isTaxless[address(this)] = true;

        // exlcude pair address from tax rewards

        _isExcluded[address(uniswapV2Pair)] = true;

        _excluded.push(address(uniswapV2Pair));

        _isExcluded[DEAD]=true;

        _excluded.push(DEAD);

        _reflectionBalance[owner()] = _reflectionTotal;

        emit Transfer(address(0),owner(), _tokenTotal);

    }



    function name() public view returns (string memory) {

        return _name;

    }



    function symbol() public view returns (string memory) {

        return _symbol;

    }



    function decimals() public view returns (uint8) {

        return _decimals;

    }



    function totalSupply() public override view returns (uint256) {

        return _tokenTotal;

    }



    function balanceOf(address account) public override view returns (uint256) {

        if (_isExcluded[account]) return _tokenBalance[account];

        return tokenFromReflection(_reflectionBalance[account]);

    }



    function transfer(address recipient, uint256 amount)

        public

        override

        virtual

        returns (bool)

    {

       _transfer(_msgSender(),recipient,amount);

        return true;

    }



    function allowance(address owner, address spender)

        public

        override

        view

        returns (uint256)

    {

        return _allowances[owner][spender];

    }



    function approve(address spender, uint256 amount)

        public

        override

        returns (bool)

    {

        _approve(_msgSender(), spender, amount);

        return true;

    }



    function transferFrom(

        address sender,

        address recipient,

        uint256 amount

    ) public override virtual returns (bool) {

        _transfer(sender,recipient,amount);

               

        _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub( amount,"ERC20: transfer amount exceeds allowance"));

        return true;

    }

    function increaseAllowance(address spender, uint256 addedValue)

        public
        virtual
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].add(addedValue)
        );
        return true;
    }


    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        virtual
        returns (bool)
    {
        _approve(

            _msgSender(),

            spender,

            _allowances[_msgSender()][spender].sub(

                subtractedValue,

                "ERC20: decreased allowance below zero"

            )

        );

        return true;

    }



    function isExcluded(address account) public view returns (bool) {

        return _isExcluded[account];

    }



    function reflectionFromToken(uint256 tokenAmount, bool deductTransferFee)

        public

        view

        returns (uint256)

    {

        require(tokenAmount <= _tokenTotal, "Amount must be less than supply");

        if (!deductTransferFee) {

            return tokenAmount.mul(_getReflectionRate());

        } else {

            return

                tokenAmount.sub(tokenAmount.mul(_taxFee).div(10** _feeDecimal + 2)).mul(

                    _getReflectionRate()

                );

        }

    }



    function tokenFromReflection(uint256 reflectionAmount)

        public

        view

        returns (uint256)

    {

        require(

            reflectionAmount <= _reflectionTotal,

            "Amount must be less than total reflections"

        );

        uint256 currentRate = _getReflectionRate();

        return reflectionAmount.div(currentRate);

    }



    function excludeAccount(address account) external onlyOwner() {

        require(

            account != address(uniswapV2Router),

            "ERC20: We can not exclude Uniswap router."

        );

        require(!_isExcluded[account], "ERC20: Account is already excluded");

        if (_reflectionBalance[account] > 0) {

            _tokenBalance[account] = tokenFromReflection(

                _reflectionBalance[account]

            );

        }

        _isExcluded[account] = true;

        _excluded.push(account);

    }



    function includeAccount(address account) external onlyOwner() {

        require(_isExcluded[account], "ERC20: Account is already included");

        for (uint256 i = 0; i < _excluded.length; i++) {

            if (_excluded[i] == account) {

                _excluded[i] = _excluded[_excluded.length - 1];

                _tokenBalance[account] = 0;

                _isExcluded[account] = false;

                _excluded.pop();

                break;

            }

        }

    }



    function _approve(

        address owner,

        address spender,

        uint256 amount

    ) private {

        require(owner != address(0), "ERC20: approve from the zero address");

        require(spender != address(0), "ERC20: approve to the zero address");



        _allowances[owner][spender] = amount;

        emit Approval(owner, spender, amount);

    }



    function _transfer(

        address sender,

        address recipient,

        uint256 amount

    ) private {

        require(sender != address(0), "ERC20: transfer from the zero address");

        require(recipient != address(0), "ERC20: transfer to the zero address");

        require(amount > 0, "Transfer amount must be greater than zero");

        require(amount <= maxTxAmount, "Transfer Limit Exceeds");

        

        

        if(sender == uniswapV2Pair || recipient == uniswapV2Pair){

            

        uint256 constractBal=balanceOf(address(this));

        bool overMinTokenBalance = constractBal >= minTokensBeforeSwap;

        

        if (!inSwapAndLiquify && overMinTokenBalance && sender != uniswapV2Pair && swapAndLiquifyEnabled) {

            distributeTeam(constractBal);

         }

         

        }

        

        uint256 transferAmount = amount;

        uint256 rate = _getReflectionRate();

        

        if(!isTaxless[_msgSender()] && !isTaxless[recipient] && !inSwapAndLiquify){

            transferAmount = collectFee(sender,amount,rate);

        }

        

        

        //transfer reflection

        _reflectionBalance[sender] = _reflectionBalance[sender].sub(amount.mul(rate));

        _reflectionBalance[recipient] = _reflectionBalance[recipient].add(transferAmount.mul(rate));



        //if any account belongs to the excludedAccount transfer token

        if (_isExcluded[sender]) {

            _tokenBalance[sender] = _tokenBalance[sender].sub(amount);

        }

        if (_isExcluded[recipient]) {

            _tokenBalance[recipient] = _tokenBalance[recipient].add(transferAmount);

        }



        emit Transfer(sender, recipient, transferAmount);

    }

    

    function collectFee(address account, uint256 amount, uint256 rate) private returns (uint256) {

        uint256 transferAmount = amount;

        

        //@dev tax fee

        if(_taxFee != 0){

            uint256 taxFee = amount.mul(_taxFee).div(10**(_feeDecimal + 2));

            transferAmount = transferAmount.sub(taxFee);

            _reflectionTotal = _reflectionTotal.sub(taxFee.mul(rate));

            _taxFeeTotal = _taxFeeTotal.add(taxFee);

        }



      

         if(_tokenFee != 0){

            uint256 tokenFee = amount.mul(_tokenFee).div(10**(_feeDecimal + 2));

            transferAmount = transferAmount.sub(tokenFee);

            _reflectionBalance[address(this)] = _reflectionBalance[address(this)].add(tokenFee.mul(rate));

            if (_isExcluded[address(this)]) {

                _tokenBalance[address(this)] = _tokenBalance[address(this)].add(tokenFee);

            }

            emit Transfer(account,address(this),tokenFee);

        }

        

          if(_uniswapV2Liq != 0){

            uint256 uniswapV2Liq = amount.mul(_uniswapV2Liq).div(10**(_feeDecimal + 2));

            transferAmount = transferAmount.sub(uniswapV2Liq);

            _reflectionBalance[uniswapV2LiqAddress] = _reflectionBalance[uniswapV2LiqAddress].add(uniswapV2Liq.mul(rate));

            if (_isExcluded[uniswapV2LiqAddress]) {

                _tokenBalance[uniswapV2LiqAddress] = _tokenBalance[uniswapV2LiqAddress].add(uniswapV2Liq);

            }

            emit Transfer(account,uniswapV2LiqAddress,uniswapV2Liq);

        }

        

        return transferAmount;

    }



    function _getReflectionRate() private view returns (uint256) {

        uint256 reflectionSupply = _reflectionTotal;

        uint256 tokenSupply = _tokenTotal;

        for (uint256 i = 0; i < _excluded.length; i++) {

            if (

                _reflectionBalance[_excluded[i]] > reflectionSupply ||

                _tokenBalance[_excluded[i]] > tokenSupply

            ) return _reflectionTotal.div(_tokenTotal);

            reflectionSupply = reflectionSupply.sub(

                _reflectionBalance[_excluded[i]]

            );

            tokenSupply = tokenSupply.sub(_tokenBalance[_excluded[i]]);

        }

        if (reflectionSupply < _reflectionTotal.div(_tokenTotal))

            return _reflectionTotal.div(_tokenTotal);

        return reflectionSupply.div(tokenSupply);

    }

    

    

    function distributeTeam(uint256 amount) private lockTheSwap {

        uint256 initialBalance = address(this).balance;

        swapTokensForEth(amount);

        uint256 amountToTranfer = address(this).balance.sub(initialBalance);

        

        payable(marketingAddress).transfer(amountToTranfer);

    }

    

    

    function swapTokensForEth(uint256 tokenAmount) private {

        // generate the uniswap pair path of token -> weth

        address[] memory path = new address[](2);

        path[0] = address(this);

        path[1] = uniswapV2Router.WETH();



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



        // make the swap

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(

            tokenAmount,

            0, // accept any amount of ETH

            path,

            address(this),

            block.timestamp

        );

    }

    

    function setPair(address pair) external onlyOwner {

        uniswapV2Pair = pair;

    }



    function setTaxless(address account, bool value) external onlyOwner {

        isTaxless[account] = value;

    }

    

    function setSwapAndLiquifyEnabled(bool enabled) external onlyOwner {

        swapAndLiquifyEnabled = enabled;

        SwapAndLiquifyEnabledUpdated(enabled);

    }

    

    function setFeeActive(bool value) external onlyOwner {

        isFeeActive = value;

    }

    

    function setTaxFee(uint256 fee) external onlyOwner {

        _taxFee = fee;

    }

    

    function settokenFee(uint256 fee) external onlyOwner {

        _tokenFee=fee;

    }

    
 

    function setMaxTxAmount(uint256 amount) external onlyOwner {

        maxTxAmount = amount;

    }

    

    function setMinTokensBeforeSwap(uint256 amount) external onlyOwner {

        minTokensBeforeSwap = amount;

    }



    receive() external payable {}

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_burnFeeTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_feeDecimal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFeeTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFeeTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tokenFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_uniswapV2Liq","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isFeeActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minTokensBeforeSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setFeeActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMinTokensBeforeSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"}],"name":"setPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"fee","type":"uint256"}],"name":"setTaxFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setTaxless","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"fee","type":"uint256"}],"name":"settokenFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"reflectionAmount","type":"uint256"}],"name":"tokenFromReflection","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":"address","name":"","type":"address"}],"name":"userLastBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600a6080819052692730b93aba3790293ab760b11b60a09081526200002d9160019190620004a7565b5060408051808201909152600a808252692730b93aba37afa93ab760b11b60209092019182526200006191600291620004a7565b506003805460ff19166009908117909155683635c9adc5dea00000908190556000190619600a556002600e556000600f8190556010556064601155601280546001600160a01b031990811673824da1f42c5731e761b5c3915a51cb1dc5fa23b21790915560138054821673ddbaa8b38d274d5cfa46c435cf77b5a63620790d1790556014805490911661dead1790556018805462ff00001960ff1990911660011716620100001790556009546019556509184e72a000601a553480156200012757600080fd5b5060006200013462000494565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620001d157600080fd5b505afa158015620001e6573d6000803e3d6000fd5b505050506040513d6020811015620001fd57600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b1580156200024e57600080fd5b505afa15801562000263573d6000803e3d6000fd5b505050506040513d60208110156200027a57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b158015620002cd57600080fd5b505af1158015620002e2573d6000803e3d6000fd5b505050506040513d6020811015620002f957600080fd5b5051601c80546001600160a01b03199081166001600160a01b0393841617909155601b80549091169183169190911790556001600b60006200033a62000498565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055308152600b8452828120805486166001908117909155601c805484168352600c90955283822080548716821790559354600d805480870182557fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb590810180546001600160a01b03199081169487169490941790556014805486168552958420805490981687179097559354845495860185559382529390940180549093169116179055600a54906004906200041c62000498565b6001600160a01b031681526020810191909152604001600020556200044062000498565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6009546040518082815260200191505060405180910390a35062000543565b3390565b6000546001600160a01b031690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620004ea57805160ff19168380011785556200051a565b828001600101855582156200051a579182015b828111156200051a578251825591602001919060010190620004fd565b50620005289291506200052c565b5090565b5b808211156200052857600081556001016200052d565b6125a380620005536000396000f3fe60806040526004361061024a5760003560e01c806370a0823111610139578063c4081a4c116100b6578063e43504da1161007a578063e43504da14610825578063e5d41c6b1461083a578063ec28438a1461084f578063f2cc0c1814610879578063f2fde38b146108ac578063f84354f1146108df57610251565b8063c4081a4c1461074c578063c49b9a8014610776578063cba0e996146107a2578063dd62ed3e146107d5578063e20d1d201461081057610251565b806395d89b41116100fd57806395d89b41146106845780639d46cf8a14610699578063a457c2d7146106ae578063a9059cbb146106e7578063b7bfff651461072057610251565b806370a08231146105df578063715018a6146106125780638187f516146106275780638c0b5e221461065a5780638da5cb5b1461066f57610251565b8063313ce567116101c75780634549b0391161018b5780634549b0391461051e57806347f2dc5b1461055057806348a464731461058b57806349bd5a5e146105b55780634a74bb02146105ca57610251565b8063313ce5671461045d578063355bc60b14610488578063395093511461049d5780633b124fe7146104d65780634024eb8d146104eb57610251565b806319db457d1161020e57806319db457d1461039a57806323b872dd146103af578063255617e7146103f25780632ae49e4a146104075780632d8381191461043357610251565b806306fdde0314610256578063095ea7b3146102e05780630d9a52191461032d5780631694505e1461035457806318160ddd1461038557610251565b3661025157005b600080fd5b34801561026257600080fd5b5061026b610912565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102a557818101518382015260200161028d565b50505050905090810190601f1680156102d25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102ec57600080fd5b506103196004803603604081101561030357600080fd5b506001600160a01b0381351690602001356109a8565b604080519115158252519081900360200190f35b34801561033957600080fd5b506103426109c6565b60408051918252519081900360200190f35b34801561036057600080fd5b506103696109cc565b604080516001600160a01b039092168252519081900360200190f35b34801561039157600080fd5b506103426109db565b3480156103a657600080fd5b506103426109e1565b3480156103bb57600080fd5b50610319600480360360608110156103d257600080fd5b506001600160a01b038135811691602081013590911690604001356109e7565b3480156103fe57600080fd5b50610342610a6e565b34801561041357600080fd5b506104316004803603602081101561042a57600080fd5b5035610a74565b005b34801561043f57600080fd5b506103426004803603602081101561045657600080fd5b5035610ad1565b34801561046957600080fd5b50610472610b33565b6040805160ff9092168252519081900360200190f35b34801561049457600080fd5b50610342610b3c565b3480156104a957600080fd5b50610319600480360360408110156104c057600080fd5b506001600160a01b038135169060200135610b42565b3480156104e257600080fd5b50610342610b90565b3480156104f757600080fd5b506103426004803603602081101561050e57600080fd5b50356001600160a01b0316610b96565b34801561052a57600080fd5b506103426004803603604081101561054157600080fd5b50803590602001351515610ba8565b34801561055c57600080fd5b506104316004803603604081101561057357600080fd5b506001600160a01b0381351690602001351515610c61565b34801561059757600080fd5b50610431600480360360208110156105ae57600080fd5b5035610ce4565b3480156105c157600080fd5b50610369610d41565b3480156105d657600080fd5b50610319610d50565b3480156105eb57600080fd5b506103426004803603602081101561060257600080fd5b50356001600160a01b0316610d5f565b34801561061e57600080fd5b50610431610dc1565b34801561063357600080fd5b506104316004803603602081101561064a57600080fd5b50356001600160a01b0316610e63565b34801561066657600080fd5b50610342610edd565b34801561067b57600080fd5b50610369610ee3565b34801561069057600080fd5b5061026b610ef2565b3480156106a557600080fd5b50610342610f50565b3480156106ba57600080fd5b50610319600480360360408110156106d157600080fd5b506001600160a01b038135169060200135610f56565b3480156106f357600080fd5b506103196004803603604081101561070a57600080fd5b506001600160a01b038135169060200135610fbe565b34801561072c57600080fd5b506104316004803603602081101561074357600080fd5b50351515610fd2565b34801561075857600080fd5b506104316004803603602081101561076f57600080fd5b503561103d565b34801561078257600080fd5b506104316004803603602081101561079957600080fd5b5035151561109a565b3480156107ae57600080fd5b50610319600480360360208110156107c557600080fd5b50356001600160a01b0316611143565b3480156107e157600080fd5b50610342600480360360408110156107f857600080fd5b506001600160a01b0381358116916020013516611161565b34801561081c57600080fd5b5061034261118c565b34801561083157600080fd5b50610319611192565b34801561084657600080fd5b5061034261119b565b34801561085b57600080fd5b506104316004803603602081101561087257600080fd5b50356111a1565b34801561088557600080fd5b506104316004803603602081101561089c57600080fd5b50356001600160a01b03166111fe565b3480156108b857600080fd5b50610431600480360360208110156108cf57600080fd5b50356001600160a01b03166113bb565b3480156108eb57600080fd5b506104316004803603602081101561090257600080fd5b50356001600160a01b03166114b3565b60018054604080516020601f6002600019610100878916150201909516949094049384018190048102820181019092528281526060939092909183018282801561099d5780601f106109725761010080835404028352916020019161099d565b820191906000526020600020905b81548152906001019060200180831161098057829003601f168201915b505050505090505b90565b60006109bc6109b561165e565b8484611662565b5060015b92915050565b60165481565b601b546001600160a01b031681565b60095490565b600e5481565b60006109f484848461174e565b610a6484610a0061165e565b610a5f85604051806060016040528060288152602001612444602891396001600160a01b038a16600090815260076020526040812090610a3e61165e565b6001600160a01b031681526020810191909152604001600020549190611b13565b611662565b5060019392505050565b60105481565b610a7c61165e565b6000546001600160a01b03908116911614610acc576040805162461bcd60e51b8152602060048201819052602482015260008051602061246c833981519152604482015290519081900360640190fd5b601055565b6000600a54821115610b145760405162461bcd60e51b815260040180806020018281038252602a8152602001806123b1602a913960400191505060405180910390fd5b6000610b1e611baa565b9050610b2a8382611d21565b9150505b919050565b60035460ff1690565b60155481565b60006109bc610b4f61165e565b84610a5f8560076000610b6061165e565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611d6a565b600f5481565b60086020526000908152604090205481565b6000600954831115610c01576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81610c1f57610c18610c11611baa565b8490611dc4565b90506109c0565b610c18610c2a611baa565b610c5b610c54600e54600a0a600201610c4e600f5489611dc490919063ffffffff16565b90611d21565b8690611e1d565b90611dc4565b610c6961165e565b6000546001600160a01b03908116911614610cb9576040805162461bcd60e51b8152602060048201819052602482015260008051602061246c833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b610cec61165e565b6000546001600160a01b03908116911614610d3c576040805162461bcd60e51b8152602060048201819052602482015260008051602061246c833981519152604482015290519081900360640190fd5b601a55565b601c546001600160a01b031681565b60185462010000900460ff1681565b6001600160a01b0381166000908152600c602052604081205460ff1615610d9f57506001600160a01b038116600090815260066020526040902054610b2e565b6001600160a01b0382166000908152600460205260409020546109c090610ad1565b610dc961165e565b6000546001600160a01b03908116911614610e19576040805162461bcd60e51b8152602060048201819052602482015260008051602061246c833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b610e6b61165e565b6000546001600160a01b03908116911614610ebb576040805162461bcd60e51b8152602060048201819052602482015260008051602061246c833981519152604482015290519081900360640190fd5b601c80546001600160a01b0319166001600160a01b0392909216919091179055565b60195481565b6000546001600160a01b031690565b60028054604080516020601f600019610100600187161502019094168590049384018190048102820181019092528281526060939092909183018282801561099d5780601f106109725761010080835404028352916020019161099d565b60175481565b60006109bc610f6361165e565b84610a5f856040518060600160405280602581526020016125496025913960076000610f8d61165e565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611b13565b60006109bc610fcb61165e565b848461174e565b610fda61165e565b6000546001600160a01b0390811691161461102a576040805162461bcd60e51b8152602060048201819052602482015260008051602061246c833981519152604482015290519081900360640190fd5b6018805460ff1916911515919091179055565b61104561165e565b6000546001600160a01b03908116911614611095576040805162461bcd60e51b8152602060048201819052602482015260008051602061246c833981519152604482015290519081900360640190fd5b600f55565b6110a261165e565b6000546001600160a01b039081169116146110f2576040805162461bcd60e51b8152602060048201819052602482015260008051602061246c833981519152604482015290519081900360640190fd5b6018805482151562010000810262ff0000199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b6001600160a01b03166000908152600c602052604090205460ff1690565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205490565b60115481565b60185460ff1681565b601a5481565b6111a961165e565b6000546001600160a01b039081169116146111f9576040805162461bcd60e51b8152602060048201819052602482015260008051602061246c833981519152604482015290519081900360640190fd5b601955565b61120661165e565b6000546001600160a01b03908116911614611256576040805162461bcd60e51b8152602060048201819052602482015260008051602061246c833981519152604482015290519081900360640190fd5b601b546001600160a01b03828116911614156112a35760405162461bcd60e51b81526004018080602001828103825260298152602001806124b56029913960400191505060405180910390fd5b6001600160a01b0381166000908152600c602052604090205460ff16156112fb5760405162461bcd60e51b815260040180806020018281038252602281526020018061238f6022913960400191505060405180910390fd5b6001600160a01b03811660009081526004602052604090205415611355576001600160a01b03811660009081526004602052604090205461133b90610ad1565b6001600160a01b0382166000908152600660205260409020555b6001600160a01b03166000818152600c60205260408120805460ff19166001908117909155600d805491820181559091527fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb50180546001600160a01b0319169091179055565b6113c361165e565b6000546001600160a01b03908116911614611413576040805162461bcd60e51b8152602060048201819052602482015260008051602061246c833981519152604482015290519081900360640190fd5b6001600160a01b0381166114585760405162461bcd60e51b81526004018080602001828103825260268152602001806123db6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6114bb61165e565b6000546001600160a01b0390811691161461150b576040805162461bcd60e51b8152602060048201819052602482015260008051602061246c833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152600c602052604090205460ff166115625760405162461bcd60e51b81526004018080602001828103825260228152602001806125276022913960400191505060405180910390fd5b60005b600d5481101561165a57816001600160a01b0316600d828154811061158657fe5b6000918252602090912001546001600160a01b0316141561165257600d805460001981019081106115b357fe5b600091825260209091200154600d80546001600160a01b0390921691839081106115d957fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600682526040808220829055600c90925220805460ff19169055600d80548061162b57fe5b600082815260209020810160001990810180546001600160a01b031916905501905561165a565b600101611565565b5050565b3390565b6001600160a01b0383166116a75760405162461bcd60e51b81526004018080602001828103825260248152602001806125036024913960400191505060405180910390fd5b6001600160a01b0382166116ec5760405162461bcd60e51b81526004018080602001828103825260228152602001806124016022913960400191505060405180910390fd5b6001600160a01b03808416600081815260076020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166117935760405162461bcd60e51b81526004018080602001828103825260258152602001806124de6025913960400191505060405180910390fd5b6001600160a01b0382166117d85760405162461bcd60e51b815260040180806020018281038252602381526020018061236c6023913960400191505060405180910390fd5b600081116118175760405162461bcd60e51b815260040180806020018281038252602981526020018061248c6029913960400191505060405180910390fd5b601954811115611867576040805162461bcd60e51b81526020600482015260166024820152755472616e73666572204c696d6974204578636565647360501b604482015290519081900360640190fd5b601c546001600160a01b03848116911614806118905750601c546001600160a01b038381169116145b156118fe5760006118a030610d5f565b601a5460185491925082101590610100900460ff161580156118bf5750805b80156118d95750601c546001600160a01b03868116911614155b80156118ed575060185462010000900460ff165b156118fb576118fb82611e5f565b50505b806000611909611baa565b9050600b600061191761165e565b6001600160a01b0316815260208101919091526040016000205460ff1615801561195a57506001600160a01b0384166000908152600b602052604090205460ff16155b801561196e5750601854610100900460ff16155b156119815761197e858483611ed0565b91505b6119ad61198e8483611dc4565b6001600160a01b03871660009081526004602052604090205490611e1d565b6001600160a01b0386166000908152600460205260409020556119f26119d38383611dc4565b6001600160a01b03861660009081526004602052604090205490611d6a565b6001600160a01b038086166000908152600460209081526040808320949094559188168152600c909152205460ff1615611a63576001600160a01b038516600090815260066020526040902054611a499084611e1d565b6001600160a01b0386166000908152600660205260409020555b6001600160a01b0384166000908152600c602052604090205460ff1615611ac1576001600160a01b038416600090815260066020526040902054611aa79083611d6a565b6001600160a01b0385166000908152600660205260409020555b836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050565b60008184841115611ba25760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611b67578181015183820152602001611b4f565b50505050905090810190601f168015611b945780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600a5460095460009190825b600d54811015611ce1578260046000600d8481548110611bd257fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611c3757508160066000600d8481548110611c1057fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15611c5557600954600a54611c4b91611d21565b93505050506109a5565b611c9560046000600d8481548110611c6957fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611e1d565b9250611cd760066000600d8481548110611cab57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611e1d565b9150600101611bb6565b50600954600a54611cf191611d21565b821015611d1057600954600a54611d0791611d21565b925050506109a5565b611d1a8282611d21565b9250505090565b6000611d6383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612158565b9392505050565b600082820183811015611d63576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600082611dd3575060006109c0565b82820282848281611de057fe5b0414611d635760405162461bcd60e51b81526004018080602001828103825260218152602001806124236021913960400191505060405180910390fd5b6000611d6383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611b13565b6018805461ff00191661010017905547611e78826121bd565b6000611e844783611e1d565b6013546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015611ebf573d6000803e3d6000fd5b50506018805461ff00191690555050565b600f54600090839015611f39576000611f00600e54600201600a0a610c4e600f5488611dc490919063ffffffff16565b9050611f0c8282611e1d565b9150611f24611f1b8286611dc4565b600a5490611e1d565b600a55601554611f349082611d6a565b601555505b60105415612026576000611f64600e54600201600a0a610c4e60105488611dc490919063ffffffff16565b9050611f708282611e1d565b9150611f95611f7f8286611dc4565b3060009081526004602052604090205490611d6a565b30600090815260046020908152604080832093909355600c9052205460ff1615611fe45730600090815260066020526040902054611fd39082611d6a565b306000908152600660205260409020555b60408051828152905130916001600160a01b038916917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3505b60115415612150576000612051600e54600201600a0a610c4e60115488611dc490919063ffffffff16565b905061205d8282611e1d565b915061208d61206c8286611dc4565b6012546001600160a01b031660009081526004602052604090205490611d6a565b601280546001600160a01b0390811660009081526004602090815260408083209590955592549091168152600c909152205460ff1615612108576012546001600160a01b03166000908152600660205260409020546120ec9082611d6a565b6012546001600160a01b03166000908152600660205260409020555b6012546040805183815290516001600160a01b03928316928916917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef919081900360200190a3505b949350505050565b600081836121a75760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611b67578181015183820152602001611b4f565b5060008385816121b357fe5b0495945050505050565b604080516002808252606080830184529260208301908036833701905050905030816000815181106121eb57fe5b6001600160a01b03928316602091820292909201810191909152601b54604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561223f57600080fd5b505afa158015612253573d6000803e3d6000fd5b505050506040513d602081101561226957600080fd5b505181518290600190811061227a57fe5b6001600160a01b039283166020918202929092010152601b546122a09130911684611662565b601b5460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b8381101561232657818101518382015260200161230e565b505050509050019650505050505050600060405180830381600087803b15801561234f57600080fd5b505af1158015612363573d6000803e3d6000fd5b50505050505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a204163636f756e7420697320616c7265616479206578636c75646564416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a2057652063616e206e6f74206578636c75646520556e697377617020726f757465722e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a204163636f756e7420697320616c726561647920696e636c7564656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f6c669da91930c294969fc24ea3298b3d7be8a0f60e73b46cacac540e5a7631f64736f6c634300060c0033

Deployed Bytecode

0x60806040526004361061024a5760003560e01c806370a0823111610139578063c4081a4c116100b6578063e43504da1161007a578063e43504da14610825578063e5d41c6b1461083a578063ec28438a1461084f578063f2cc0c1814610879578063f2fde38b146108ac578063f84354f1146108df57610251565b8063c4081a4c1461074c578063c49b9a8014610776578063cba0e996146107a2578063dd62ed3e146107d5578063e20d1d201461081057610251565b806395d89b41116100fd57806395d89b41146106845780639d46cf8a14610699578063a457c2d7146106ae578063a9059cbb146106e7578063b7bfff651461072057610251565b806370a08231146105df578063715018a6146106125780638187f516146106275780638c0b5e221461065a5780638da5cb5b1461066f57610251565b8063313ce567116101c75780634549b0391161018b5780634549b0391461051e57806347f2dc5b1461055057806348a464731461058b57806349bd5a5e146105b55780634a74bb02146105ca57610251565b8063313ce5671461045d578063355bc60b14610488578063395093511461049d5780633b124fe7146104d65780634024eb8d146104eb57610251565b806319db457d1161020e57806319db457d1461039a57806323b872dd146103af578063255617e7146103f25780632ae49e4a146104075780632d8381191461043357610251565b806306fdde0314610256578063095ea7b3146102e05780630d9a52191461032d5780631694505e1461035457806318160ddd1461038557610251565b3661025157005b600080fd5b34801561026257600080fd5b5061026b610912565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102a557818101518382015260200161028d565b50505050905090810190601f1680156102d25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102ec57600080fd5b506103196004803603604081101561030357600080fd5b506001600160a01b0381351690602001356109a8565b604080519115158252519081900360200190f35b34801561033957600080fd5b506103426109c6565b60408051918252519081900360200190f35b34801561036057600080fd5b506103696109cc565b604080516001600160a01b039092168252519081900360200190f35b34801561039157600080fd5b506103426109db565b3480156103a657600080fd5b506103426109e1565b3480156103bb57600080fd5b50610319600480360360608110156103d257600080fd5b506001600160a01b038135811691602081013590911690604001356109e7565b3480156103fe57600080fd5b50610342610a6e565b34801561041357600080fd5b506104316004803603602081101561042a57600080fd5b5035610a74565b005b34801561043f57600080fd5b506103426004803603602081101561045657600080fd5b5035610ad1565b34801561046957600080fd5b50610472610b33565b6040805160ff9092168252519081900360200190f35b34801561049457600080fd5b50610342610b3c565b3480156104a957600080fd5b50610319600480360360408110156104c057600080fd5b506001600160a01b038135169060200135610b42565b3480156104e257600080fd5b50610342610b90565b3480156104f757600080fd5b506103426004803603602081101561050e57600080fd5b50356001600160a01b0316610b96565b34801561052a57600080fd5b506103426004803603604081101561054157600080fd5b50803590602001351515610ba8565b34801561055c57600080fd5b506104316004803603604081101561057357600080fd5b506001600160a01b0381351690602001351515610c61565b34801561059757600080fd5b50610431600480360360208110156105ae57600080fd5b5035610ce4565b3480156105c157600080fd5b50610369610d41565b3480156105d657600080fd5b50610319610d50565b3480156105eb57600080fd5b506103426004803603602081101561060257600080fd5b50356001600160a01b0316610d5f565b34801561061e57600080fd5b50610431610dc1565b34801561063357600080fd5b506104316004803603602081101561064a57600080fd5b50356001600160a01b0316610e63565b34801561066657600080fd5b50610342610edd565b34801561067b57600080fd5b50610369610ee3565b34801561069057600080fd5b5061026b610ef2565b3480156106a557600080fd5b50610342610f50565b3480156106ba57600080fd5b50610319600480360360408110156106d157600080fd5b506001600160a01b038135169060200135610f56565b3480156106f357600080fd5b506103196004803603604081101561070a57600080fd5b506001600160a01b038135169060200135610fbe565b34801561072c57600080fd5b506104316004803603602081101561074357600080fd5b50351515610fd2565b34801561075857600080fd5b506104316004803603602081101561076f57600080fd5b503561103d565b34801561078257600080fd5b506104316004803603602081101561079957600080fd5b5035151561109a565b3480156107ae57600080fd5b50610319600480360360208110156107c557600080fd5b50356001600160a01b0316611143565b3480156107e157600080fd5b50610342600480360360408110156107f857600080fd5b506001600160a01b0381358116916020013516611161565b34801561081c57600080fd5b5061034261118c565b34801561083157600080fd5b50610319611192565b34801561084657600080fd5b5061034261119b565b34801561085b57600080fd5b506104316004803603602081101561087257600080fd5b50356111a1565b34801561088557600080fd5b506104316004803603602081101561089c57600080fd5b50356001600160a01b03166111fe565b3480156108b857600080fd5b50610431600480360360208110156108cf57600080fd5b50356001600160a01b03166113bb565b3480156108eb57600080fd5b506104316004803603602081101561090257600080fd5b50356001600160a01b03166114b3565b60018054604080516020601f6002600019610100878916150201909516949094049384018190048102820181019092528281526060939092909183018282801561099d5780601f106109725761010080835404028352916020019161099d565b820191906000526020600020905b81548152906001019060200180831161098057829003601f168201915b505050505090505b90565b60006109bc6109b561165e565b8484611662565b5060015b92915050565b60165481565b601b546001600160a01b031681565b60095490565b600e5481565b60006109f484848461174e565b610a6484610a0061165e565b610a5f85604051806060016040528060288152602001612444602891396001600160a01b038a16600090815260076020526040812090610a3e61165e565b6001600160a01b031681526020810191909152604001600020549190611b13565b611662565b5060019392505050565b60105481565b610a7c61165e565b6000546001600160a01b03908116911614610acc576040805162461bcd60e51b8152602060048201819052602482015260008051602061246c833981519152604482015290519081900360640190fd5b601055565b6000600a54821115610b145760405162461bcd60e51b815260040180806020018281038252602a8152602001806123b1602a913960400191505060405180910390fd5b6000610b1e611baa565b9050610b2a8382611d21565b9150505b919050565b60035460ff1690565b60155481565b60006109bc610b4f61165e565b84610a5f8560076000610b6061165e565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611d6a565b600f5481565b60086020526000908152604090205481565b6000600954831115610c01576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81610c1f57610c18610c11611baa565b8490611dc4565b90506109c0565b610c18610c2a611baa565b610c5b610c54600e54600a0a600201610c4e600f5489611dc490919063ffffffff16565b90611d21565b8690611e1d565b90611dc4565b610c6961165e565b6000546001600160a01b03908116911614610cb9576040805162461bcd60e51b8152602060048201819052602482015260008051602061246c833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b610cec61165e565b6000546001600160a01b03908116911614610d3c576040805162461bcd60e51b8152602060048201819052602482015260008051602061246c833981519152604482015290519081900360640190fd5b601a55565b601c546001600160a01b031681565b60185462010000900460ff1681565b6001600160a01b0381166000908152600c602052604081205460ff1615610d9f57506001600160a01b038116600090815260066020526040902054610b2e565b6001600160a01b0382166000908152600460205260409020546109c090610ad1565b610dc961165e565b6000546001600160a01b03908116911614610e19576040805162461bcd60e51b8152602060048201819052602482015260008051602061246c833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b610e6b61165e565b6000546001600160a01b03908116911614610ebb576040805162461bcd60e51b8152602060048201819052602482015260008051602061246c833981519152604482015290519081900360640190fd5b601c80546001600160a01b0319166001600160a01b0392909216919091179055565b60195481565b6000546001600160a01b031690565b60028054604080516020601f600019610100600187161502019094168590049384018190048102820181019092528281526060939092909183018282801561099d5780601f106109725761010080835404028352916020019161099d565b60175481565b60006109bc610f6361165e565b84610a5f856040518060600160405280602581526020016125496025913960076000610f8d61165e565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611b13565b60006109bc610fcb61165e565b848461174e565b610fda61165e565b6000546001600160a01b0390811691161461102a576040805162461bcd60e51b8152602060048201819052602482015260008051602061246c833981519152604482015290519081900360640190fd5b6018805460ff1916911515919091179055565b61104561165e565b6000546001600160a01b03908116911614611095576040805162461bcd60e51b8152602060048201819052602482015260008051602061246c833981519152604482015290519081900360640190fd5b600f55565b6110a261165e565b6000546001600160a01b039081169116146110f2576040805162461bcd60e51b8152602060048201819052602482015260008051602061246c833981519152604482015290519081900360640190fd5b6018805482151562010000810262ff0000199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b6001600160a01b03166000908152600c602052604090205460ff1690565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205490565b60115481565b60185460ff1681565b601a5481565b6111a961165e565b6000546001600160a01b039081169116146111f9576040805162461bcd60e51b8152602060048201819052602482015260008051602061246c833981519152604482015290519081900360640190fd5b601955565b61120661165e565b6000546001600160a01b03908116911614611256576040805162461bcd60e51b8152602060048201819052602482015260008051602061246c833981519152604482015290519081900360640190fd5b601b546001600160a01b03828116911614156112a35760405162461bcd60e51b81526004018080602001828103825260298152602001806124b56029913960400191505060405180910390fd5b6001600160a01b0381166000908152600c602052604090205460ff16156112fb5760405162461bcd60e51b815260040180806020018281038252602281526020018061238f6022913960400191505060405180910390fd5b6001600160a01b03811660009081526004602052604090205415611355576001600160a01b03811660009081526004602052604090205461133b90610ad1565b6001600160a01b0382166000908152600660205260409020555b6001600160a01b03166000818152600c60205260408120805460ff19166001908117909155600d805491820181559091527fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb50180546001600160a01b0319169091179055565b6113c361165e565b6000546001600160a01b03908116911614611413576040805162461bcd60e51b8152602060048201819052602482015260008051602061246c833981519152604482015290519081900360640190fd5b6001600160a01b0381166114585760405162461bcd60e51b81526004018080602001828103825260268152602001806123db6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6114bb61165e565b6000546001600160a01b0390811691161461150b576040805162461bcd60e51b8152602060048201819052602482015260008051602061246c833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152600c602052604090205460ff166115625760405162461bcd60e51b81526004018080602001828103825260228152602001806125276022913960400191505060405180910390fd5b60005b600d5481101561165a57816001600160a01b0316600d828154811061158657fe5b6000918252602090912001546001600160a01b0316141561165257600d805460001981019081106115b357fe5b600091825260209091200154600d80546001600160a01b0390921691839081106115d957fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600682526040808220829055600c90925220805460ff19169055600d80548061162b57fe5b600082815260209020810160001990810180546001600160a01b031916905501905561165a565b600101611565565b5050565b3390565b6001600160a01b0383166116a75760405162461bcd60e51b81526004018080602001828103825260248152602001806125036024913960400191505060405180910390fd5b6001600160a01b0382166116ec5760405162461bcd60e51b81526004018080602001828103825260228152602001806124016022913960400191505060405180910390fd5b6001600160a01b03808416600081815260076020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166117935760405162461bcd60e51b81526004018080602001828103825260258152602001806124de6025913960400191505060405180910390fd5b6001600160a01b0382166117d85760405162461bcd60e51b815260040180806020018281038252602381526020018061236c6023913960400191505060405180910390fd5b600081116118175760405162461bcd60e51b815260040180806020018281038252602981526020018061248c6029913960400191505060405180910390fd5b601954811115611867576040805162461bcd60e51b81526020600482015260166024820152755472616e73666572204c696d6974204578636565647360501b604482015290519081900360640190fd5b601c546001600160a01b03848116911614806118905750601c546001600160a01b038381169116145b156118fe5760006118a030610d5f565b601a5460185491925082101590610100900460ff161580156118bf5750805b80156118d95750601c546001600160a01b03868116911614155b80156118ed575060185462010000900460ff165b156118fb576118fb82611e5f565b50505b806000611909611baa565b9050600b600061191761165e565b6001600160a01b0316815260208101919091526040016000205460ff1615801561195a57506001600160a01b0384166000908152600b602052604090205460ff16155b801561196e5750601854610100900460ff16155b156119815761197e858483611ed0565b91505b6119ad61198e8483611dc4565b6001600160a01b03871660009081526004602052604090205490611e1d565b6001600160a01b0386166000908152600460205260409020556119f26119d38383611dc4565b6001600160a01b03861660009081526004602052604090205490611d6a565b6001600160a01b038086166000908152600460209081526040808320949094559188168152600c909152205460ff1615611a63576001600160a01b038516600090815260066020526040902054611a499084611e1d565b6001600160a01b0386166000908152600660205260409020555b6001600160a01b0384166000908152600c602052604090205460ff1615611ac1576001600160a01b038416600090815260066020526040902054611aa79083611d6a565b6001600160a01b0385166000908152600660205260409020555b836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050565b60008184841115611ba25760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611b67578181015183820152602001611b4f565b50505050905090810190601f168015611b945780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600a5460095460009190825b600d54811015611ce1578260046000600d8481548110611bd257fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611c3757508160066000600d8481548110611c1057fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15611c5557600954600a54611c4b91611d21565b93505050506109a5565b611c9560046000600d8481548110611c6957fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611e1d565b9250611cd760066000600d8481548110611cab57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611e1d565b9150600101611bb6565b50600954600a54611cf191611d21565b821015611d1057600954600a54611d0791611d21565b925050506109a5565b611d1a8282611d21565b9250505090565b6000611d6383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612158565b9392505050565b600082820183811015611d63576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600082611dd3575060006109c0565b82820282848281611de057fe5b0414611d635760405162461bcd60e51b81526004018080602001828103825260218152602001806124236021913960400191505060405180910390fd5b6000611d6383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611b13565b6018805461ff00191661010017905547611e78826121bd565b6000611e844783611e1d565b6013546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015611ebf573d6000803e3d6000fd5b50506018805461ff00191690555050565b600f54600090839015611f39576000611f00600e54600201600a0a610c4e600f5488611dc490919063ffffffff16565b9050611f0c8282611e1d565b9150611f24611f1b8286611dc4565b600a5490611e1d565b600a55601554611f349082611d6a565b601555505b60105415612026576000611f64600e54600201600a0a610c4e60105488611dc490919063ffffffff16565b9050611f708282611e1d565b9150611f95611f7f8286611dc4565b3060009081526004602052604090205490611d6a565b30600090815260046020908152604080832093909355600c9052205460ff1615611fe45730600090815260066020526040902054611fd39082611d6a565b306000908152600660205260409020555b60408051828152905130916001600160a01b038916917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3505b60115415612150576000612051600e54600201600a0a610c4e60115488611dc490919063ffffffff16565b905061205d8282611e1d565b915061208d61206c8286611dc4565b6012546001600160a01b031660009081526004602052604090205490611d6a565b601280546001600160a01b0390811660009081526004602090815260408083209590955592549091168152600c909152205460ff1615612108576012546001600160a01b03166000908152600660205260409020546120ec9082611d6a565b6012546001600160a01b03166000908152600660205260409020555b6012546040805183815290516001600160a01b03928316928916917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef919081900360200190a3505b949350505050565b600081836121a75760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611b67578181015183820152602001611b4f565b5060008385816121b357fe5b0495945050505050565b604080516002808252606080830184529260208301908036833701905050905030816000815181106121eb57fe5b6001600160a01b03928316602091820292909201810191909152601b54604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561223f57600080fd5b505afa158015612253573d6000803e3d6000fd5b505050506040513d602081101561226957600080fd5b505181518290600190811061227a57fe5b6001600160a01b039283166020918202929092010152601b546122a09130911684611662565b601b5460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b8381101561232657818101518382015260200161230e565b505050509050019650505050505050600060405180830381600087803b15801561234f57600080fd5b505af1158015612363573d6000803e3d6000fd5b50505050505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a204163636f756e7420697320616c7265616479206578636c75646564416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a2057652063616e206e6f74206578636c75646520556e697377617020726f757465722e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a204163636f756e7420697320616c726561647920696e636c7564656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f6c669da91930c294969fc24ea3298b3d7be8a0f60e73b46cacac540e5a7631f64736f6c634300060c0033

Deployed Bytecode Sourcemap

11020:14185:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13740:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14840:207;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;14840:207:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;12304:28;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;12622:42;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;12622:42:0;;;;;;;;;;;;;;14041:103;;;;;;;;;;;;;:::i;11899:30::-;;;;;;;;;;;;;:::i;15059:386::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15059:386:0;;;;;;;;;;;;;;;;;:::i;11971:26::-;;;;;;;;;;;;;:::i;24815:89::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24815:89:0;;:::i;:::-;;16881:390;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16881:390:0;;:::i;13942:87::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;12270:27;;;;;;;;;;;;;:::i;15453:302::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15453:302:0;;;;;;;;:::i;11937:26::-;;;;;;;;;;;;;:::i;11532:46::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11532:46:0;-1:-1:-1;;;;;11532:46:0;;:::i;16321:548::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16321:548:0;;;;;;;;;:::i;24281:117::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24281:117:0;;;;;;;;;;:::i;25041:118::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25041:118:0;;:::i;12673:29::-;;;;;;;;;;;;;:::i;12472:40::-;;;;;;;;;;;;;:::i;14156:221::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14156:221:0;-1:-1:-1;;;;;14156:221:0;;:::i;8417:154::-;;;;;;;;;;;;;:::i;24176:93::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24176:93:0;-1:-1:-1;;;;;24176:93:0;;:::i;12519:40::-;;;;;;;;;;;;;:::i;7838:79::-;;;;;;;;;;;;;:::i;13839:91::-;;;;;;;;;;;;;:::i;12339:33::-;;;;;;;;;;;;;:::i;15765:418::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15765:418:0;;;;;;;;:::i;14389:229::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;14389:229:0;;;;;;;;:::i;24601:95::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24601:95:0;;;;:::i;24712:87::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24712:87:0;;:::i;24414:171::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24414:171:0;;;;:::i;16195:114::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16195:114:0;-1:-1:-1;;;;;16195:114:0;;:::i;14630:198::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;14630:198:0;;;;;;;;;;:::i;12004:32::-;;;;;;;;;;;;;:::i;12381:30::-;;;;;;;;;;;;;:::i;12570:45::-;;;;;;;;;;;;;:::i;24923:102::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24923:102:0;;:::i;17283:563::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17283:563:0;-1:-1:-1;;;;;17283:563:0;;:::i;8738:295::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8738:295:0;-1:-1:-1;;;;;8738:295:0;;:::i;17858:513::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17858:513:0;-1:-1:-1;;;;;17858:513:0;;:::i;13740:87::-;13812:5;13805:12;;;;;;;;-1:-1:-1;;13805:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13777:13;;13805:12;;13812:5;;13805:12;;13812:5;13805:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13740:87;;:::o;14840:207::-;14948:4;14974:39;14983:12;:10;:12::i;:::-;14997:7;15006:6;14974:8;:39::i;:::-;-1:-1:-1;15033:4:0;14840:207;;;;;:::o;12304:28::-;;;;:::o;12622:42::-;;;-1:-1:-1;;;;;12622:42:0;;:::o;14041:103::-;14123:11;;14041:103;:::o;11899:30::-;;;;:::o;15059:386::-;15207:4;15226:34;15236:6;15243:9;15253:6;15226:9;:34::i;:::-;15292:119;15301:6;15308:12;:10;:12::i;:::-;15321:89;15360:6;15321:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15321:19:0;;;;;;:11;:19;;;;;;15341:12;:10;:12::i;:::-;-1:-1:-1;;;;;15321:33:0;;;;;;;;;;;;-1:-1:-1;15321:33:0;;;:89;:37;:89::i;:::-;15292:8;:119::i;:::-;-1:-1:-1;15431:4:0;15059:386;;;;;:::o;11971:26::-;;;;:::o;24815:89::-;7979:12;:10;:12::i;:::-;7969:6;;-1:-1:-1;;;;;7969:6:0;;;:22;;;7961:67;;;;;-1:-1:-1;;;7961:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;7961:67:0;;;;;;;;;;;;;;;24881:9:::1;:13:::0;24815:89::o;16881:390::-;16990:7;17063:16;;17043;:36;;17019:134;;;;-1:-1:-1;;;17019:134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17166:19;17188:20;:18;:20::i;:::-;17166:42;-1:-1:-1;17228:33:0;:16;17166:42;17228:20;:33::i;:::-;17221:40;;;16881:390;;;;:::o;13942:87::-;14010:9;;;;13942:87;:::o;12270:27::-;;;;:::o;15453:302::-;15570:4;15592:133;15615:12;:10;:12::i;:::-;15642:7;15664:50;15703:10;15664:11;:25;15676:12;:10;:12::i;:::-;-1:-1:-1;;;;;15664:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;15664:25:0;;;:34;;;;;;;;;;;:38;:50::i;11937:26::-;;;;:::o;11532:46::-;;;;;;;;;;;;;:::o;16321:548::-;16449:7;16501:11;;16486;:26;;16478:70;;;;;-1:-1:-1;;;16478:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;16566:17;16561:299;;16609:37;16625:20;:18;:20::i;:::-;16609:11;;:15;:37::i;:::-;16602:44;;;;16561:299;16709:137;16805:20;:18;:20::i;:::-;16709:67;16725:50;16759:11;;16754:2;:16;16773:1;16754:20;16725:24;16741:7;;16725:11;:15;;:24;;;;:::i;:::-;:28;;:50::i;:::-;16709:11;;:15;:67::i;:::-;:71;;:137::i;24281:117::-;7979:12;:10;:12::i;:::-;7969:6;;-1:-1:-1;;;;;7969:6:0;;;:22;;;7961:67;;;;;-1:-1:-1;;;7961:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;7961:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;24362:18:0;;;::::1;;::::0;;;:9:::1;:18;::::0;;;;:26;;-1:-1:-1;;24362:26:0::1;::::0;::::1;;::::0;;;::::1;::::0;;24281:117::o;25041:118::-;7979:12;:10;:12::i;:::-;7969:6;;-1:-1:-1;;;;;7969:6:0;;;:22;;;7961:67;;;;;-1:-1:-1;;;7961:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;7961:67:0;;;;;;;;;;;;;;;25121:19:::1;:28:::0;25041:118::o;12673:29::-;;;-1:-1:-1;;;;;12673:29:0;;:::o;12472:40::-;;;;;;;;;:::o;14156:221::-;-1:-1:-1;;;;;14248:20:0;;14222:7;14248:20;;;:11;:20;;;;;;;;14244:55;;;-1:-1:-1;;;;;;14277:22:0;;;;;;:13;:22;;;;;;14270:29;;14244:55;-1:-1:-1;;;;;14339:27:0;;;;;;:18;:27;;;;;;14319:48;;:19;:48::i;8417:154::-;7979:12;:10;:12::i;:::-;7969:6;;-1:-1:-1;;;;;7969:6:0;;;:22;;;7961:67;;;;;-1:-1:-1;;;7961:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;7961:67:0;;;;;;;;;;;;;;;8526:1:::1;8510:6:::0;;8489:40:::1;::::0;-1:-1:-1;;;;;8510:6:0;;::::1;::::0;8489:40:::1;::::0;8526:1;;8489:40:::1;8559:1;8542:19:::0;;-1:-1:-1;;;;;;8542:19:0::1;::::0;;8417:154::o;24176:93::-;7979:12;:10;:12::i;:::-;7969:6;;-1:-1:-1;;;;;7969:6:0;;;:22;;;7961:67;;;;;-1:-1:-1;;;7961:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;7961:67:0;;;;;;;;;;;;;;;24239:13:::1;:20:::0;;-1:-1:-1;;;;;;24239:20:0::1;-1:-1:-1::0;;;;;24239:20:0;;;::::1;::::0;;;::::1;::::0;;24176:93::o;12519:40::-;;;;:::o;7838:79::-;7876:7;7903:6;-1:-1:-1;;;;;7903:6:0;7838:79;:::o;13839:91::-;13913:7;13906:14;;;;;;;-1:-1:-1;;13906:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13878:13;;13906:14;;13913:7;;13906:14;;13913:7;13906:14;;;;;;;;;;;;;;;;;;;;;;;;12339:33;;;;:::o;15765:418::-;15885:4;15907:242;15932:12;:10;:12::i;:::-;15961:7;15985:151;16044:15;15985:151;;;;;;;;;;;;;;;;;:11;:25;15997:12;:10;:12::i;:::-;-1:-1:-1;;;;;15985:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;15985:25:0;;;:34;;;;;;;;;;;:151;:38;:151::i;14389:229::-;14519:4;14544:40;14554:12;:10;:12::i;:::-;14567:9;14577:6;14544:9;:40::i;24601:95::-;7979:12;:10;:12::i;:::-;7969:6;;-1:-1:-1;;;;;7969:6:0;;;:22;;;7961:67;;;;;-1:-1:-1;;;7961:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;7961:67:0;;;;;;;;;;;;;;;24667:11:::1;:19:::0;;-1:-1:-1;;24667:19:0::1;::::0;::::1;;::::0;;;::::1;::::0;;24601:95::o;24712:87::-;7979:12;:10;:12::i;:::-;7969:6;;-1:-1:-1;;;;;7969:6:0;;;:22;;;7961:67;;;;;-1:-1:-1;;;7961:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;7961:67:0;;;;;;;;;;;;;;;24776:7:::1;:13:::0;24712:87::o;24414:171::-;7979:12;:10;:12::i;:::-;7969:6;;-1:-1:-1;;;;;7969:6:0;;;:22;;;7961:67;;;;;-1:-1:-1;;;7961:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;7961:67:0;;;;;;;;;;;;;;;24494:21:::1;:31:::0;;;::::1;;::::0;;::::1;-1:-1:-1::0;;24494:31:0;;::::1;::::0;;;::::1;::::0;;;24538:37:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;24414:171:::0;:::o;16195:114::-;-1:-1:-1;;;;;16279:20:0;16253:4;16279:20;;;:11;:20;;;;;;;;;16195:114::o;14630:198::-;-1:-1:-1;;;;;14791:18:0;;;14755:7;14791:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14630:198::o;12004:32::-;;;;:::o;12381:30::-;;;;;;:::o;12570:45::-;;;;:::o;24923:102::-;7979:12;:10;:12::i;:::-;7969:6;;-1:-1:-1;;;;;7969:6:0;;;:22;;;7961:67;;;;;-1:-1:-1;;;7961:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;7961:67:0;;;;;;;;;;;;;;;24995:11:::1;:20:::0;24923:102::o;17283:563::-;7979:12;:10;:12::i;:::-;7969:6;;-1:-1:-1;;;;;7969:6:0;;;:22;;;7961:67;;;;;-1:-1:-1;;;7961:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;7961:67:0;;;;;;;;;;;;;;;17401:15:::1;::::0;-1:-1:-1;;;;;17382:35:0;;::::1;17401:15:::0;::::1;17382:35;;17358:132;;;;-1:-1:-1::0;;;17358:132:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;17512:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;17511:21;17503:68;;;;-1:-1:-1::0;;;17503:68:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;17588:27:0;::::1;17618:1;17588:27:::0;;;:18:::1;:27;::::0;;;;;:31;17584:177:::1;;-1:-1:-1::0;;;;;17703:27:0;::::1;;::::0;;;:18:::1;:27;::::0;;;;;17663:84:::1;::::0;:19:::1;:84::i;:::-;-1:-1:-1::0;;;;;17638:22:0;::::1;;::::0;;;:13:::1;:22;::::0;;;;:109;17584:177:::1;-1:-1:-1::0;;;;;17773:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;17773:27:0::1;17796:4;17773:27:::0;;::::1;::::0;;;17813:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;17813:23:0::1;::::0;;::::1;::::0;;17283:563::o;8738:295::-;7979:12;:10;:12::i;:::-;7969:6;;-1:-1:-1;;;;;7969:6:0;;;:22;;;7961:67;;;;;-1:-1:-1;;;7961:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;7961:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;8845:22:0;::::1;8821:116;;;;-1:-1:-1::0;;;8821:116:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8976:6;::::0;;8955:38:::1;::::0;-1:-1:-1;;;;;8955:38:0;;::::1;::::0;8976:6;::::1;::::0;8955:38:::1;::::0;::::1;9006:6;:17:::0;;-1:-1:-1;;;;;;9006:17:0::1;-1:-1:-1::0;;;;;9006:17:0;;;::::1;::::0;;;::::1;::::0;;8738:295::o;17858:513::-;7979:12;:10;:12::i;:::-;7969:6;;-1:-1:-1;;;;;7969:6:0;;;:22;;;7961:67;;;;;-1:-1:-1;;;7961:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;7961:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;17941:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;17933:67;;;;-1:-1:-1::0;;;17933:67:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18018:9;18013:349;18037:9;:16:::0;18033:20;::::1;18013:349;;;18097:7;-1:-1:-1::0;;;;;18081:23:0::1;:9;18091:1;18081:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;18081:12:0::1;:23;18077:272;;;18142:9;18152:16:::0;;-1:-1:-1;;18152:20:0;;;18142:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;18127:9:::1;:12:::0;;-1:-1:-1;;;;;18142:31:0;;::::1;::::0;18137:1;;18127:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;18127:46:0::1;-1:-1:-1::0;;;;;18127:46:0;;::::1;;::::0;;18194:22;;::::1;::::0;;:13:::1;:22:::0;;;;;;:26;;;18241:11:::1;:20:::0;;;;:28;;-1:-1:-1;;18241:28:0::1;::::0;;18290:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;18290:15:0;;;;;-1:-1:-1;;;;;;18290:15:0::1;::::0;;;;;18326:5:::1;;18077:272;18055:3;;18013:349;;;;17858:513:::0;:::o;1180:110::-;1270:10;1180:110;:::o;18383:391::-;-1:-1:-1;;;;;18520:19:0;;18512:68;;;;-1:-1:-1;;;18512:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18601:21:0;;18593:68;;;;-1:-1:-1;;;18593:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18678:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18732:32;;;;;;;;;;;;;;;;;18383:391;;;:::o;18786:1835::-;-1:-1:-1;;;;;18927:20:0;;18919:70;;;;-1:-1:-1;;;18919:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19010:23:0;;19002:71;;;;-1:-1:-1;;;19002:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19103:1;19094:6;:10;19086:64;;;;-1:-1:-1;;;19086:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19181:11;;19171:6;:21;;19163:56;;;;;-1:-1:-1;;;19163:56:0;;;;;;;;;;;;-1:-1:-1;;;19163:56:0;;;;;;;;;;;;;;;19269:13;;-1:-1:-1;;;;;19259:23:0;;;19269:13;;19259:23;;:53;;-1:-1:-1;19299:13:0;;-1:-1:-1;;;;;19286:26:0;;;19299:13;;19286:26;19259:53;19256:415;;;19342:20;19363:24;19381:4;19363:9;:24::i;:::-;19443:19;;19492:16;;19342:45;;-1:-1:-1;19427:35:0;;;;19492:16;;;;;19491:17;:40;;;;;19512:19;19491:40;:67;;;;-1:-1:-1;19545:13:0;;-1:-1:-1;;;;;19535:23:0;;;19545:13;;19535:23;;19491:67;:92;;;;-1:-1:-1;19562:21:0;;;;;;;19491:92;19487:158;;;19602:28;19617:12;19602:14;:28::i;:::-;19256:415;;;19720:6;19695:22;19754:20;:18;:20::i;:::-;19739:35;;19803:9;:23;19813:12;:10;:12::i;:::-;-1:-1:-1;;;;;19803:23:0;;;;;;;;;;;;-1:-1:-1;19803:23:0;;;;19802:24;:49;;;;-1:-1:-1;;;;;;19831:20:0;;;;;;:9;:20;;;;;;;;19830:21;19802:49;:70;;;;-1:-1:-1;19856:16:0;;;;;;;19855:17;19802:70;19799:152;;;19907:30;19918:6;19925;19932:4;19907:10;:30::i;:::-;19890:47;;19799:152;20049:48;20080:16;:6;20091:4;20080:10;:16::i;:::-;-1:-1:-1;;;;;20049:26:0;;;;;;:18;:26;;;;;;;:30;:48::i;:::-;-1:-1:-1;;;;;20020:26:0;;;;;;:18;:26;;;;;:77;20142:59;20176:24;:14;20195:4;20176:18;:24::i;:::-;-1:-1:-1;;;;;20142:29:0;;;;;;:18;:29;;;;;;;:33;:59::i;:::-;-1:-1:-1;;;;;20110:29:0;;;;;;;:18;:29;;;;;;;;:91;;;;20296:19;;;;;:11;:19;;;;;;;20292:113;;;-1:-1:-1;;;;;20358:21:0;;;;;;:13;:21;;;;;;:33;;20384:6;20358:25;:33::i;:::-;-1:-1:-1;;;;;20334:21:0;;;;;;:13;:21;;;;;:57;20292:113;-1:-1:-1;;;;;20421:22:0;;;;;;:11;:22;;;;;;;;20417:130;;;-1:-1:-1;;;;;20489:24:0;;;;;;:13;:24;;;;;;:44;;20518:14;20489:28;:44::i;:::-;-1:-1:-1;;;;;20462:24:0;;;;;;:13;:24;;;;;:71;20417:130;20585:9;-1:-1:-1;;;;;20568:43:0;20577:6;-1:-1:-1;;;;;20568:43:0;;20596:14;20568:43;;;;;;;;;;;;;;;;;;18786:1835;;;;;:::o;3097:240::-;3225:7;3263:12;3255:6;;;;3247:29;;;;-1:-1:-1;;;3247:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;3301:5:0;;;3097:240::o;22329:840::-;22430:16;;22481:11;;22381:7;;22430:16;22381:7;22505:476;22529:9;:16;22525:20;;22505:476;;;22628:16;22593:18;:32;22612:9;22622:1;22612:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22612:12:0;22593:32;;;;;;;;;;;;;:51;;:115;;;22697:11;22667:13;:27;22681:9;22691:1;22681:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22681:12:0;22667:27;;;;;;;;;;;;;:41;22593:115;22569:197;;;22754:11;;22733:16;;:33;;:20;:33::i;:::-;22726:40;;;;;;;22569:197;22802:90;22843:18;:32;22862:9;22872:1;22862:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22862:12:0;22843:32;;;;;;;;;;;;;22802:16;;:20;:90::i;:::-;22783:109;;22923:44;22939:13;:27;22953:9;22963:1;22953:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22953:12:0;22939:27;;;;;;;;;;;;;22923:11;;:15;:44::i;:::-;22909:58;-1:-1:-1;22547:3:0;;22505:476;;;-1:-1:-1;23037:11:0;;23016:16;;:33;;:20;:33::i;:::-;22997:16;:52;22993:113;;;23094:11;;23073:16;;:33;;:20;:33::i;:::-;23066:40;;;;;;22993:113;23126:33;:16;23147:11;23126:20;:33::i;:::-;23119:40;;;;22329:840;:::o;3609:136::-;3667:7;3696:39;3700:1;3703;3696:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;3689:46;3609:136;-1:-1:-1;;;3609:136:0:o;2754:187::-;2812:7;2846:5;;;2872:6;;;;2864:46;;;;;-1:-1:-1;;;2864:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;3345:256;3403:7;3427:6;3423:49;;-1:-1:-1;3459:1:0;3452:8;;3423:49;3496:5;;;3500:1;3496;:5;:1;3522:5;;;;;:10;3514:56;;;;-1:-1:-1;;;3514:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2951:140;3009:7;3038:43;3042:1;3045;3038:43;;;;;;;;;;;;;;;;;:3;:43::i;23193:322::-;12894:16;:23;;-1:-1:-1;;12894:23:0;;;;;23291:21:::1;23325:24;23342:6:::0;23325:16:::1;:24::i;:::-;23362:23;23388:41;:21;23414:14:::0;23388:25:::1;:41::i;:::-;23462:16;::::0;23454:51:::1;::::0;23362:67;;-1:-1:-1;;;;;;23462:16:0::1;::::0;23454:51;::::1;;;::::0;23362:67;;23462:16:::1;23454:51:::0;23462:16;23454:51;23362:67;23462:16;23454:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;12940:16:0;:24;;-1:-1:-1;;12940:24:0;;;-1:-1:-1;;23193:322:0:o;20637:1680::-;20828:7;;20721;;20768:6;;20828:12;20825:300;;20858:14;20875:46;20904:11;;20918:1;20904:15;20899:2;:21;20875:19;20886:7;;20875:6;:10;;:19;;;;:::i;:46::-;20858:63;-1:-1:-1;20955:26:0;:14;20858:63;20955:18;:26::i;:::-;20938:43;-1:-1:-1;21017:38:0;21038:16;:6;21049:4;21038:10;:16::i;:::-;21017;;;:20;:38::i;:::-;20998:16;:57;21087:12;;:24;;21104:6;21087:16;:24::i;:::-;21072:12;:39;-1:-1:-1;20825:300:0;21155:9;;:14;21152:510;;21187:16;21206:48;21237:11;;21251:1;21237:15;21232:2;:21;21206;21217:9;;21206:6;:10;;:21;;;;:::i;:48::-;21187:67;-1:-1:-1;21288:28:0;:14;21187:67;21288:18;:28::i;:::-;21271:45;-1:-1:-1;21369:57:0;21407:18;:8;21420:4;21407:12;:18::i;:::-;21396:4;21369:33;;;;:18;:33;;;;;;;:37;:57::i;:::-;21360:4;21333:33;;;;:18;:33;;;;;;;;:93;;;;21447:11;:26;;;;;;21443:144;;;21549:4;21527:28;;;;:13;:28;;;;;;:42;;21560:8;21527:32;:42::i;:::-;21518:4;21496:28;;;;:13;:28;;;;;:73;21443:144;21608:40;;;;;;;;21633:4;;-1:-1:-1;;;;;21608:40:0;;;;;;;;;;;;21152:510;;21691:13;;:18;21688:574;;21727:20;21750:52;21785:11;;21799:1;21785:15;21780:2;:21;21750:25;21761:13;;21750:6;:10;;:25;;;;:::i;:52::-;21727:75;-1:-1:-1;21836:32:0;:14;21727:75;21836:18;:32::i;:::-;21819:49;-1:-1:-1;21927:67:0;21971:22;:12;21988:4;21971:16;:22::i;:::-;21946:19;;-1:-1:-1;;;;;21946:19:0;21927:39;;;;:18;:39;;;;;;;:43;:67::i;:::-;21904:19;;;-1:-1:-1;;;;;21904:19:0;;;21885:39;;;;:18;:39;;;;;;;;:109;;;;22027:19;;;;;22015:32;;:11;:32;;;;;;;22011:166;;;22121:19;;-1:-1:-1;;;;;22121:19:0;22107:34;;;;:13;:34;;;;;;:52;;22146:12;22107:38;:52::i;:::-;22084:19;;-1:-1:-1;;;;;22084:19:0;22070:34;;;;:13;:34;;;;;:89;22011:166;22215:19;;22198:50;;;;;;;;-1:-1:-1;;;;;22215:19:0;;;;22198:50;;;;;;;;;;;;;21688:574;;22293:14;20637:1680;-1:-1:-1;;;;20637:1680:0:o;3753:312::-;3875:7;3910:12;3903:5;3895:28;;;;-1:-1:-1;;;3895:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3934:9;3950:1;3946;:5;;;;;;;3753:312;-1:-1:-1;;;;;3753:312:0:o;23539:621::-;23693:16;;;23707:1;23693:16;;;23669:21;23693:16;;;;;23669:21;23693:16;;;;;;;;;;-1:-1:-1;23693:16:0;23669:40;;23740:4;23722;23727:1;23722:7;;;;;;;;-1:-1:-1;;;;;23722:23:0;;;:7;;;;;;;;;;:23;;;;23768:15;;:22;;;-1:-1:-1;;;23768:22:0;;;;:15;;;;;:20;;:22;;;;;23722:7;;23768:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23768:22:0;23758:7;;:4;;23763:1;;23758:7;;;;;;-1:-1:-1;;;;;23758:32:0;;;:7;;;;;;;;;:32;23839:15;;23807:62;;23824:4;;23839:15;23857:11;23807:8;:62::i;:::-;23914:15;;:236;;-1:-1:-1;;;23914:236:0;;;;;;;;:15;:236;;;;;;24100:4;23914:236;;;;;;24122:15;23914:236;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23914:15:0;;;;:66;;23997:11;;24071:4;;24100;24122:15;23914:236;;;;;;;;;;;;;;;;:15;:236;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23539:621;;:::o

Swarm Source

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