ETH Price: $2,593.92 (-2.61%)

Token

ANON ITS TIME TO LEAVE THE SHITCOINS AND BUY BTC (BUYBTC)
 

Overview

Max Total Supply

21,000,000,000 BUYBTC

Holders

38

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
1.686769229 BUYBTC

Value
$0.00
0x90C4115fa33C0cB70d4627a6c992dd801E5dF12E
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:
Contract

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**

Twitter: https://x.com/BuyBTCCommunity

Telegram: https://t.me/BuyBTCCommunity

Website: https://buybtc.lol/

In the midst of economic turmoil and looming geopolitical unrest, Anon found himself entangled in the chaotic world of cryptocurrency. 
Anon, an ambitious investor with dreams of financial prosperity, had initially entered the crypto space during a bull market, grew up in
4chan /biz/ board — where optimism and gains seemed boundless. Little did he know that the tides of fortune were about to take a turn for the worse.

As the bear market descended upon the crypto landscape, panic gripped the hearts of investors worldwide. Prices of altcoins, especially 
the obscure and risky "shitcoins," plummeted, leaving portfolios in shambles. Anon, however, saw this as an opportunity to seize undervalued
assets and make a fortune when the market eventually rebounded.

Simultaneously, geopolitical tensions escalated, leading to the outbreak of a world war. The financial markets were on edge, and traditional 
safe-haven assets like gold and, notably, Bitcoin, saw increased demand as investors sought refuge from the storm.

Anon, however, clung to the belief that the volatile nature of shitcoins would yield quick profits once the market sentiment improved. Ignoring
the stability offered by Bitcoin, he continued to pour his dwindling resources into speculative and unpredictable altcoins.

As the war unfolded, global uncertainty reached unprecedented levels. Financial markets were in disarray, and Anon's portfolio of shitcoins 
became increasingly worthless. The once-promising gains turned into substantial losses, leaving Anon financially devastated in the midst of a 
world in turmoil.

It was at this moment of crisis that Anon began to reflect on his choices. The allure of quick riches from risky investments had blinded him 
to the safer and more stable options available, like Bitcoin. While Bitcoin had proven resilient in times of uncertainty, Anon's decision to 
chase fleeting gains in the volatile world of shitcoins had left him with nothing.

As the war continued to shape the world around him, Anon faced the bitter consequences of his speculative choices. The lesson learned was a 
harsh one – in times of global instability, prudent and calculated investments in assets like Bitcoin could provide a lifeline, whereas the 
allure of high-risk ventures could lead to financial ruin.

Anon's story became a cautionary tale, a stark reminder that in times of crisis, the wisdom of choosing reliable and established investments 
over the allure of risky gambles could make all the difference in securing one's financial future amidst the uncertainties of the world.

*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

 
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }
}
 
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);
 
    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
    );
}
 
contract Ownable is Context {
    address internal _owner;
    address private _previousOwner;
    event OwnershipTransferred(
        address indexed previousOwner,
        address indexed newOwner
    );
 
    constructor() {
        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");
        _;
    }
 
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }
 
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
 
}

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;
        return c;
    }
}
 
interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB)
        external
        returns (address pair);
}
 
interface IUniswapV2Router02 {
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
 
    function factory() external pure returns (address);
 
    function WETH() external pure returns (address);
 
    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );
}
 
contract Contract is Context, IERC20, Ownable {
 
    using SafeMath for uint256;
 
    string private constant _name = "ANON ITS TIME TO LEAVE THE SHITCOINS AND BUY BTC";
    string private constant _symbol = "BUYBTC";
    uint8 private constant _decimals = 9;
 
    mapping(address => uint256) private _rOwned;
    mapping(address => uint256) private _tOwned;
    mapping(address => mapping(address => uint256)) private _allowances;
    mapping(address => bool) private _isExcludedFromFee;
    uint256 private constant MAX = ~uint256(0);
    uint256 private constant _tTotal =  21000000000 * 10**9;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;
    uint256 private _redisFeeOnBuy = 0;  
    uint256 private _taxFeeOnBuy = 25;  
    uint256 private _redisFeeOnSell = 0;  
    uint256 private _taxFeeOnSell = 25;
 
    uint256 private _redisFee = _redisFeeOnSell;
    uint256 private _taxFee = _taxFeeOnSell;
 
    uint256 private _previousredisFee = _redisFee;
    uint256 private _previoustaxFee = _taxFee;
 
    mapping(address => bool) public bots; mapping (address => uint256) public _buyMap; 
    address payable private _developmentAddress = payable(0x94771f460A934C5d6133483a9F6ddF1C75C303Bd); 
    address payable private _marketingAddress = payable(0xFE3734CEeE28cBeD92c8D0476AF040c09654d4e5);
 
    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;
 
    bool private tradingOpen;
    bool private inSwap = false;
    bool private swapEnabled = true;
 
    uint256 public _maxTxAmount = _tTotal.mul(2).div(100);
    uint256 public _maxWalletSize = _tTotal.mul(2).div(100); 
    uint256 public _swapTokensAtAmount = _tTotal.mul(1).div(1000);
 
    event MaxTxAmountUpdated(uint256 _maxTxAmount);
    modifier lockTheSwap {
        inSwap = true;
        _;
        inSwap = false;
    }
 
    constructor() {
 
        _rOwned[_msgSender()] = _rTotal;
 
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
 
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        _isExcludedFromFee[_developmentAddress] = true;
        _isExcludedFromFee[_marketingAddress] = true;
 
        emit Transfer(address(0), _msgSender(), _tTotal);
    }
 
    function name() public pure returns (string memory) {
        return _name;
    }
 
    function symbol() public pure returns (string memory) {
        return _symbol;
    }
 
    function decimals() public pure returns (uint8) {
        return _decimals;
    }
 
    function totalSupply() public pure override returns (uint256) {
        return _tTotal;
    }
 
    function balanceOf(address account) public view override returns (uint256) {
        return tokenFromReflection(_rOwned[account]);
    }
 
    function transfer(address recipient, uint256 amount)
        public
        override
        returns (bool)
    {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }
 
    function allowance(address owner, address spender)
        public
        view
        override
        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 returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()].sub(
                amount,
                "ERC20: transfer amount exceeds allowance"
            )
        );
        return true;
    }
 
    function tokenFromReflection(uint256 rAmount)
        private
        view
        returns (uint256)
    {
        require(
            rAmount <= _rTotal,
            "Amount must be less than total reflections"
        );
        uint256 currentRate = _getRate();
        return rAmount.div(currentRate);
    }
 
    function removeAllFee() private {
        if (_redisFee == 0 && _taxFee == 0) return;
 
        _previousredisFee = _redisFee;
        _previoustaxFee = _taxFee;
 
        _redisFee = 0;
        _taxFee = 0;
    }
 
    function restoreAllFee() private {
        _redisFee = _previousredisFee;
        _taxFee = _previoustaxFee;
    }
 
    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 from,
        address to,
        uint256 amount
    ) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
 
        if (from != owner() && to != owner()) {
 
            //Trade start check
            if (!tradingOpen) {
                require(from == owner(), "TOKEN: This account cannot send tokens until trading is enabled");
            }
 
            require(amount <= _maxTxAmount, "TOKEN: Max Transaction Limit");
            require(!bots[from] && !bots[to], "TOKEN: Your account is blacklisted!");
 
            if(to != uniswapV2Pair) {
                require(balanceOf(to) + amount < _maxWalletSize, "TOKEN: Balance exceeds wallet size!");
            }
 
            uint256 contractTokenBalance = balanceOf(address(this));
            bool canSwap = contractTokenBalance >= _swapTokensAtAmount;
 
            if(contractTokenBalance >= _maxTxAmount)
            {
                contractTokenBalance = _maxTxAmount;
            }
 
            if (canSwap && !inSwap && from != uniswapV2Pair && swapEnabled && !_isExcludedFromFee[from] && !_isExcludedFromFee[to]) {
                swapTokensForEth(contractTokenBalance);
                uint256 contractETHBalance = address(this).balance;
                if (contractETHBalance > 0) {
                    sendETHToFee(address(this).balance);
                }
            }
        }
 
        bool takeFee = true;
 
        //Transfer Tokens
        if ((_isExcludedFromFee[from] || _isExcludedFromFee[to]) || (from != uniswapV2Pair && to != uniswapV2Pair)) {
            takeFee = false;
        } else {
 
            //Set Fee for Buys
            if(from == uniswapV2Pair && to != address(uniswapV2Router)) {
                _redisFee = _redisFeeOnBuy;
                _taxFee = _taxFeeOnBuy;
            }
 
            //Set Fee for Sells
            if (to == uniswapV2Pair && from != address(uniswapV2Router)) {
                _redisFee = _redisFeeOnSell;
                _taxFee = _taxFeeOnSell;
            }
 
        }
 
        _tokenTransfer(from, to, amount, takeFee);
    }
 
    function swapTokensForEth(uint256 tokenAmount) private lockTheSwap {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        _approve(address(this), address(uniswapV2Router), tokenAmount);
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }
 
    function sendETHToFee(uint256 amount) private {
        _marketingAddress.transfer(amount.mul(3).div(5));
        _developmentAddress.transfer(amount.mul(2).div(5));
    }
 
    function setTrading(bool _tradingOpen) public onlyOwner {
        tradingOpen = _tradingOpen;
    }
 
    function manualswap() external {
        require(_msgSender() == _developmentAddress || _msgSender() == _marketingAddress);
        uint256 contractBalance = balanceOf(address(this));
        swapTokensForEth(contractBalance);
    }
 
    function manualsend() external {
        require(_msgSender() == _developmentAddress || _msgSender() == _marketingAddress);
        uint256 contractETHBalance = address(this).balance;
        sendETHToFee(contractETHBalance);
    }
 
    function blockBots(address[] memory bots_) public onlyOwner {
        for (uint256 i = 0; i < bots_.length; i++) {
            bots[bots_[i]] = true;
        }
    }
 
    function unblockBot(address notbot) public onlyOwner {
        bots[notbot] = false;
    }
 
    function _tokenTransfer(
        address sender,
        address recipient,
        uint256 amount,
        bool takeFee
    ) private {
        if (!takeFee) removeAllFee();
        _transferStandard(sender, recipient, amount);
        if (!takeFee) restoreAllFee();
    }
 
    function _transferStandard(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        (
            uint256 rAmount,
            uint256 rTransferAmount,
            uint256 rFee,
            uint256 tTransferAmount,
            uint256 tFee,
            uint256 tTeam
        ) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeTeam(tTeam);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }
 
    function _takeTeam(uint256 tTeam) private {
        uint256 currentRate = _getRate();
        uint256 rTeam = tTeam.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rTeam);
    }
 
    function _reflectFee(uint256 rFee, uint256 tFee) private {
        _rTotal = _rTotal.sub(rFee);
        _tFeeTotal = _tFeeTotal.add(tFee);
    }
 
    receive() external payable {}
 
    function _getValues(uint256 tAmount)
        private
        view
        returns (
            uint256,
            uint256,
            uint256,
            uint256,
            uint256,
            uint256
        )
    {
        (uint256 tTransferAmount, uint256 tFee, uint256 tTeam) =
            _getTValues(tAmount, _redisFee, _taxFee);
        uint256 currentRate = _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) =
            _getRValues(tAmount, tFee, tTeam, currentRate);
        return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tTeam);
    }
 
    function _getTValues(
        uint256 tAmount,
        uint256 redisFee,
        uint256 taxFee
    )
        private
        pure
        returns (
            uint256,
            uint256,
            uint256
        )
    {
        uint256 tFee = tAmount.mul(redisFee).div(100);
        uint256 tTeam = tAmount.mul(taxFee).div(100);
        uint256 tTransferAmount = tAmount.sub(tFee).sub(tTeam);
        return (tTransferAmount, tFee, tTeam);
    }
 
    function _getRValues(
        uint256 tAmount,
        uint256 tFee,
        uint256 tTeam,
        uint256 currentRate
    )
        private
        pure
        returns (
            uint256,
            uint256,
            uint256
        )
    {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rTeam = tTeam.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).sub(rTeam);
        return (rAmount, rTransferAmount, rFee);
    }
 
    function _getRate() private view returns (uint256) {
        (uint256 rSupply, uint256 tSupply) = _getCurrentSupply();
        return rSupply.div(tSupply);
    }
 
    function _getCurrentSupply() private view returns (uint256, uint256) {
        uint256 rSupply = _rTotal;
        uint256 tSupply = _tTotal;
        if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
        return (rSupply, tSupply);
    }
 
    function setFee(uint256 redisFeeOnBuy, uint256 redisFeeOnSell, uint256 taxFeeOnBuy, uint256 taxFeeOnSell) public onlyOwner {
        require(redisFeeOnBuy >= 0 && redisFeeOnBuy <= 5, "Buy rewards must be between 0% and 5%");
        require(taxFeeOnBuy >= 0 && taxFeeOnBuy <= 50, "Buy tax must be between 0% and 50%");
        require(redisFeeOnSell >= 0 && redisFeeOnSell <= 5, "Sell rewards must be between 0% and 5%");
        require(taxFeeOnSell >= 0 && taxFeeOnSell <= 99, "Sell tax must be between 0% and 99%");

        _redisFeeOnBuy = redisFeeOnBuy;
        _redisFeeOnSell = redisFeeOnSell;
        _taxFeeOnBuy = taxFeeOnBuy;
        _taxFeeOnSell = taxFeeOnSell;

    }
 
    function setMinSwapTokensThreshold(uint256 swapTokensAtAmount) public onlyOwner {
        _swapTokensAtAmount = swapTokensAtAmount;
    }
 
    function toggleSwap(bool _swapEnabled) public onlyOwner {
        swapEnabled = _swapEnabled;
    }
 
    function setMaxTxnAmount(uint256 amountPercent) public onlyOwner {
        require(amountPercent>0);
        _maxTxAmount = (_tTotal * amountPercent ) / 100;
    }

    function setMaxWalletSize(uint256 amountPercent) public onlyOwner {
        require(amountPercent>0);
        _maxWalletSize = (_tTotal * amountPercent ) / 100;
    }

    function removeLimits() external onlyOwner{
        _maxTxAmount = _tTotal;
        _maxWalletSize = _tTotal;
    }
 
    function excludeMultipleAccountsFromFees(address[] calldata accounts, bool excluded) public onlyOwner {
        for(uint256 i = 0; i < accounts.length; i++) {
            _isExcludedFromFee[accounts[i]] = excluded;
        }
    }

}

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":false,"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"MaxTxAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_buyMap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_swapTokensAtAmount","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":[{"internalType":"address[]","name":"bots_","type":"address[]"}],"name":"blockBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"bots","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeMultipleAccountsFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualsend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualswap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"redisFeeOnBuy","type":"uint256"},{"internalType":"uint256","name":"redisFeeOnSell","type":"uint256"},{"internalType":"uint256","name":"taxFeeOnBuy","type":"uint256"},{"internalType":"uint256","name":"taxFeeOnSell","type":"uint256"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountPercent","type":"uint256"}],"name":"setMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountPercent","type":"uint256"}],"name":"setMaxWalletSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"swapTokensAtAmount","type":"uint256"}],"name":"setMinSwapTokensThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_tradingOpen","type":"bool"}],"name":"setTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bool","name":"_swapEnabled","type":"bool"}],"name":"toggleSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","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":[{"internalType":"address","name":"notbot","type":"address"}],"name":"unblockBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526200001a6801236efcbcbb3400005f19620004db565b62000027905f1962000505565b6006555f600881905560196009819055600a829055600b819055600c829055600d819055600e91909155600f55601280546001600160a01b03199081167394771f460a934c5d6133483a9f6ddf1c75c303bd179091556013805490911673fe3734ceee28cbed92c8d0476af040c09654d4e51790556015805461ffff60a81b1916600160b01b179055620000d36064620000cc6801236efcbcbb3400006002620003b1565b9062000444565b601655620000f26064620000cc6801236efcbcbb3400006002620003b1565b601755620001126103e8620000cc6801236efcbcbb3400006001620003b1565b60185534801562000121575f80fd5b505f80546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600654335f9081526002602090815260409182902092909255601480546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d908117909155815163c45a015560e01b815291519092839263c45a015592600480830193928290030181865afa158015620001db573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200020191906200051b565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200024d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200027391906200051b565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015620002be573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002e491906200051b565b601580546001600160a01b0319166001600160a01b039283161790555f80548216815260056020526040808220805460ff1990811660019081179092553084528284208054821683179055601254851684528284208054821683179055601354909416835291208054909216179055336001600160a01b03165f6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6801236efcbcbb340000604051620003a291815260200190565b60405180910390a350620005c0565b5f825f03620003c257505f6200043e565b5f620003cf838562000543565b905082620003de85836200055d565b146200043b5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084015b60405180910390fd5b90505b92915050565b5f6200043b83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506200048d60201b60201c565b5f8183620004b05760405162461bcd60e51b815260040162000432919062000573565b505f620004be84866200055d565b95945050505050565b634e487b7160e01b5f52601260045260245ffd5b5f82620004ec57620004ec620004c7565b500690565b634e487b7160e01b5f52601160045260245ffd5b818103818111156200043e576200043e620004f1565b5f602082840312156200052c575f80fd5b81516001600160a01b03811681146200043b575f80fd5b80820281158282048414176200043e576200043e620004f1565b5f826200056e576200056e620004c7565b500490565b5f6020808352835180828501525f5b81811015620005a05785810183015185820160400152820162000582565b505f604082860101526040601f19601f8301168501019250505092915050565b611fe280620005ce5f395ff3fe6080604052600436106101d2575f3560e01c8063751039fc116100fd578063a2a957bb11610092578063c492f04611610062578063c492f04614610536578063dd62ed3e14610555578063ea1644d514610599578063f2fde38b146105b8575f80fd5b8063a2a957bb146104b6578063a9059cbb146104d5578063bfd79284146104f4578063c3c8cd8014610522575f80fd5b80638f70ccf7116100cd5780638f70ccf7146104355780638f9a55c01461045457806395d89b411461046957806398a5c31514610497575f80fd5b8063751039fc146103c55780637d1db4a5146103d95780637f2feddc146103ee5780638da5cb5b14610419575f80fd5b8063313ce567116101735780636fc3eaec116101435780636fc3eaec1461035f57806370a0823114610373578063715018a61461039257806374010ece146103a6575f80fd5b8063313ce567146102e757806349bd5a5e146103025780636b999053146103215780636d8aa8f814610340575f80fd5b80631694505e116101ae5780631694505e1461025757806318160ddd1461028e57806323b872dd146102b35780632fd689e3146102d2575f80fd5b8062b8cf2a146101dd57806306fdde03146101fe578063095ea7b314610228575f80fd5b366101d957005b5f80fd5b3480156101e8575f80fd5b506101fc6101f7366004611b49565b6105d7565b005b348015610209575f80fd5b50610212610672565b60405161021f9190611c09565b60405180910390f35b348015610233575f80fd5b50610247610242366004611c54565b610692565b604051901515815260200161021f565b348015610262575f80fd5b50601454610276906001600160a01b031681565b6040516001600160a01b03909116815260200161021f565b348015610299575f80fd5b506801236efcbcbb3400005b60405190815260200161021f565b3480156102be575f80fd5b506102476102cd366004611c7e565b6106a8565b3480156102dd575f80fd5b506102a560185481565b3480156102f2575f80fd5b506040516009815260200161021f565b34801561030d575f80fd5b50601554610276906001600160a01b031681565b34801561032c575f80fd5b506101fc61033b366004611cbc565b61070f565b34801561034b575f80fd5b506101fc61035a366004611ce6565b610758565b34801561036a575f80fd5b506101fc61079f565b34801561037e575f80fd5b506102a561038d366004611cbc565b6107e9565b34801561039d575f80fd5b506101fc61080a565b3480156103b1575f80fd5b506101fc6103c0366004611cff565b61087b565b3480156103d0575f80fd5b506101fc6108d4565b3480156103e4575f80fd5b506102a560165481565b3480156103f9575f80fd5b506102a5610408366004611cbc565b60116020525f908152604090205481565b348015610424575f80fd5b505f546001600160a01b0316610276565b348015610440575f80fd5b506101fc61044f366004611ce6565b610911565b34801561045f575f80fd5b506102a560175481565b348015610474575f80fd5b5060408051808201909152600681526542555942544360d01b6020820152610212565b3480156104a2575f80fd5b506101fc6104b1366004611cff565b610958565b3480156104c1575f80fd5b506101fc6104d0366004611d16565b610986565b3480156104e0575f80fd5b506102476104ef366004611c54565b610b3b565b3480156104ff575f80fd5b5061024761050e366004611cbc565b60106020525f908152604090205460ff1681565b34801561052d575f80fd5b506101fc610b47565b348015610541575f80fd5b506101fc610550366004611d45565b610b99565b348015610560575f80fd5b506102a561056f366004611dc2565b6001600160a01b039182165f90815260046020908152604080832093909416825291909152205490565b3480156105a4575f80fd5b506101fc6105b3366004611cff565b610c36565b3480156105c3575f80fd5b506101fc6105d2366004611cbc565b610c8f565b5f546001600160a01b031633146106095760405162461bcd60e51b815260040161060090611df9565b60405180910390fd5b5f5b815181101561066e57600160105f84848151811061062b5761062b611e2e565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff19169115159190911790558061066681611e56565b91505061060b565b5050565b6060604051806060016040528060308152602001611f5560309139905090565b5f61069e338484610d76565b5060015b92915050565b5f6106b4848484610e99565b610705843361070085604051806060016040528060288152602001611f85602891396001600160a01b038a165f90815260046020908152604080832033845290915290205491906113c9565b610d76565b5060019392505050565b5f546001600160a01b031633146107385760405162461bcd60e51b815260040161060090611df9565b6001600160a01b03165f908152601060205260409020805460ff19169055565b5f546001600160a01b031633146107815760405162461bcd60e51b815260040161060090611df9565b60158054911515600160b01b0260ff60b01b19909216919091179055565b6012546001600160a01b0316336001600160a01b031614806107d457506013546001600160a01b0316336001600160a01b0316145b6107dc575f80fd5b476107e681611401565b50565b6001600160a01b0381165f908152600260205260408120546106a290611490565b5f546001600160a01b031633146108335760405162461bcd60e51b815260040161060090611df9565b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b5f546001600160a01b031633146108a45760405162461bcd60e51b815260040161060090611df9565b5f81116108af575f80fd5b60646108c4826801236efcbcbb340000611e6e565b6108ce9190611e85565b60165550565b5f546001600160a01b031633146108fd5760405162461bcd60e51b815260040161060090611df9565b6801236efcbcbb3400006016819055601755565b5f546001600160a01b0316331461093a5760405162461bcd60e51b815260040161060090611df9565b60158054911515600160a01b0260ff60a01b19909216919091179055565b5f546001600160a01b031633146109815760405162461bcd60e51b815260040161060090611df9565b601855565b5f546001600160a01b031633146109af5760405162461bcd60e51b815260040161060090611df9565b6005841115610a0e5760405162461bcd60e51b815260206004820152602560248201527f4275792072657761726473206d757374206265206265747765656e20302520616044820152646e6420352560d81b6064820152608401610600565b6032821115610a6a5760405162461bcd60e51b815260206004820152602260248201527f42757920746178206d757374206265206265747765656e20302520616e642035604482015261302560f01b6064820152608401610600565b6005831115610aca5760405162461bcd60e51b815260206004820152602660248201527f53656c6c2072657761726473206d757374206265206265747765656e20302520604482015265616e6420352560d01b6064820152608401610600565b6063811115610b275760405162461bcd60e51b815260206004820152602360248201527f53656c6c20746178206d757374206265206265747765656e20302520616e642060448201526239392560e81b6064820152608401610600565b600893909355600a91909155600955600b55565b5f61069e338484610e99565b6012546001600160a01b0316336001600160a01b03161480610b7c57506013546001600160a01b0316336001600160a01b0316145b610b84575f80fd5b5f610b8e306107e9565b90506107e681611512565b5f546001600160a01b03163314610bc25760405162461bcd60e51b815260040161060090611df9565b5f5b82811015610c30578160055f868685818110610be257610be2611e2e565b9050602002016020810190610bf79190611cbc565b6001600160a01b0316815260208101919091526040015f20805460ff191691151591909117905580610c2881611e56565b915050610bc4565b50505050565b5f546001600160a01b03163314610c5f5760405162461bcd60e51b815260040161060090611df9565b5f8111610c6a575f80fd5b6064610c7f826801236efcbcbb340000611e6e565b610c899190611e85565b60175550565b5f546001600160a01b03163314610cb85760405162461bcd60e51b815260040161060090611df9565b6001600160a01b038116610d1d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610600565b5f80546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a35f80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316610dd85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610600565b6001600160a01b038216610e395760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610600565b6001600160a01b038381165f8181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610efd5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610600565b6001600160a01b038216610f5f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610600565b5f8111610fc05760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610600565b5f546001600160a01b03848116911614801590610fea57505f546001600160a01b03838116911614155b156112c557601554600160a01b900460ff16611082575f546001600160a01b038481169116146110825760405162461bcd60e51b815260206004820152603f60248201527f544f4b454e3a2054686973206163636f756e742063616e6e6f742073656e642060448201527f746f6b656e7320756e74696c2074726164696e6720697320656e61626c6564006064820152608401610600565b6016548111156110d45760405162461bcd60e51b815260206004820152601c60248201527f544f4b454e3a204d6178205472616e73616374696f6e204c696d6974000000006044820152606401610600565b6001600160a01b0383165f9081526010602052604090205460ff1615801561111457506001600160a01b0382165f9081526010602052604090205460ff16155b61116c5760405162461bcd60e51b815260206004820152602360248201527f544f4b454e3a20596f7572206163636f756e7420697320626c61636b6c69737460448201526265642160e81b6064820152608401610600565b6015546001600160a01b038381169116146111f1576017548161118e846107e9565b6111989190611ea4565b106111f15760405162461bcd60e51b815260206004820152602360248201527f544f4b454e3a2042616c616e636520657863656564732077616c6c65742073696044820152627a652160e81b6064820152608401610600565b5f6111fb306107e9565b6018546016549192508210159082106112145760165491505b80801561122b5750601554600160a81b900460ff16155b801561124557506015546001600160a01b03868116911614155b801561125a5750601554600160b01b900460ff165b801561127e57506001600160a01b0385165f9081526005602052604090205460ff16155b80156112a257506001600160a01b0384165f9081526005602052604090205460ff16155b156112c2576112b082611512565b4780156112c0576112c047611401565b505b50505b6001600160a01b0383165f9081526005602052604090205460019060ff168061130557506001600160a01b0383165f9081526005602052604090205460ff165b8061133757506015546001600160a01b0385811691161480159061133757506015546001600160a01b03848116911614155b1561134357505f6113bd565b6015546001600160a01b03858116911614801561136e57506014546001600160a01b03848116911614155b1561138057600854600c55600954600d555b6015546001600160a01b0384811691161480156113ab57506014546001600160a01b03858116911614155b156113bd57600a54600c55600b54600d555b610c3084848484611682565b5f81848411156113ec5760405162461bcd60e51b81526004016106009190611c09565b505f6113f88486611eb7565b95945050505050565b6013546001600160a01b03166108fc61142660056114208560036116b0565b9061172e565b6040518115909202915f818181858888f1935050505015801561144b573d5f803e3d5ffd5b506012546001600160a01b03166108fc61146b60056114208560026116b0565b6040518115909202915f818181858888f1935050505015801561066e573d5f803e3d5ffd5b5f6006548211156114f65760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b6064820152608401610600565b5f6114ff61176f565b905061150b838261172e565b9392505050565b6015805460ff60a81b1916600160a81b1790556040805160028082526060820183525f9260208301908036833701905050905030815f8151811061155857611558611e2e565b6001600160a01b03928316602091820292909201810191909152601454604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156115af573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115d39190611eca565b816001815181106115e6576115e6611e2e565b6001600160a01b03928316602091820292909201015260145461160c9130911684610d76565b60145460405163791ac94760e01b81526001600160a01b039091169063791ac947906116449085905f90869030904290600401611ee5565b5f604051808303815f87803b15801561165b575f80fd5b505af115801561166d573d5f803e3d5ffd5b50506015805460ff60a81b1916905550505050565b8061168f5761168f611790565b61169a8484846117bd565b80610c3057610c30600e54600c55600f54600d55565b5f825f036116bf57505f6106a2565b5f6116ca8385611e6e565b9050826116d78583611e85565b1461150b5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610600565b5f61150b83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506118ae565b5f805f61177a6118da565b9092509050611789828261172e565b9250505090565b600c541580156117a05750600d54155b156117a757565b600c8054600e55600d8054600f555f9182905555565b5f805f805f806117cc8761191b565b6001600160a01b038f165f90815260026020526040902054959b509399509197509550935091506117fd9087611970565b6001600160a01b03808b165f9081526002602052604080822093909355908a168152205461182b90866119b1565b6001600160a01b0389165f9081526002602052604090205561184c81611a0f565b6118568483611a55565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161189b91815260200190565b60405180910390a3505050505050505050565b5f81836118ce5760405162461bcd60e51b81526004016106009190611c09565b505f6113f88486611e85565b6006545f9081906801236efcbcbb3400006118f5828261172e565b821015611912575050600654926801236efcbcbb34000092509050565b90939092509050565b5f805f805f805f805f6119338a600c54600d54611a79565b9250925092505f61194261176f565b90505f805f6119538e878787611ac5565b919e509c509a509598509396509194505050505091939550919395565b5f61150b83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506113c9565b5f806119bd8385611ea4565b90508381101561150b5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610600565b5f611a1861176f565b90505f611a2583836116b0565b305f90815260026020526040902054909150611a4190826119b1565b305f90815260026020526040902055505050565b600654611a629083611970565b600655600754611a7290826119b1565b6007555050565b5f808080611a8c606461142089896116b0565b90505f611a9e60646114208a896116b0565b90505f611ab582611aaf8b86611970565b90611970565b9992985090965090945050505050565b5f808080611ad388866116b0565b90505f611ae088876116b0565b90505f611aed88886116b0565b90505f611afe82611aaf8686611970565b939b939a50919850919650505050505050565b634e487b7160e01b5f52604160045260245ffd5b6001600160a01b03811681146107e6575f80fd5b8035611b4481611b25565b919050565b5f6020808385031215611b5a575f80fd5b823567ffffffffffffffff80821115611b71575f80fd5b818501915085601f830112611b84575f80fd5b813581811115611b9657611b96611b11565b8060051b604051601f19603f83011681018181108582111715611bbb57611bbb611b11565b604052918252848201925083810185019188831115611bd8575f80fd5b938501935b82851015611bfd57611bee85611b39565b84529385019392850192611bdd565b98975050505050505050565b5f6020808352835180828501525f5b81811015611c3457858101830151858201604001528201611c18565b505f604082860101526040601f19601f8301168501019250505092915050565b5f8060408385031215611c65575f80fd5b8235611c7081611b25565b946020939093013593505050565b5f805f60608486031215611c90575f80fd5b8335611c9b81611b25565b92506020840135611cab81611b25565b929592945050506040919091013590565b5f60208284031215611ccc575f80fd5b813561150b81611b25565b80358015158114611b44575f80fd5b5f60208284031215611cf6575f80fd5b61150b82611cd7565b5f60208284031215611d0f575f80fd5b5035919050565b5f805f8060808587031215611d29575f80fd5b5050823594602084013594506040840135936060013592509050565b5f805f60408486031215611d57575f80fd5b833567ffffffffffffffff80821115611d6e575f80fd5b818601915086601f830112611d81575f80fd5b813581811115611d8f575f80fd5b8760208260051b8501011115611da3575f80fd5b602092830195509350611db99186019050611cd7565b90509250925092565b5f8060408385031215611dd3575f80fd5b8235611dde81611b25565b91506020830135611dee81611b25565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b5f60018201611e6757611e67611e42565b5060010190565b80820281158282048414176106a2576106a2611e42565b5f82611e9f57634e487b7160e01b5f52601260045260245ffd5b500490565b808201808211156106a2576106a2611e42565b818103818111156106a2576106a2611e42565b5f60208284031215611eda575f80fd5b815161150b81611b25565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015611f335784516001600160a01b031683529383019391830191600101611f0e565b50506001600160a01b0396909616606085015250505060800152939250505056fe414e4f4e204954532054494d4520544f204c45415645205448452053484954434f494e5320414e44204255592042544345524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220fa455310929af5c39d01e7534a2630bee229204c7683748213a7e51c19d8834564736f6c63430008140033

Deployed Bytecode

0x6080604052600436106101d2575f3560e01c8063751039fc116100fd578063a2a957bb11610092578063c492f04611610062578063c492f04614610536578063dd62ed3e14610555578063ea1644d514610599578063f2fde38b146105b8575f80fd5b8063a2a957bb146104b6578063a9059cbb146104d5578063bfd79284146104f4578063c3c8cd8014610522575f80fd5b80638f70ccf7116100cd5780638f70ccf7146104355780638f9a55c01461045457806395d89b411461046957806398a5c31514610497575f80fd5b8063751039fc146103c55780637d1db4a5146103d95780637f2feddc146103ee5780638da5cb5b14610419575f80fd5b8063313ce567116101735780636fc3eaec116101435780636fc3eaec1461035f57806370a0823114610373578063715018a61461039257806374010ece146103a6575f80fd5b8063313ce567146102e757806349bd5a5e146103025780636b999053146103215780636d8aa8f814610340575f80fd5b80631694505e116101ae5780631694505e1461025757806318160ddd1461028e57806323b872dd146102b35780632fd689e3146102d2575f80fd5b8062b8cf2a146101dd57806306fdde03146101fe578063095ea7b314610228575f80fd5b366101d957005b5f80fd5b3480156101e8575f80fd5b506101fc6101f7366004611b49565b6105d7565b005b348015610209575f80fd5b50610212610672565b60405161021f9190611c09565b60405180910390f35b348015610233575f80fd5b50610247610242366004611c54565b610692565b604051901515815260200161021f565b348015610262575f80fd5b50601454610276906001600160a01b031681565b6040516001600160a01b03909116815260200161021f565b348015610299575f80fd5b506801236efcbcbb3400005b60405190815260200161021f565b3480156102be575f80fd5b506102476102cd366004611c7e565b6106a8565b3480156102dd575f80fd5b506102a560185481565b3480156102f2575f80fd5b506040516009815260200161021f565b34801561030d575f80fd5b50601554610276906001600160a01b031681565b34801561032c575f80fd5b506101fc61033b366004611cbc565b61070f565b34801561034b575f80fd5b506101fc61035a366004611ce6565b610758565b34801561036a575f80fd5b506101fc61079f565b34801561037e575f80fd5b506102a561038d366004611cbc565b6107e9565b34801561039d575f80fd5b506101fc61080a565b3480156103b1575f80fd5b506101fc6103c0366004611cff565b61087b565b3480156103d0575f80fd5b506101fc6108d4565b3480156103e4575f80fd5b506102a560165481565b3480156103f9575f80fd5b506102a5610408366004611cbc565b60116020525f908152604090205481565b348015610424575f80fd5b505f546001600160a01b0316610276565b348015610440575f80fd5b506101fc61044f366004611ce6565b610911565b34801561045f575f80fd5b506102a560175481565b348015610474575f80fd5b5060408051808201909152600681526542555942544360d01b6020820152610212565b3480156104a2575f80fd5b506101fc6104b1366004611cff565b610958565b3480156104c1575f80fd5b506101fc6104d0366004611d16565b610986565b3480156104e0575f80fd5b506102476104ef366004611c54565b610b3b565b3480156104ff575f80fd5b5061024761050e366004611cbc565b60106020525f908152604090205460ff1681565b34801561052d575f80fd5b506101fc610b47565b348015610541575f80fd5b506101fc610550366004611d45565b610b99565b348015610560575f80fd5b506102a561056f366004611dc2565b6001600160a01b039182165f90815260046020908152604080832093909416825291909152205490565b3480156105a4575f80fd5b506101fc6105b3366004611cff565b610c36565b3480156105c3575f80fd5b506101fc6105d2366004611cbc565b610c8f565b5f546001600160a01b031633146106095760405162461bcd60e51b815260040161060090611df9565b60405180910390fd5b5f5b815181101561066e57600160105f84848151811061062b5761062b611e2e565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff19169115159190911790558061066681611e56565b91505061060b565b5050565b6060604051806060016040528060308152602001611f5560309139905090565b5f61069e338484610d76565b5060015b92915050565b5f6106b4848484610e99565b610705843361070085604051806060016040528060288152602001611f85602891396001600160a01b038a165f90815260046020908152604080832033845290915290205491906113c9565b610d76565b5060019392505050565b5f546001600160a01b031633146107385760405162461bcd60e51b815260040161060090611df9565b6001600160a01b03165f908152601060205260409020805460ff19169055565b5f546001600160a01b031633146107815760405162461bcd60e51b815260040161060090611df9565b60158054911515600160b01b0260ff60b01b19909216919091179055565b6012546001600160a01b0316336001600160a01b031614806107d457506013546001600160a01b0316336001600160a01b0316145b6107dc575f80fd5b476107e681611401565b50565b6001600160a01b0381165f908152600260205260408120546106a290611490565b5f546001600160a01b031633146108335760405162461bcd60e51b815260040161060090611df9565b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b5f546001600160a01b031633146108a45760405162461bcd60e51b815260040161060090611df9565b5f81116108af575f80fd5b60646108c4826801236efcbcbb340000611e6e565b6108ce9190611e85565b60165550565b5f546001600160a01b031633146108fd5760405162461bcd60e51b815260040161060090611df9565b6801236efcbcbb3400006016819055601755565b5f546001600160a01b0316331461093a5760405162461bcd60e51b815260040161060090611df9565b60158054911515600160a01b0260ff60a01b19909216919091179055565b5f546001600160a01b031633146109815760405162461bcd60e51b815260040161060090611df9565b601855565b5f546001600160a01b031633146109af5760405162461bcd60e51b815260040161060090611df9565b6005841115610a0e5760405162461bcd60e51b815260206004820152602560248201527f4275792072657761726473206d757374206265206265747765656e20302520616044820152646e6420352560d81b6064820152608401610600565b6032821115610a6a5760405162461bcd60e51b815260206004820152602260248201527f42757920746178206d757374206265206265747765656e20302520616e642035604482015261302560f01b6064820152608401610600565b6005831115610aca5760405162461bcd60e51b815260206004820152602660248201527f53656c6c2072657761726473206d757374206265206265747765656e20302520604482015265616e6420352560d01b6064820152608401610600565b6063811115610b275760405162461bcd60e51b815260206004820152602360248201527f53656c6c20746178206d757374206265206265747765656e20302520616e642060448201526239392560e81b6064820152608401610600565b600893909355600a91909155600955600b55565b5f61069e338484610e99565b6012546001600160a01b0316336001600160a01b03161480610b7c57506013546001600160a01b0316336001600160a01b0316145b610b84575f80fd5b5f610b8e306107e9565b90506107e681611512565b5f546001600160a01b03163314610bc25760405162461bcd60e51b815260040161060090611df9565b5f5b82811015610c30578160055f868685818110610be257610be2611e2e565b9050602002016020810190610bf79190611cbc565b6001600160a01b0316815260208101919091526040015f20805460ff191691151591909117905580610c2881611e56565b915050610bc4565b50505050565b5f546001600160a01b03163314610c5f5760405162461bcd60e51b815260040161060090611df9565b5f8111610c6a575f80fd5b6064610c7f826801236efcbcbb340000611e6e565b610c899190611e85565b60175550565b5f546001600160a01b03163314610cb85760405162461bcd60e51b815260040161060090611df9565b6001600160a01b038116610d1d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610600565b5f80546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a35f80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316610dd85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610600565b6001600160a01b038216610e395760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610600565b6001600160a01b038381165f8181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610efd5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610600565b6001600160a01b038216610f5f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610600565b5f8111610fc05760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610600565b5f546001600160a01b03848116911614801590610fea57505f546001600160a01b03838116911614155b156112c557601554600160a01b900460ff16611082575f546001600160a01b038481169116146110825760405162461bcd60e51b815260206004820152603f60248201527f544f4b454e3a2054686973206163636f756e742063616e6e6f742073656e642060448201527f746f6b656e7320756e74696c2074726164696e6720697320656e61626c6564006064820152608401610600565b6016548111156110d45760405162461bcd60e51b815260206004820152601c60248201527f544f4b454e3a204d6178205472616e73616374696f6e204c696d6974000000006044820152606401610600565b6001600160a01b0383165f9081526010602052604090205460ff1615801561111457506001600160a01b0382165f9081526010602052604090205460ff16155b61116c5760405162461bcd60e51b815260206004820152602360248201527f544f4b454e3a20596f7572206163636f756e7420697320626c61636b6c69737460448201526265642160e81b6064820152608401610600565b6015546001600160a01b038381169116146111f1576017548161118e846107e9565b6111989190611ea4565b106111f15760405162461bcd60e51b815260206004820152602360248201527f544f4b454e3a2042616c616e636520657863656564732077616c6c65742073696044820152627a652160e81b6064820152608401610600565b5f6111fb306107e9565b6018546016549192508210159082106112145760165491505b80801561122b5750601554600160a81b900460ff16155b801561124557506015546001600160a01b03868116911614155b801561125a5750601554600160b01b900460ff165b801561127e57506001600160a01b0385165f9081526005602052604090205460ff16155b80156112a257506001600160a01b0384165f9081526005602052604090205460ff16155b156112c2576112b082611512565b4780156112c0576112c047611401565b505b50505b6001600160a01b0383165f9081526005602052604090205460019060ff168061130557506001600160a01b0383165f9081526005602052604090205460ff165b8061133757506015546001600160a01b0385811691161480159061133757506015546001600160a01b03848116911614155b1561134357505f6113bd565b6015546001600160a01b03858116911614801561136e57506014546001600160a01b03848116911614155b1561138057600854600c55600954600d555b6015546001600160a01b0384811691161480156113ab57506014546001600160a01b03858116911614155b156113bd57600a54600c55600b54600d555b610c3084848484611682565b5f81848411156113ec5760405162461bcd60e51b81526004016106009190611c09565b505f6113f88486611eb7565b95945050505050565b6013546001600160a01b03166108fc61142660056114208560036116b0565b9061172e565b6040518115909202915f818181858888f1935050505015801561144b573d5f803e3d5ffd5b506012546001600160a01b03166108fc61146b60056114208560026116b0565b6040518115909202915f818181858888f1935050505015801561066e573d5f803e3d5ffd5b5f6006548211156114f65760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b6064820152608401610600565b5f6114ff61176f565b905061150b838261172e565b9392505050565b6015805460ff60a81b1916600160a81b1790556040805160028082526060820183525f9260208301908036833701905050905030815f8151811061155857611558611e2e565b6001600160a01b03928316602091820292909201810191909152601454604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156115af573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115d39190611eca565b816001815181106115e6576115e6611e2e565b6001600160a01b03928316602091820292909201015260145461160c9130911684610d76565b60145460405163791ac94760e01b81526001600160a01b039091169063791ac947906116449085905f90869030904290600401611ee5565b5f604051808303815f87803b15801561165b575f80fd5b505af115801561166d573d5f803e3d5ffd5b50506015805460ff60a81b1916905550505050565b8061168f5761168f611790565b61169a8484846117bd565b80610c3057610c30600e54600c55600f54600d55565b5f825f036116bf57505f6106a2565b5f6116ca8385611e6e565b9050826116d78583611e85565b1461150b5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610600565b5f61150b83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506118ae565b5f805f61177a6118da565b9092509050611789828261172e565b9250505090565b600c541580156117a05750600d54155b156117a757565b600c8054600e55600d8054600f555f9182905555565b5f805f805f806117cc8761191b565b6001600160a01b038f165f90815260026020526040902054959b509399509197509550935091506117fd9087611970565b6001600160a01b03808b165f9081526002602052604080822093909355908a168152205461182b90866119b1565b6001600160a01b0389165f9081526002602052604090205561184c81611a0f565b6118568483611a55565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161189b91815260200190565b60405180910390a3505050505050505050565b5f81836118ce5760405162461bcd60e51b81526004016106009190611c09565b505f6113f88486611e85565b6006545f9081906801236efcbcbb3400006118f5828261172e565b821015611912575050600654926801236efcbcbb34000092509050565b90939092509050565b5f805f805f805f805f6119338a600c54600d54611a79565b9250925092505f61194261176f565b90505f805f6119538e878787611ac5565b919e509c509a509598509396509194505050505091939550919395565b5f61150b83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506113c9565b5f806119bd8385611ea4565b90508381101561150b5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610600565b5f611a1861176f565b90505f611a2583836116b0565b305f90815260026020526040902054909150611a4190826119b1565b305f90815260026020526040902055505050565b600654611a629083611970565b600655600754611a7290826119b1565b6007555050565b5f808080611a8c606461142089896116b0565b90505f611a9e60646114208a896116b0565b90505f611ab582611aaf8b86611970565b90611970565b9992985090965090945050505050565b5f808080611ad388866116b0565b90505f611ae088876116b0565b90505f611aed88886116b0565b90505f611afe82611aaf8686611970565b939b939a50919850919650505050505050565b634e487b7160e01b5f52604160045260245ffd5b6001600160a01b03811681146107e6575f80fd5b8035611b4481611b25565b919050565b5f6020808385031215611b5a575f80fd5b823567ffffffffffffffff80821115611b71575f80fd5b818501915085601f830112611b84575f80fd5b813581811115611b9657611b96611b11565b8060051b604051601f19603f83011681018181108582111715611bbb57611bbb611b11565b604052918252848201925083810185019188831115611bd8575f80fd5b938501935b82851015611bfd57611bee85611b39565b84529385019392850192611bdd565b98975050505050505050565b5f6020808352835180828501525f5b81811015611c3457858101830151858201604001528201611c18565b505f604082860101526040601f19601f8301168501019250505092915050565b5f8060408385031215611c65575f80fd5b8235611c7081611b25565b946020939093013593505050565b5f805f60608486031215611c90575f80fd5b8335611c9b81611b25565b92506020840135611cab81611b25565b929592945050506040919091013590565b5f60208284031215611ccc575f80fd5b813561150b81611b25565b80358015158114611b44575f80fd5b5f60208284031215611cf6575f80fd5b61150b82611cd7565b5f60208284031215611d0f575f80fd5b5035919050565b5f805f8060808587031215611d29575f80fd5b5050823594602084013594506040840135936060013592509050565b5f805f60408486031215611d57575f80fd5b833567ffffffffffffffff80821115611d6e575f80fd5b818601915086601f830112611d81575f80fd5b813581811115611d8f575f80fd5b8760208260051b8501011115611da3575f80fd5b602092830195509350611db99186019050611cd7565b90509250925092565b5f8060408385031215611dd3575f80fd5b8235611dde81611b25565b91506020830135611dee81611b25565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b5f60018201611e6757611e67611e42565b5060010190565b80820281158282048414176106a2576106a2611e42565b5f82611e9f57634e487b7160e01b5f52601260045260245ffd5b500490565b808201808211156106a2576106a2611e42565b818103818111156106a2576106a2611e42565b5f60208284031215611eda575f80fd5b815161150b81611b25565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015611f335784516001600160a01b031683529383019391830191600101611f0e565b50506001600160a01b0396909616606085015250505060800152939250505056fe414e4f4e204954532054494d4520544f204c45415645205448452053484954434f494e5320414e44204255592042544345524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220fa455310929af5c39d01e7534a2630bee229204c7683748213a7e51c19d8834564736f6c63430008140033

Deployed Bytecode Sourcemap

6838:14210:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15684:169;;;;;;;;;;-1:-1:-1;15684:169:0;;;;;:::i;:::-;;:::i;:::-;;9403:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10335:193;;;;;;;;;;-1:-1:-1;10335:193:0;;;;;:::i;:::-;;:::i;:::-;;;2585:14:1;;2578:22;2560:41;;2548:2;2533:18;10335:193:0;2420:187:1;8220:41:0;;;;;;;;;;-1:-1:-1;8220:41:0;;;;-1:-1:-1;;;;;8220:41:0;;;;;;-1:-1:-1;;;;;2802:32:1;;;2784:51;;2772:2;2757:18;8220:41:0;2612:229:1;9683:95:0;;;;;;;;;;-1:-1:-1;7431:19:0;9683:95;;;2992:25:1;;;2980:2;2965:18;9683:95:0;2846:177:1;10537:446:0;;;;;;;;;;-1:-1:-1;10537:446:0;;;;;:::i;:::-;;:::i;8535:61::-;;;;;;;;;;;;;;;;9591:83;;;;;;;;;;-1:-1:-1;9591:83:0;;7103:1;3631:36:1;;3619:2;3604:18;9591:83:0;3489:184:1;8268:28:0;;;;;;;;;;-1:-1:-1;8268:28:0;;;;-1:-1:-1;;;;;8268:28:0;;;15862:92;;;;;;;;;;-1:-1:-1;15862:92:0;;;;;:::i;:::-;;:::i;20221:101::-;;;;;;;;;;-1:-1:-1;20221:101:0;;;;;:::i;:::-;;:::i;15440:235::-;;;;;;;;;;;;;:::i;9787:138::-;;;;;;;;;;-1:-1:-1;9787:138:0;;;;;:::i;:::-;;:::i;4312:148::-;;;;;;;;;;;;;:::i;20331:166::-;;;;;;;;;;-1:-1:-1;20331:166:0;;;;;:::i;:::-;;:::i;20682:118::-;;;;;;;;;;;;;:::i;8412:53::-;;;;;;;;;;;;;;;;7959:43;;;;;;;;;;-1:-1:-1;7959:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;4096:79;;;;;;;;;;-1:-1:-1;4134:7:0;4161:6;-1:-1:-1;;;;;4161:6:0;4096:79;;15085:101;;;;;;;;;;-1:-1:-1;15085:101:0;;;;;:::i;:::-;;:::i;8472:55::-;;;;;;;;;;;;;;;;9495:87;;;;;;;;;;-1:-1:-1;9567:7:0;;;;;;;;;;;;-1:-1:-1;;;9567:7:0;;;;9495:87;;20073:139;;;;;;;;;;-1:-1:-1;20073:139:0;;;;;:::i;:::-;;:::i;19371:693::-;;;;;;;;;;-1:-1:-1;19371:693:0;;;;;:::i;:::-;;:::i;9934:199::-;;;;;;;;;;-1:-1:-1;9934:199:0;;;;;:::i;:::-;;:::i;7921:36::-;;;;;;;;;;-1:-1:-1;7921:36:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;15195:236;;;;;;;;;;;;;:::i;20809:234::-;;;;;;;;;;-1:-1:-1;20809:234:0;;;;;:::i;:::-;;:::i;10142:184::-;;;;;;;;;;-1:-1:-1;10142:184:0;;;;;:::i;:::-;-1:-1:-1;;;;;10291:18:0;;;10259:7;10291:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10142:184;20505:169;;;;;;;;;;-1:-1:-1;20505:169:0;;;;;:::i;:::-;;:::i;4469:244::-;;;;;;;;;;-1:-1:-1;4469:244:0;;;;;:::i;:::-;;:::i;15684:169::-;4224:6;;-1:-1:-1;;;;;4224:6:0;2924:10;4224:22;4216:67;;;;-1:-1:-1;;;4216:67:0;;;;;;;:::i;:::-;;;;;;;;;15760:9:::1;15755:91;15779:5;:12;15775:1;:16;15755:91;;;15830:4;15813;:14;15818:5;15824:1;15818:8;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;15813:14:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;15813:14:0;:21;;-1:-1:-1;;15813:21:0::1;::::0;::::1;;::::0;;;::::1;::::0;;15793:3;::::1;::::0;::::1;:::i;:::-;;;;15755:91;;;;15684:169:::0;:::o;9403:83::-;9440:13;9473:5;;;;;;;;;;;;;;;;;9466:12;;9403:83;:::o;10335:193::-;10437:4;10459:39;2924:10;10482:7;10491:6;10459:8;:39::i;:::-;-1:-1:-1;10516:4:0;10335:193;;;;;:::o;10537:446::-;10669:4;10686:36;10696:6;10704:9;10715:6;10686:9;:36::i;:::-;10733:220;10756:6;2924:10;10804:138;10860:6;10804:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10804:19:0;;;;;;:11;:19;;;;;;;;2924:10;10804:33;;;;;;;;;;:37;:138::i;:::-;10733:8;:220::i;:::-;-1:-1:-1;10971:4:0;10537:446;;;;;:::o;15862:92::-;4224:6;;-1:-1:-1;;;;;4224:6:0;2924:10;4224:22;4216:67;;;;-1:-1:-1;;;4216:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15926:12:0::1;15941:5;15926:12:::0;;;:4:::1;:12;::::0;;;;:20;;-1:-1:-1;;15926:20:0::1;::::0;;15862:92::o;20221:101::-;4224:6;;-1:-1:-1;;;;;4224:6:0;2924:10;4224:22;4216:67;;;;-1:-1:-1;;;4216:67:0;;;;;;;:::i;:::-;20288:11:::1;:26:::0;;;::::1;;-1:-1:-1::0;;;20288:26:0::1;-1:-1:-1::0;;;;20288:26:0;;::::1;::::0;;;::::1;::::0;;20221:101::o;15440:235::-;15506:19;;-1:-1:-1;;;;;15506:19:0;2924:10;-1:-1:-1;;;;;15490:35:0;;:72;;;-1:-1:-1;15545:17:0;;-1:-1:-1;;;;;15545:17:0;2924:10;-1:-1:-1;;;;;15529:33:0;;15490:72;15482:81;;;;;;15603:21;15635:32;15603:21;15635:12;:32::i;:::-;15471:204;15440:235::o;9787:138::-;-1:-1:-1;;;;;9900:16:0;;9853:7;9900:16;;;:7;:16;;;;;;9880:37;;:19;:37::i;4312:148::-;4224:6;;-1:-1:-1;;;;;4224:6:0;2924:10;4224:22;4216:67;;;;-1:-1:-1;;;4216:67:0;;;;;;;:::i;:::-;4419:1:::1;4403:6:::0;;4382:40:::1;::::0;-1:-1:-1;;;;;4403:6:0;;::::1;::::0;4382:40:::1;::::0;4419:1;;4382:40:::1;4450:1;4433:19:::0;;-1:-1:-1;;;;;;4433:19:0::1;::::0;;4312:148::o;20331:166::-;4224:6;;-1:-1:-1;;;;;4224:6:0;2924:10;4224:22;4216:67;;;;-1:-1:-1;;;4216:67:0;;;;;;;:::i;:::-;20429:1:::1;20415:13;:15;20407:24;;;::::0;::::1;;20486:3;20458:23;20468:13:::0;7431:19:::1;20458:23;:::i;:::-;20457:32;;;;:::i;:::-;20442:12;:47:::0;-1:-1:-1;20331:166:0:o;20682:118::-;4224:6;;-1:-1:-1;;;;;4224:6:0;2924:10;4224:22;4216:67;;;;-1:-1:-1;;;4216:67:0;;;;;;;:::i;:::-;7431:19:::1;20735:12;:22:::0;;;20768:14:::1;:24:::0;20682:118::o;15085:101::-;4224:6;;-1:-1:-1;;;;;4224:6:0;2924:10;4224:22;4216:67;;;;-1:-1:-1;;;4216:67:0;;;;;;;:::i;:::-;15152:11:::1;:26:::0;;;::::1;;-1:-1:-1::0;;;15152:26:0::1;-1:-1:-1::0;;;;15152:26:0;;::::1;::::0;;;::::1;::::0;;15085:101::o;20073:139::-;4224:6;;-1:-1:-1;;;;;4224:6:0;2924:10;4224:22;4216:67;;;;-1:-1:-1;;;4216:67:0;;;;;;;:::i;:::-;20164:19:::1;:40:::0;20073:139::o;19371:693::-;4224:6;;-1:-1:-1;;;;;4224:6:0;2924:10;4224:22;4216:67;;;;-1:-1:-1;;;4216:67:0;;;;;;;:::i;:::-;19552:1:::1;19535:13;:18;;19505:90;;;::::0;-1:-1:-1;;;19505:90:0;;7512:2:1;19505:90:0::1;::::0;::::1;7494:21:1::0;7551:2;7531:18;;;7524:30;7590:34;7570:18;;;7563:62;-1:-1:-1;;;7641:18:1;;;7634:35;7686:19;;19505:90:0::1;7310:401:1::0;19505:90:0::1;19649:2;19634:11;:17;;19606:84;;;::::0;-1:-1:-1;;;19606:84:0;;7918:2:1;19606:84:0::1;::::0;::::1;7900:21:1::0;7957:2;7937:18;;;7930:30;7996:34;7976:18;;;7969:62;-1:-1:-1;;;8047:18:1;;;8040:32;8089:19;;19606:84:0::1;7716:398:1::0;19606:84:0::1;19750:1;19732:14;:19;;19701:93;;;::::0;-1:-1:-1;;;19701:93:0;;8321:2:1;19701:93:0::1;::::0;::::1;8303:21:1::0;8360:2;8340:18;;;8333:30;8399:34;8379:18;;;8372:62;-1:-1:-1;;;8450:18:1;;;8443:36;8496:19;;19701:93:0::1;8119:402:1::0;19701:93:0::1;19850:2;19834:12;:18;;19805:87;;;::::0;-1:-1:-1;;;19805:87:0;;8728:2:1;19805:87:0::1;::::0;::::1;8710:21:1::0;8767:2;8747:18;;;8740:30;8806:34;8786:18;;;8779:62;-1:-1:-1;;;8857:18:1;;;8850:33;8900:19;;19805:87:0::1;8526:399:1::0;19805:87:0::1;19905:14;:30:::0;;;;19946:15:::1;:32:::0;;;;19989:12:::1;:26:::0;20026:13:::1;:28:::0;19371:693::o;9934:199::-;10039:4;10061:42;2924:10;10085:9;10096:6;10061:9;:42::i;15195:236::-;15261:19;;-1:-1:-1;;;;;15261:19:0;2924:10;-1:-1:-1;;;;;15245:35:0;;:72;;;-1:-1:-1;15300:17:0;;-1:-1:-1;;;;;15300:17:0;2924:10;-1:-1:-1;;;;;15284:33:0;;15245:72;15237:81;;;;;;15329:23;15355:24;15373:4;15355:9;:24::i;:::-;15329:50;;15390:33;15407:15;15390:16;:33::i;20809:234::-;4224:6;;-1:-1:-1;;;;;4224:6:0;2924:10;4224:22;4216:67;;;;-1:-1:-1;;;4216:67:0;;;;;;;:::i;:::-;20926:9:::1;20922:114;20941:19:::0;;::::1;20922:114;;;21016:8;20982:18;:31;21001:8;;21010:1;21001:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;20982:31:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;20982:31:0;:42;;-1:-1:-1;;20982:42:0::1;::::0;::::1;;::::0;;;::::1;::::0;;20962:3;::::1;::::0;::::1;:::i;:::-;;;;20922:114;;;;20809:234:::0;;;:::o;20505:169::-;4224:6;;-1:-1:-1;;;;;4224:6:0;2924:10;4224:22;4216:67;;;;-1:-1:-1;;;4216:67:0;;;;;;;:::i;:::-;20604:1:::1;20590:13;:15;20582:24;;;::::0;::::1;;20663:3;20635:23;20645:13:::0;7431:19:::1;20635:23;:::i;:::-;20634:32;;;;:::i;:::-;20617:14;:49:::0;-1:-1:-1;20505:169:0:o;4469:244::-;4224:6;;-1:-1:-1;;;;;4224:6:0;2924:10;4224:22;4216:67;;;;-1:-1:-1;;;4216:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4558:22:0;::::1;4550:73;;;::::0;-1:-1:-1;;;4550:73:0;;9132:2:1;4550:73:0::1;::::0;::::1;9114:21:1::0;9171:2;9151:18;;;9144:30;9210:34;9190:18;;;9183:62;-1:-1:-1;;;9261:18:1;;;9254:36;9307:19;;4550:73:0::1;8930:402:1::0;4550:73:0::1;4660:6;::::0;;4639:38:::1;::::0;-1:-1:-1;;;;;4639:38:0;;::::1;::::0;4660:6;::::1;::::0;4639:38:::1;::::0;::::1;4688:6;:17:::0;;-1:-1:-1;;;;;;4688:17:0::1;-1:-1:-1::0;;;;;4688:17:0;;;::::1;::::0;;;::::1;::::0;;4469:244::o;11680:369::-;-1:-1:-1;;;;;11807:19:0;;11799:68;;;;-1:-1:-1;;;11799:68:0;;9539:2:1;11799:68:0;;;9521:21:1;9578:2;9558:18;;;9551:30;9617:34;9597:18;;;9590:62;-1:-1:-1;;;9668:18:1;;;9661:34;9712:19;;11799:68:0;9337:400:1;11799:68:0;-1:-1:-1;;;;;11886:21:0;;11878:68;;;;-1:-1:-1;;;11878:68:0;;9944:2:1;11878:68:0;;;9926:21:1;9983:2;9963:18;;;9956:30;10022:34;10002:18;;;9995:62;-1:-1:-1;;;10073:18:1;;;10066:32;10115:19;;11878:68:0;9742:398:1;11878:68:0;-1:-1:-1;;;;;11957:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;12009:32;;2992:25:1;;;12009:32:0;;2965:18:1;12009:32:0;;;;;;;11680:369;;;:::o;12058:2343::-;-1:-1:-1;;;;;12180:18:0;;12172:68;;;;-1:-1:-1;;;12172:68:0;;10347:2:1;12172:68:0;;;10329:21:1;10386:2;10366:18;;;10359:30;10425:34;10405:18;;;10398:62;-1:-1:-1;;;10476:18:1;;;10469:35;10521:19;;12172:68:0;10145:401:1;12172:68:0;-1:-1:-1;;;;;12259:16:0;;12251:64;;;;-1:-1:-1;;;12251:64:0;;10753:2:1;12251:64:0;;;10735:21:1;10792:2;10772:18;;;10765:30;10831:34;10811:18;;;10804:62;-1:-1:-1;;;10882:18:1;;;10875:33;10925:19;;12251:64:0;10551:399:1;12251:64:0;12343:1;12334:6;:10;12326:64;;;;-1:-1:-1;;;12326:64:0;;11157:2:1;12326:64:0;;;11139:21:1;11196:2;11176:18;;;11169:30;11235:34;11215:18;;;11208:62;-1:-1:-1;;;11286:18:1;;;11279:39;11335:19;;12326:64:0;10955:405:1;12326:64:0;4134:7;4161:6;-1:-1:-1;;;;;12408:15:0;;;4161:6;;12408:15;;;;:32;;-1:-1:-1;4134:7:0;4161:6;-1:-1:-1;;;;;12427:13:0;;;4161:6;;12427:13;;12408:32;12404:1265;;;12498:11;;-1:-1:-1;;;12498:11:0;;;;12493:144;;4134:7;4161:6;-1:-1:-1;;;;;12538:15:0;;;4161:6;;12538:15;12530:91;;;;-1:-1:-1;;;12530:91:0;;11567:2:1;12530:91:0;;;11549:21:1;11606:2;11586:18;;;11579:30;11645:34;11625:18;;;11618:62;11716:33;11696:18;;;11689:61;11767:19;;12530:91:0;11365:427:1;12530:91:0;12672:12;;12662:6;:22;;12654:63;;;;-1:-1:-1;;;12654:63:0;;11999:2:1;12654:63:0;;;11981:21:1;12038:2;12018:18;;;12011:30;12077;12057:18;;;12050:58;12125:18;;12654:63:0;11797:352:1;12654:63:0;-1:-1:-1;;;;;12741:10:0;;;;;;:4;:10;;;;;;;;12740:11;:24;;;;-1:-1:-1;;;;;;12756:8:0;;;;;;:4;:8;;;;;;;;12755:9;12740:24;12732:72;;;;-1:-1:-1;;;12732:72:0;;12356:2:1;12732:72:0;;;12338:21:1;12395:2;12375:18;;;12368:30;12434:34;12414:18;;;12407:62;-1:-1:-1;;;12485:18:1;;;12478:33;12528:19;;12732:72:0;12154:399:1;12732:72:0;12831:13;;-1:-1:-1;;;;;12825:19:0;;;12831:13;;12825:19;12822:146;;12898:14;;12889:6;12873:13;12883:2;12873:9;:13::i;:::-;:22;;;;:::i;:::-;:39;12865:87;;;;-1:-1:-1;;;12865:87:0;;12890:2:1;12865:87:0;;;12872:21:1;12929:2;12909:18;;;12902:30;12968:34;12948:18;;;12941:62;-1:-1:-1;;;13019:18:1;;;13012:33;13062:19;;12865:87:0;12688:399:1;12865:87:0;12985:28;13016:24;13034:4;13016:9;:24::i;:::-;13094:19;;13158:12;;12985:55;;-1:-1:-1;13070:43:0;;;;13134:36;;13131:124;;13227:12;;13204:35;;13131:124;13276:7;:18;;;;-1:-1:-1;13288:6:0;;-1:-1:-1;;;13288:6:0;;;;13287:7;13276:18;:43;;;;-1:-1:-1;13306:13:0;;-1:-1:-1;;;;;13298:21:0;;;13306:13;;13298:21;;13276:43;:58;;;;-1:-1:-1;13323:11:0;;-1:-1:-1;;;13323:11:0;;;;13276:58;:87;;;;-1:-1:-1;;;;;;13339:24:0;;;;;;:18;:24;;;;;;;;13338:25;13276:87;:114;;;;-1:-1:-1;;;;;;13368:22:0;;;;;;:18;:22;;;;;;;;13367:23;13276:114;13272:386;;;13411:38;13428:20;13411:16;:38::i;:::-;13497:21;13541:22;;13537:106;;13588:35;13601:21;13588:12;:35::i;:::-;13392:266;13272:386;12442:1227;;12404:1265;-1:-1:-1;;;;;13747:24:0;;13682:12;13747:24;;;:18;:24;;;;;;13697:4;;13747:24;;;:50;;-1:-1:-1;;;;;;13775:22:0;;;;;;:18;:22;;;;;;;;13747:50;13746:102;;;-1:-1:-1;13811:13:0;;-1:-1:-1;;;;;13803:21:0;;;13811:13;;13803:21;;;;:44;;-1:-1:-1;13834:13:0;;-1:-1:-1;;;;;13828:19:0;;;13834:13;;13828:19;;13803:44;13742:597;;;-1:-1:-1;13875:5:0;13742:597;;;13959:13;;-1:-1:-1;;;;;13951:21:0;;;13959:13;;13951:21;:55;;;;-1:-1:-1;13990:15:0;;-1:-1:-1;;;;;13976:30:0;;;13990:15;;13976:30;;13951:55;13948:162;;;14039:14;;14027:9;:26;14082:12;;14072:7;:22;13948:162;14170:13;;-1:-1:-1;;;;;14164:19:0;;;14170:13;;14164:19;:55;;;;-1:-1:-1;14203:15:0;;-1:-1:-1;;;;;14187:32:0;;;14203:15;;14187:32;;14164:55;14160:165;;;14252:15;;14240:9;:27;14296:13;;14286:7;:23;14160:165;14352:41;14367:4;14373:2;14377:6;14385:7;14352:14;:41::i;5080:224::-;5200:7;5236:12;5228:6;;;;5220:29;;;;-1:-1:-1;;;5220:29:0;;;;;;;;:::i;:::-;-1:-1:-1;5260:9:0;5272:5;5276:1;5272;:5;:::i;:::-;5260:17;5080:224;-1:-1:-1;;;;;5080:224:0:o;14902:174::-;14959:17;;-1:-1:-1;;;;;14959:17:0;:48;14986:20;15004:1;14986:13;:6;14997:1;14986:10;:13::i;:::-;:17;;:20::i;:::-;14959:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15018:19:0;;-1:-1:-1;;;;;15018:19:0;:50;15047:20;15065:1;15047:13;:6;15058:1;15047:10;:13::i;:20::-;15018:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10992:323;11087:7;11145;;11134;:18;;11112:110;;;;-1:-1:-1;;;11112:110:0;;13427:2:1;11112:110:0;;;13409:21:1;13466:2;13446:18;;;13439:30;13505:34;13485:18;;;13478:62;-1:-1:-1;;;13556:18:1;;;13549:40;13606:19;;11112:110:0;13225:406:1;11112:110:0;11233:19;11255:10;:8;:10::i;:::-;11233:32;-1:-1:-1;11283:24:0;:7;11233:32;11283:11;:24::i;:::-;11276:31;10992:323;-1:-1:-1;;;10992:323:0:o;14410:483::-;8691:6;:13;;-1:-1:-1;;;;8691:13:0;-1:-1:-1;;;8691:13:0;;;14512:16:::1;::::0;;14526:1:::1;14512:16:::0;;;;;::::1;::::0;;-1:-1:-1;;14512:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;14512:16:0::1;14488:40;;14557:4;14539;14544:1;14539:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;14539:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;;:23;;;;14583:15:::1;::::0;:22:::1;::::0;;-1:-1:-1;;;14583:22:0;;;;:15;;;::::1;::::0;:20:::1;::::0;:22:::1;::::0;;::::1;::::0;14539:7;;14583:22;;;;;:15;:22:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;14573:4;14578:1;14573:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;14573:32:0;;::::1;:7;::::0;;::::1;::::0;;;;;:32;14648:15:::1;::::0;14616:62:::1;::::0;14633:4:::1;::::0;14648:15:::1;14666:11:::0;14616:8:::1;:62::i;:::-;14689:15;::::0;:196:::1;::::0;-1:-1:-1;;;14689:196:0;;-1:-1:-1;;;;;14689:15:0;;::::1;::::0;:66:::1;::::0;:196:::1;::::0;14770:11;;14689:15:::1;::::0;14812:4;;14839::::1;::::0;14859:15:::1;::::0;14689:196:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;8727:6:0;:14;;-1:-1:-1;;;;8727:14:0;;;-1:-1:-1;;;;14410:483:0:o;15963:282::-;16119:7;16114:28;;16128:14;:12;:14::i;:::-;16153:44;16171:6;16179:9;16190:6;16153:17;:44::i;:::-;16213:7;16208:29;;16222:15;11610:17;;11598:9;:29;11648:15;;11638:7;:25;11554:117;5313:246;5371:7;5395:1;5400;5395:6;5391:47;;-1:-1:-1;5425:1:0;5418:8;;5391:47;5448:9;5460:5;5464:1;5460;:5;:::i;:::-;5448:17;-1:-1:-1;5493:1:0;5484:5;5488:1;5448:17;5484:5;:::i;:::-;:10;5476:56;;;;-1:-1:-1;;;5476:56:0;;15079:2:1;5476:56:0;;;15061:21:1;15118:2;15098:18;;;15091:30;15157:34;15137:18;;;15130:62;-1:-1:-1;;;15208:18:1;;;15201:31;15249:19;;5476:56:0;14877:397:1;5568:132:0;5626:7;5653:39;5657:1;5660;5653:39;;;;;;;;;;;;;;;;;:3;:39::i;18932:164::-;18974:7;18995:15;19012;19031:19;:17;:19::i;:::-;18994:56;;-1:-1:-1;18994:56:0;-1:-1:-1;19068:20:0;18994:56;;19068:11;:20::i;:::-;19061:27;;;;18932:164;:::o;11324:221::-;11371:9;;:14;:30;;;;-1:-1:-1;11389:7:0;;:12;11371:30;11367:43;;;11324:221::o;11367:43::-;11443:9;;;11423:17;:29;11481:7;;;11463:15;:25;-1:-1:-1;11502:13:0;;;;11526:11;11324:221::o;16254:610::-;16401:15;16431:23;16469:12;16496:23;16534:12;16561:13;16588:19;16599:7;16588:10;:19::i;:::-;-1:-1:-1;;;;;16636:15:0;;;;;;:7;:15;;;;;;16386:221;;-1:-1:-1;16386:221:0;;-1:-1:-1;16386:221:0;;-1:-1:-1;16386:221:0;-1:-1:-1;16386:221:0;-1:-1:-1;16386:221:0;-1:-1:-1;16636:28:0;;16386:221;16636:19;:28::i;:::-;-1:-1:-1;;;;;16618:15:0;;;;;;;:7;:15;;;;;;:46;;;;16696:18;;;;;;;:39;;16719:15;16696:22;:39::i;:::-;-1:-1:-1;;;;;16675:18:0;;;;;;:7;:18;;;;;:60;16746:16;16756:5;16746:9;:16::i;:::-;16773:23;16785:4;16791;16773:11;:23::i;:::-;16829:9;-1:-1:-1;;;;;16812:44:0;16821:6;-1:-1:-1;;;;;16812:44:0;;16840:15;16812:44;;;;2992:25:1;;2980:2;2965:18;;2846:177;16812:44:0;;;;;;;;16375:489;;;;;;16254:610;;;:::o;5709:223::-;5829:7;5864:12;5857:5;5849:28;;;;-1:-1:-1;;;5849:28:0;;;;;;;;:::i;:::-;-1:-1:-1;5888:9:0;5900:5;5904:1;5900;:5;:::i;19105:257::-;19203:7;;19156;;;;7431:19;19271:20;19203:7;7431:19;19271:11;:20::i;:::-;19261:7;:30;19257:61;;;-1:-1:-1;;19301:7:0;;;7431:19;;-1:-1:-1;19105:257:0;-1:-1:-1;19105:257:0:o;19257:61::-;19337:7;;19346;;-1:-1:-1;19105:257:0;-1:-1:-1;19105:257:0:o;17287:615::-;17387:7;17409;17431;17453;17475;17497;17533:23;17558:12;17572:13;17602:40;17614:7;17623:9;;17634:7;;17602:11;:40::i;:::-;17532:110;;;;;;17653:19;17675:10;:8;:10::i;:::-;17653:32;;17697:15;17714:23;17739:12;17768:46;17780:7;17789:4;17795:5;17802:11;17768;:46::i;:::-;17696:118;;-1:-1:-1;17696:118:0;-1:-1:-1;17696:118:0;-1:-1:-1;17865:15:0;;-1:-1:-1;17882:4:0;;-1:-1:-1;17888:5:0;;-1:-1:-1;;;;;17287:615:0;;;;;;;:::o;4935:136::-;4993:7;5020:43;5024:1;5027;5020:43;;;;;;;;;;;;;;;;;:3;:43::i;4747:179::-;4805:7;;4837:5;4841:1;4837;:5;:::i;:::-;4825:17;;4866:1;4861;:6;;4853:46;;;;-1:-1:-1;;;4853:46:0;;15481:2:1;4853:46:0;;;15463:21:1;15520:2;15500:18;;;15493:30;15559:29;15539:18;;;15532:57;15606:18;;4853:46:0;15279:351:1;16873:211:0;16926:19;16948:10;:8;:10::i;:::-;16926:32;-1:-1:-1;16969:13:0;16985:22;:5;16926:32;16985:9;:22::i;:::-;17059:4;17043:22;;;;:7;:22;;;;;;16969:38;;-1:-1:-1;17043:33:0;;16969:38;17043:26;:33::i;:::-;17034:4;17018:22;;;;:7;:22;;;;;:58;-1:-1:-1;;;16873:211:0:o;17093:147::-;17171:7;;:17;;17183:4;17171:11;:17::i;:::-;17161:7;:27;17212:10;;:20;;17227:4;17212:14;:20::i;:::-;17199:10;:33;-1:-1:-1;;17093:147:0:o;17911:469::-;18080:7;;;;18174:30;18200:3;18174:21;:7;18186:8;18174:11;:21::i;:30::-;18159:45;-1:-1:-1;18215:13:0;18231:28;18255:3;18231:19;:7;18243:6;18231:11;:19::i;:28::-;18215:44;-1:-1:-1;18270:23:0;18296:28;18215:44;18296:17;:7;18308:4;18296:11;:17::i;:::-;:21;;:28::i;:::-;18270:54;18360:4;;-1:-1:-1;18366:5:0;;-1:-1:-1;17911:469:0;;-1:-1:-1;;;;;17911:469:0:o;18389:534::-;18583:7;;;;18680:24;:7;18692:11;18680;:24::i;:::-;18662:42;-1:-1:-1;18715:12:0;18730:21;:4;18739:11;18730:8;:21::i;:::-;18715:36;-1:-1:-1;18762:13:0;18778:22;:5;18788:11;18778:9;:22::i;:::-;18762:38;-1:-1:-1;18811:23:0;18837:28;18762:38;18837:17;:7;18849:4;18837:11;:17::i;:28::-;18884:7;;;;-1:-1:-1;18910:4:0;;-1:-1:-1;18389:534:0;;-1:-1:-1;;;;;;;18389:534:0:o;14:127:1:-;75:10;70:3;66:20;63:1;56:31;106:4;103:1;96:15;130:4;127:1;120:15;146:131;-1:-1:-1;;;;;221:31:1;;211:42;;201:70;;267:1;264;257:12;282:134;350:20;;379:31;350:20;379:31;:::i;:::-;282:134;;;:::o;421:1121::-;505:6;536:2;579;567:9;558:7;554:23;550:32;547:52;;;595:1;592;585:12;547:52;635:9;622:23;664:18;705:2;697:6;694:14;691:34;;;721:1;718;711:12;691:34;759:6;748:9;744:22;734:32;;804:7;797:4;793:2;789:13;785:27;775:55;;826:1;823;816:12;775:55;862:2;849:16;884:2;880;877:10;874:36;;;890:18;;:::i;:::-;936:2;933:1;929:10;968:2;962:9;1031:2;1027:7;1022:2;1018;1014:11;1010:25;1002:6;998:38;1086:6;1074:10;1071:22;1066:2;1054:10;1051:18;1048:46;1045:72;;;1097:18;;:::i;:::-;1133:2;1126:22;1183:18;;;1217:15;;;;-1:-1:-1;1259:11:1;;;1255:20;;;1287:19;;;1284:39;;;1319:1;1316;1309:12;1284:39;1343:11;;;;1363:148;1379:6;1374:3;1371:15;1363:148;;;1445:23;1464:3;1445:23;:::i;:::-;1433:36;;1396:12;;;;1489;;;;1363:148;;;1530:6;421:1121;-1:-1:-1;;;;;;;;421:1121:1:o;1547:548::-;1659:4;1688:2;1717;1706:9;1699:21;1749:6;1743:13;1792:6;1787:2;1776:9;1772:18;1765:34;1817:1;1827:140;1841:6;1838:1;1835:13;1827:140;;;1936:14;;;1932:23;;1926:30;1902:17;;;1921:2;1898:26;1891:66;1856:10;;1827:140;;;1831:3;2016:1;2011:2;2002:6;1991:9;1987:22;1983:31;1976:42;2086:2;2079;2075:7;2070:2;2062:6;2058:15;2054:29;2043:9;2039:45;2035:54;2027:62;;;;1547:548;;;;:::o;2100:315::-;2168:6;2176;2229:2;2217:9;2208:7;2204:23;2200:32;2197:52;;;2245:1;2242;2235:12;2197:52;2284:9;2271:23;2303:31;2328:5;2303:31;:::i;:::-;2353:5;2405:2;2390:18;;;;2377:32;;-1:-1:-1;;;2100:315:1:o;3028:456::-;3105:6;3113;3121;3174:2;3162:9;3153:7;3149:23;3145:32;3142:52;;;3190:1;3187;3180:12;3142:52;3229:9;3216:23;3248:31;3273:5;3248:31;:::i;:::-;3298:5;-1:-1:-1;3355:2:1;3340:18;;3327:32;3368:33;3327:32;3368:33;:::i;:::-;3028:456;;3420:7;;-1:-1:-1;;;3474:2:1;3459:18;;;;3446:32;;3028:456::o;3886:247::-;3945:6;3998:2;3986:9;3977:7;3973:23;3969:32;3966:52;;;4014:1;4011;4004:12;3966:52;4053:9;4040:23;4072:31;4097:5;4072:31;:::i;4138:160::-;4203:20;;4259:13;;4252:21;4242:32;;4232:60;;4288:1;4285;4278:12;4303:180;4359:6;4412:2;4400:9;4391:7;4387:23;4383:32;4380:52;;;4428:1;4425;4418:12;4380:52;4451:26;4467:9;4451:26;:::i;4488:180::-;4547:6;4600:2;4588:9;4579:7;4575:23;4571:32;4568:52;;;4616:1;4613;4606:12;4568:52;-1:-1:-1;4639:23:1;;4488:180;-1:-1:-1;4488:180:1:o;4673:385::-;4759:6;4767;4775;4783;4836:3;4824:9;4815:7;4811:23;4807:33;4804:53;;;4853:1;4850;4843:12;4804:53;-1:-1:-1;;4876:23:1;;;4946:2;4931:18;;4918:32;;-1:-1:-1;4997:2:1;4982:18;;4969:32;;5048:2;5033:18;5020:32;;-1:-1:-1;4673:385:1;-1:-1:-1;4673:385:1:o;5063:689::-;5155:6;5163;5171;5224:2;5212:9;5203:7;5199:23;5195:32;5192:52;;;5240:1;5237;5230:12;5192:52;5280:9;5267:23;5309:18;5350:2;5342:6;5339:14;5336:34;;;5366:1;5363;5356:12;5336:34;5404:6;5393:9;5389:22;5379:32;;5449:7;5442:4;5438:2;5434:13;5430:27;5420:55;;5471:1;5468;5461:12;5420:55;5511:2;5498:16;5537:2;5529:6;5526:14;5523:34;;;5553:1;5550;5543:12;5523:34;5608:7;5601:4;5591:6;5588:1;5584:14;5580:2;5576:23;5572:34;5569:47;5566:67;;;5629:1;5626;5619:12;5566:67;5660:4;5652:13;;;;-1:-1:-1;5684:6:1;-1:-1:-1;5709:37:1;;5725:20;;;-1:-1:-1;5709:37:1;:::i;:::-;5699:47;;5063:689;;;;;:::o;5757:388::-;5825:6;5833;5886:2;5874:9;5865:7;5861:23;5857:32;5854:52;;;5902:1;5899;5892:12;5854:52;5941:9;5928:23;5960:31;5985:5;5960:31;:::i;:::-;6010:5;-1:-1:-1;6067:2:1;6052:18;;6039:32;6080:33;6039:32;6080:33;:::i;:::-;6132:7;6122:17;;;5757:388;;;;;:::o;6150:356::-;6352:2;6334:21;;;6371:18;;;6364:30;6430:34;6425:2;6410:18;;6403:62;6497:2;6482:18;;6150:356::o;6511:127::-;6572:10;6567:3;6563:20;6560:1;6553:31;6603:4;6600:1;6593:15;6627:4;6624:1;6617:15;6643:127;6704:10;6699:3;6695:20;6692:1;6685:31;6735:4;6732:1;6725:15;6759:4;6756:1;6749:15;6775:135;6814:3;6835:17;;;6832:43;;6855:18;;:::i;:::-;-1:-1:-1;6902:1:1;6891:13;;6775:135::o;6915:168::-;6988:9;;;7019;;7036:15;;;7030:22;;7016:37;7006:71;;7057:18;;:::i;7088:217::-;7128:1;7154;7144:132;;7198:10;7193:3;7189:20;7186:1;7179:31;7233:4;7230:1;7223:15;7261:4;7258:1;7251:15;7144:132;-1:-1:-1;7290:9:1;;7088:217::o;12558:125::-;12623:9;;;12644:10;;;12641:36;;;12657:18;;:::i;13092:128::-;13159:9;;;13180:11;;;13177:37;;;13194:18;;:::i;13636:251::-;13706:6;13759:2;13747:9;13738:7;13734:23;13730:32;13727:52;;;13775:1;13772;13765:12;13727:52;13807:9;13801:16;13826:31;13851:5;13826:31;:::i;13892:980::-;14154:4;14202:3;14191:9;14187:19;14233:6;14222:9;14215:25;14259:2;14297:6;14292:2;14281:9;14277:18;14270:34;14340:3;14335:2;14324:9;14320:18;14313:31;14364:6;14399;14393:13;14430:6;14422;14415:22;14468:3;14457:9;14453:19;14446:26;;14507:2;14499:6;14495:15;14481:29;;14528:1;14538:195;14552:6;14549:1;14546:13;14538:195;;;14617:13;;-1:-1:-1;;;;;14613:39:1;14601:52;;14708:15;;;;14673:12;;;;14649:1;14567:9;14538:195;;;-1:-1:-1;;;;;;;14789:32:1;;;;14784:2;14769:18;;14762:60;-1:-1:-1;;;14853:3:1;14838:19;14831:35;14750:3;13892:980;-1:-1:-1;;;13892:980:1:o

Swarm Source

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