ETH Price: $2,348.97 (-2.85%)

Token

The Syndicate (SYN)
 

Overview

Max Total Supply

581,356.804830046845083234 SYN

Holders

162

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.860068103176113696 SYN

Value
$0.00
0x49f89629493a06e246d48408207f60d7222adccf
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:
TheSyndicate

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 8 : TheSyndicate.sol
// SPDX-License-Identifier: MIT

pragma solidity =0.8.15;

import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "./IDEX.sol";

/*
Nos sumus syndicatus

https://t.me/EnterTheSyndicate

https://twitter.com/syndicate_hq?s=11&t=SF5_hEV5LFc704drDR_inQ

https://www.enterthesyndicate.com/

https://linktr.ee/enterthesyndicate
*/

contract TheSyndicate is ERC20, Ownable {
    //libraries
    using SafeMath for uint256;
    /******************/

    // External contracts
    IRouter public router;
    address public pair;
    /******************/

    // mappings
    mapping(address => uint256) private _holderLastTransferTimestamp;
    mapping(address => uint256) private _rOwned;

    // exclude from fees, max transaction amount and max wallet amount
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;
    mapping(address => bool) public _isExcludedMaxWalletAmount;
    mapping(address => uint256) public TotalBurnedByUser;

    // for bot tagging
    mapping(address => bool) public _isBot;

    mapping(address => bool) public automatedMarketMakerPairs;
    /******************/
    //constants
    uint256 private constant MAX = ~uint256(0);
    uint256 private constant _tTotal = 1000000 * (10**18);
    address public constant deadAddress = address(0xdead);
    /******************/

    //variables
    uint256 private _tSupply;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

    uint256 public maxTransactionAmount;
    uint256 public maxWallet;
    uint256 public swapTokensAtAmount;
    uint256 public TradingActiveBlock;

    bool private swapping;

    address public Treasury;

    bool public limitsInEffect = true;
    bool public tradingActive = false;

    uint256 public buyTotalFees;
    uint256 public buyTreasuryFee = 50;
    uint256 public buyBurnFee = 10;
    uint256 public buyReflectionFee = 50;

    uint256 public sellTotalFees;
    uint256 public sellTreasuryFee = 50;
    uint256 public sellBurnFee = 50;
    uint256 public sellReflectionFee = 10;

    uint256 public tokensForTreasury;
    uint256 public tokensForBurn;
    uint256 public tokensForReflections;

    uint256 public walletDigit;
    uint256 public transDigit;
    uint256 public swapDigit;

    /******************/

    constructor(address _treasury) ERC20("The Syndicate", "SYN") {
        IRouter _router = IRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        address _pair = IFactory(_router.factory()).createPair(
            address(this),
            _router.WETH()
        );

        router = _router;
        pair = _pair;

        excludeFromMaxTransaction(address(_router), true);
        excludeFromMaxTransaction(address(_pair), true);

        excludeFromMaxWallet(address(_pair), true);
        excludeFromMaxWallet(address(_router), true);

        _setAutomatedMarketMakerPair(address(_pair), true);

        buyTotalFees = buyTreasuryFee + buyBurnFee + buyReflectionFee;
        sellTotalFees = sellTreasuryFee + sellBurnFee + sellReflectionFee;

        Treasury = _treasury;
        _rOwned[_msgSender()] = _rTotal;
        _tSupply = _tTotal;

        walletDigit = 10;
        transDigit = 10;
        swapDigit = 5;

        maxTransactionAmount = (_tSupply * transDigit) / 1000;
        swapTokensAtAmount = (_tSupply * swapDigit) / 10000; // 0.05% swap wallet;
        maxWallet = (_tSupply * walletDigit) / 1000;

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

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);
        excludeFromMaxTransaction(Treasury, true);

        excludeFromMaxWallet(owner(), true);
        excludeFromMaxWallet(address(this), true);
        excludeFromMaxWallet(address(0xdead), true);
        excludeFromMaxWallet(Treasury, true);

        _approve(owner(), address(_router), _tSupply);
        _mint(msg.sender, _tSupply);
    }

    receive() external payable {}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        require(tradingActive != true);
        TradingActiveBlock = block.timestamp;
        tradingActive = true;
    }

    /// @param bot The bot address
    /// @param value "true" to blacklist, "false" to unblacklist
    function setBot(address bot, bool value) public onlyOwner {
        require(bot != address(router));
        require(bot != address(pair));
        require(_isBot[bot] != value);
        _isBot[bot] = value;
    }

    function setBulkBot(address[] memory bots, bool value) external onlyOwner {
        for (uint256 i; i < bots.length; i++) {
            _isBot[bots[i]] = value;
        }
    }

    // remove limits after token is stable
    function toggleLimits(bool state) external onlyOwner returns (bool) {
        require(state != limitsInEffect, " already set to that value");
        limitsInEffect = state;
        return true;
    }

    function updateDigits(
        uint256 newTrans,
        uint256 newWall,
        uint256 NewswapDigit
    ) external onlyOwner {
        require(newTrans >= 5 && newWall >= 5, "0.5% is the lowest partner");
        transDigit = newTrans;
        walletDigit = newWall;
        swapDigit = NewswapDigit;
        updateLimits();
    }

    function updateLimits() private {
        maxTransactionAmount = (_tSupply * transDigit) / 1000; // if transdigit is 10 its 1% if its 20 its 2%
        swapTokensAtAmount = (_tSupply * swapDigit) / 1000; // 0.05% swap wallet (5);
        maxWallet = (_tSupply * walletDigit) / 1000; // same applies for transdigit
    }

    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    function excludeFromMaxWallet(address updAds, bool isEx) public onlyOwner {
        _isExcludedMaxWalletAmount[updAds] = isEx;
    }

    function updateBuyFees(
        uint256 _treasuryFee,
        uint256 _burnFee,
        uint256 _reflectionFee
    ) external onlyOwner {
        buyTreasuryFee = _treasuryFee;
        buyBurnFee = _burnFee;
        buyReflectionFee = _reflectionFee;
        buyTotalFees = buyTreasuryFee + buyBurnFee + buyReflectionFee;
        require(buyTotalFees <= 250, "Must keep fees at 25% or less");
    }

    function updateSellFees(
        uint256 _treasuryFee,
        uint256 _burnFee,
        uint256 _reflectionFee
    ) external onlyOwner {
        sellTreasuryFee = _treasuryFee;
        sellBurnFee = _burnFee;
        sellReflectionFee = _reflectionFee;
        sellTotalFees = sellTreasuryFee + sellBurnFee + sellReflectionFee;
        require(sellTotalFees <= 250, "Must keep fees at 25% or less");
    }

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

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

        _setAutomatedMarketMakerPair(Pair, value);
    }

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

    function updateTreasuryWallet(address newTreasuryWallet)
        external
        onlyOwner
    {
        Treasury = newTreasuryWallet;
    }

    function isExcludedFromFees(address account) external view returns (bool) {
        return _isExcludedFromFees[account];
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        require(!_isBot[from] && !_isBot[to], "Bye Bye Bot");

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

                // when buy
                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    // if their are a 0 block sniper blacklist them
                    if (block.timestamp == TradingActiveBlock) {
                        setBot(to, true);
                    }
                }
                // when sell
                if (!_isExcludedMaxTransactionAmount[from]) {
                    require(
                        amount <= maxTransactionAmount,
                        "transfer amount exceeds the maxTransactionAmount."
                    );
                }

                if (!_isExcludedMaxWalletAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        uint256 reflectionFee = 0;

        if (takeFee) {
            // on buy
            if (automatedMarketMakerPairs[from] && to != address(router)) {
                fees = amount.mul(buyTotalFees).div(1000);
                getTokensForFees(
                    amount,
                    buyTreasuryFee,
                    buyBurnFee,
                    buyReflectionFee
                );
            }
            // on sell
            else if (automatedMarketMakerPairs[to] && from != address(router)) {
                fees = amount.mul(sellTotalFees).div(1000);
                getTokensForFees(
                    amount,
                    sellTreasuryFee,
                    sellBurnFee,
                    sellReflectionFee
                );
            }

            if (fees > 0) {
                _tokenTransfer(from, address(this), fees, 0);
                uint256 refiAmount = tokensForBurn + tokensForReflections;
                bool refiAndBurn = refiAmount > 0;

                if (refiAndBurn) {
                    burnAndReflect(refiAmount);
                }
            }

            amount -= fees;
        }

        _tokenTransfer(from, to, amount, reflectionFee);
    }

    function getTokensForFees(
        uint256 _amount,
        uint256 _treasuryFee,
        uint256 _burnFee,
        uint256 _reflectionFee
    ) private {
        tokensForTreasury += _amount.mul(_treasuryFee).div(1000);
        tokensForBurn += _amount.mul(_burnFee).div(1000);
        tokensForReflections += _amount.mul(_reflectionFee).div(1000);
    }

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

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

        // make the swap
        router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        bool success;

        if (contractBalance == 0) {
            return;
        }

        swapTokensForETH(contractBalance);

        tokensForTreasury = 0;
        (success, ) = payable(address(Treasury)).call{
            value: address(this).balance
        }("");
    }

    function totalSupply() public view override returns (uint256) {
        return _tSupply;
    }

    function balanceOf(address account) public view override returns (uint256) {
        return tokenFromReflection(_rOwned[account]);
    }

    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 _tokenTransfer(
        address sender,
        address recipient,
        uint256 amount,
        uint256 reflectionFee
    ) private {
        _transferStandard(sender, recipient, amount, reflectionFee);
    }

    function _transferStandard(
        address sender,
        address recipient,
        uint256 tAmount,
        uint256 reflectionFee
    ) private {
        (
            uint256 rAmount,
            uint256 rTransferAmount,
            uint256 rFee,
            uint256 tTransferAmount,
            uint256 tFee
        ) = _getValues(tAmount, reflectionFee);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _reflectFee(uint256 rFee, uint256 tFee) private {
        _rTotal = _rTotal.sub(rFee);
        _tFeeTotal = _tFeeTotal.add(tFee);
    }

    function _getValues(uint256 tAmount, uint256 reflectionFee)
        private
        view
        returns (
            uint256,
            uint256,
            uint256,
            uint256,
            uint256
        )
    {
        (uint256 tTransferAmount, uint256 tFee) = _getTValues(
            tAmount,
            reflectionFee
        );
        uint256 currentRate = _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(
            tAmount,
            tFee,
            currentRate
        );
        return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee);
    }

    function _getTValues(uint256 tAmount, uint256 reflectionFee)
        private
        pure
        returns (uint256, uint256)
    {
        uint256 tFee = tAmount.mul(reflectionFee).div(100);
        uint256 tTransferAmount = tAmount.sub(tFee);
        return (tTransferAmount, tFee);
    }

    function _getRValues(
        uint256 tAmount,
        uint256 tFee,
        uint256 currentRate
    )
        private
        pure
        returns (
            uint256,
            uint256,
            uint256
        )
    {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee);
        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 burnAndReflect(uint256 _amount) private {
        _tokenTransfer(address(this), deadAddress, _amount, 50);
        _tSupply -= _amount.div(2);
        tokensForReflections = 0;
        tokensForBurn = 0;
        updateLimits();
    }

    function burnPublic(uint256 _amount) public {
        require(_amount > 0, "You gotta burn something, not nothing you nerd");
        address sender = msg.sender;
        TotalBurnedByUser[msg.sender] = TotalBurnedByUser[msg.sender] + _amount;
        _amount = _amount * (10**18);
        _tokenTransfer(sender, deadAddress, _amount, 0);
        _tSupply -= _amount;
        updateLimits();
    }
}

File 2 of 8 : IDEX.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.10;



interface IPair {
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function token0() external view returns (address);

}

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

interface IRouter {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    
    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline) external;
}

File 3 of 8 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 4 of 8 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

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

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

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

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

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

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

File 5 of 8 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 6 of 8 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 7 of 8 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 8 of 8 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_treasury","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"TotalBurnedByUser","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TradingActiveBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxWalletAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burnPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyReflectionFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTreasuryFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellReflectionFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTreasuryFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"Pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"bot","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"bots","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setBulkBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapDigit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"toggleLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tokensForBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForReflections","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTreasury","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"transDigit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_treasuryFee","type":"uint256"},{"internalType":"uint256","name":"_burnFee","type":"uint256"},{"internalType":"uint256","name":"_reflectionFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTrans","type":"uint256"},{"internalType":"uint256","name":"newWall","type":"uint256"},{"internalType":"uint256","name":"NewswapDigit","type":"uint256"}],"name":"updateDigits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_treasuryFee","type":"uint256"},{"internalType":"uint256","name":"_burnFee","type":"uint256"},{"internalType":"uint256","name":"_reflectionFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newTreasuryWallet","type":"address"}],"name":"updateTreasuryWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"walletDigit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405269d3c21bcecceda10000006000196200001e919062000db2565b6000196200002d919062000e19565b6011556001601760156101000a81548160ff0219169083151502179055506000601760166101000a81548160ff0219169083151502179055506032601955600a601a556032601b556032601d556032601e55600a601f553480156200009157600080fd5b5060405162005e0438038062005e048339818101604052810190620000b7919062000ebe565b6040518060400160405280600d81526020017f5468652053796e646963617465000000000000000000000000000000000000008152506040518060400160405280600381526020017f53594e0000000000000000000000000000000000000000000000000000000000815250816003908162000134919062001160565b50806004908162000146919062001160565b505050620001696200015d6200070c60201b60201c565b6200071460201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001d0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001f6919062000ebe565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200025e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000284919062000ebe565b6040518363ffffffff1660e01b8152600401620002a392919062001258565b6020604051808303816000875af1158015620002c3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002e9919062000ebe565b905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000380826001620007da60201b60201c565b62000393816001620007da60201b60201c565b620003a68160016200084560201b60201c565b620003b98260016200084560201b60201c565b620003cc816001620008b060201b60201c565b601b54601a54601954620003e1919062001285565b620003ed919062001285565b601881905550601f54601e54601d5462000408919062001285565b62000414919062001285565b601c8190555082601760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060115460096000620004726200070c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555069d3c21bcecceda1000000601081905550600a602381905550600a60248190555060056025819055506103e8602454601054620004ee9190620012e2565b620004fa919062001343565b601381905550612710602554601054620005159190620012e2565b62000521919062001343565b6015819055506103e86023546010546200053c9190620012e2565b62000548919062001343565b60148190555062000570620005626200090b60201b60201c565b60016200093560201b60201c565b620005833060016200093560201b60201c565b6200059861dead60016200093560201b60201c565b620005cd601760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200093560201b60201c565b620005ef620005e16200090b60201b60201c565b6001620007da60201b60201c565b62000602306001620007da60201b60201c565b6200061761dead6001620007da60201b60201c565b6200064c601760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620007da60201b60201c565b6200066e620006606200090b60201b60201c565b60016200084560201b60201c565b620006813060016200084560201b60201c565b6200069661dead60016200084560201b60201c565b620006cb601760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200084560201b60201c565b620006ef620006df6200090b60201b60201c565b83601054620009a060201b60201c565b620007033360105462000b7160201b60201c565b505050620015ce565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620007ea62000cde60201b60201c565b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6200085562000cde60201b60201c565b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200094562000cde60201b60201c565b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000a12576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a099062001402565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000a84576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a7b906200149a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000b649190620014cd565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000be3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000bda906200153a565b60405180910390fd5b62000bf76000838362000d6f60201b60201c565b806002600082825462000c0b919062001285565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000cbe9190620014cd565b60405180910390a362000cda6000838362000d7460201b60201c565b5050565b62000cee6200070c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000d146200090b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000d6d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000d6490620015ac565b60405180910390fd5b565b505050565b505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000dbf8262000d79565b915062000dcc8362000d79565b92508262000ddf5762000dde62000d83565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000e268262000d79565b915062000e338362000d79565b92508282101562000e495762000e4862000dea565b5b828203905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000e868262000e59565b9050919050565b62000e988162000e79565b811462000ea457600080fd5b50565b60008151905062000eb88162000e8d565b92915050565b60006020828403121562000ed75762000ed662000e54565b5b600062000ee78482850162000ea7565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000f7257607f821691505b60208210810362000f885762000f8762000f2a565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000ff27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000fb3565b62000ffe868362000fb3565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620010416200103b620010358462000d79565b62001016565b62000d79565b9050919050565b6000819050919050565b6200105d8362001020565b620010756200106c8262001048565b84845462000fc0565b825550505050565b600090565b6200108c6200107d565b6200109981848462001052565b505050565b5b81811015620010c157620010b560008262001082565b6001810190506200109f565b5050565b601f8211156200111057620010da8162000f8e565b620010e58462000fa3565b81016020851015620010f5578190505b6200110d620011048562000fa3565b8301826200109e565b50505b505050565b600082821c905092915050565b6000620011356000198460080262001115565b1980831691505092915050565b600062001150838362001122565b9150826002028217905092915050565b6200116b8262000ef0565b67ffffffffffffffff81111562001187576200118662000efb565b5b62001193825462000f59565b620011a0828285620010c5565b600060209050601f831160018114620011d85760008415620011c3578287015190505b620011cf858262001142565b8655506200123f565b601f198416620011e88662000f8e565b60005b828110156200121257848901518255600182019150602085019450602081019050620011eb565b868310156200123257848901516200122e601f89168262001122565b8355505b6001600288020188555050505b505050505050565b620012528162000e79565b82525050565b60006040820190506200126f600083018562001247565b6200127e602083018462001247565b9392505050565b6000620012928262000d79565b91506200129f8362000d79565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620012d757620012d662000dea565b5b828201905092915050565b6000620012ef8262000d79565b9150620012fc8362000d79565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562001338576200133762000dea565b5b828202905092915050565b6000620013508262000d79565b91506200135d8362000d79565b92508262001370576200136f62000d83565b5b828204905092915050565b600082825260208201905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000620013ea6024836200137b565b9150620013f7826200138c565b604082019050919050565b600060208201905081810360008301526200141d81620013db565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000620014826022836200137b565b91506200148f8262001424565b604082019050919050565b60006020820190508181036000830152620014b58162001473565b9050919050565b620014c78162000d79565b82525050565b6000602082019050620014e46000830184620014bc565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001522601f836200137b565b91506200152f82620014ea565b602082019050919050565b60006020820190508181036000830152620015558162001513565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620015946020836200137b565b9150620015a1826200155c565b602082019050919050565b60006020820190508181036000830152620015c78162001585565b9050919050565b61482680620015de6000396000f3fe60806040526004361061037a5760003560e01c80638a8c523c116101d1578063bbc0c74211610102578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610d2d578063f7e3069a14610d56578063f887ea4014610d7f578063f8b45b0514610daa57610381565b8063dd62ed3e14610c71578063e1c551ca14610cae578063e2f4560514610cd7578063e71dc3f514610d0257610381565b8063c8c8ebe4116100dc578063c8c8ebe414610bc7578063cc2ffe7c14610bf2578063d2fcc00114610c1d578063d85ba06314610c4657610381565b8063bbc0c74214610b4a578063c024666814610b75578063c17b5b8c14610b9e57610381565b8063a8aa1b311161016f578063adb873bd11610149578063adb873bd14610a7c578063b256f7b714610aa7578063b62496f514610ae4578063b83b297f14610b2157610381565b8063a8aa1b31146109d7578063a9059cbb14610a02578063abb8105214610a3f57610381565b806396880b17116101ab57806396880b1714610909578063975d71e2146109465780639a7a23d614610971578063a457c2d71461099a57610381565b80638a8c523c1461089c5780638da5cb5b146108b357806395d89b41146108de57610381565b80634fbee193116102ab5780636dea2b70116102495780637571336a116102235780637571336a146107f65780637ab439831461081f5780638095d5641461084a578063809d458d1461087357610381565b80636dea2b701461077757806370a08231146107a2578063715018a6146107df57610381565b80636042f719116102855780636042f719146106cb5780636a486a8e146106f65780636b2fb124146107215780636c2acb561461074c57610381565b80634fbee19314610638578063563df32f146106755780635c068a8c146106a057610381565b806323b872dd11610318578063342aa8b5116102f2578063342aa8b51461056a578063395093511461059357806341998fa3146105d05780634a62bb651461060d57610381565b806323b872dd146104d757806327c8f83514610514578063313ce5671461053f57610381565b806312611ae81161035457806312611ae81461042b57806318160ddd146104565780631d7778561461048157806323136371146104ac57610381565b806306fdde0314610386578063095ea7b3146103b157806310d5de53146103ee57610381565b3661038157005b600080fd5b34801561039257600080fd5b5061039b610dd5565b6040516103a891906133d1565b60405180910390f35b3480156103bd57600080fd5b506103d860048036038101906103d3919061349b565b610e67565b6040516103e591906134f6565b60405180910390f35b3480156103fa57600080fd5b5061041560048036038101906104109190613511565b610e8a565b60405161042291906134f6565b60405180910390f35b34801561043757600080fd5b50610440610eaa565b60405161044d919061354d565b60405180910390f35b34801561046257600080fd5b5061046b610eb0565b604051610478919061354d565b60405180910390f35b34801561048d57600080fd5b50610496610eba565b6040516104a3919061354d565b60405180910390f35b3480156104b857600080fd5b506104c1610ec0565b6040516104ce919061354d565b60405180910390f35b3480156104e357600080fd5b506104fe60048036038101906104f99190613568565b610ec6565b60405161050b91906134f6565b60405180910390f35b34801561052057600080fd5b50610529610ef5565b60405161053691906135ca565b60405180910390f35b34801561054b57600080fd5b50610554610efb565b6040516105619190613601565b60405180910390f35b34801561057657600080fd5b50610591600480360381019061058c9190613648565b610f04565b005b34801561059f57600080fd5b506105ba60048036038101906105b5919061349b565b611077565b6040516105c791906134f6565b60405180910390f35b3480156105dc57600080fd5b506105f760048036038101906105f29190613511565b6110ae565b604051610604919061354d565b60405180910390f35b34801561061957600080fd5b506106226110c6565b60405161062f91906134f6565b60405180910390f35b34801561064457600080fd5b5061065f600480360381019061065a9190613511565b6110d9565b60405161066c91906134f6565b60405180910390f35b34801561068157600080fd5b5061068a61112f565b60405161069791906135ca565b60405180910390f35b3480156106ac57600080fd5b506106b5611155565b6040516106c2919061354d565b60405180910390f35b3480156106d757600080fd5b506106e061115b565b6040516106ed919061354d565b60405180910390f35b34801561070257600080fd5b5061070b611161565b604051610718919061354d565b60405180910390f35b34801561072d57600080fd5b50610736611167565b604051610743919061354d565b60405180910390f35b34801561075857600080fd5b5061076161116d565b60405161076e919061354d565b60405180910390f35b34801561078357600080fd5b5061078c611173565b604051610799919061354d565b60405180910390f35b3480156107ae57600080fd5b506107c960048036038101906107c49190613511565b611179565b6040516107d6919061354d565b60405180910390f35b3480156107eb57600080fd5b506107f46111ca565b005b34801561080257600080fd5b5061081d60048036038101906108189190613648565b6111de565b005b34801561082b57600080fd5b50610834611241565b604051610841919061354d565b60405180910390f35b34801561085657600080fd5b50610871600480360381019061086c9190613688565b611247565b005b34801561087f57600080fd5b5061089a60048036038101906108959190613511565b6112d2565b005b3480156108a857600080fd5b506108b161131e565b005b3480156108bf57600080fd5b506108c861136a565b6040516108d591906135ca565b60405180910390f35b3480156108ea57600080fd5b506108f3611394565b60405161090091906133d1565b60405180910390f35b34801561091557600080fd5b50610930600480360381019061092b9190613511565b611426565b60405161093d91906134f6565b60405180910390f35b34801561095257600080fd5b5061095b611446565b604051610968919061354d565b60405180910390f35b34801561097d57600080fd5b5061099860048036038101906109939190613648565b61144c565b005b3480156109a657600080fd5b506109c160048036038101906109bc919061349b565b6114f2565b6040516109ce91906134f6565b60405180910390f35b3480156109e357600080fd5b506109ec611569565b6040516109f991906135ca565b60405180910390f35b348015610a0e57600080fd5b50610a296004803603810190610a24919061349b565b61158f565b604051610a3691906134f6565b60405180910390f35b348015610a4b57600080fd5b50610a666004803603810190610a619190613511565b6115b2565b604051610a7391906134f6565b60405180910390f35b348015610a8857600080fd5b50610a916115d2565b604051610a9e919061354d565b60405180910390f35b348015610ab357600080fd5b50610ace6004803603810190610ac991906136db565b6115d8565b604051610adb91906134f6565b60405180910390f35b348015610af057600080fd5b50610b0b6004803603810190610b069190613511565b61165a565b604051610b1891906134f6565b60405180910390f35b348015610b2d57600080fd5b50610b486004803603810190610b439190613850565b61167a565b005b348015610b5657600080fd5b50610b5f611717565b604051610b6c91906134f6565b60405180910390f35b348015610b8157600080fd5b50610b9c6004803603810190610b979190613648565b61172a565b005b348015610baa57600080fd5b50610bc56004803603810190610bc09190613688565b61178d565b005b348015610bd357600080fd5b50610bdc611818565b604051610be9919061354d565b60405180910390f35b348015610bfe57600080fd5b50610c0761181e565b604051610c14919061354d565b60405180910390f35b348015610c2957600080fd5b50610c446004803603810190610c3f9190613648565b611824565b005b348015610c5257600080fd5b50610c5b611887565b604051610c68919061354d565b60405180910390f35b348015610c7d57600080fd5b50610c986004803603810190610c9391906138ac565b61188d565b604051610ca5919061354d565b60405180910390f35b348015610cba57600080fd5b50610cd56004803603810190610cd091906138ec565b611914565b005b348015610ce357600080fd5b50610cec611a34565b604051610cf9919061354d565b60405180910390f35b348015610d0e57600080fd5b50610d17611a3a565b604051610d24919061354d565b60405180910390f35b348015610d3957600080fd5b50610d546004803603810190610d4f9190613511565b611a40565b005b348015610d6257600080fd5b50610d7d6004803603810190610d789190613688565b611ac3565b005b348015610d8b57600080fd5b50610d94611b3e565b604051610da19190613978565b60405180910390f35b348015610db657600080fd5b50610dbf611b64565b604051610dcc919061354d565b60405180910390f35b606060038054610de4906139c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610e10906139c2565b8015610e5d5780601f10610e3257610100808354040283529160200191610e5d565b820191906000526020600020905b815481529060010190602001808311610e4057829003601f168201915b5050505050905090565b600080610e72611b6a565b9050610e7f818585611b72565b600191505092915050565b600b6020528060005260406000206000915054906101000a900460ff1681565b60225481565b6000601054905090565b60215481565b601b5481565b600080610ed1611b6a565b9050610ede858285611d3b565b610ee9858585611dc7565b60019150509392505050565b61dead81565b60006012905090565b610f0c6128a4565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f6657600080fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fc057600080fd5b801515600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615150361101c57600080fd5b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600080611082611b6a565b90506110a3818585611094858961188d565b61109e9190613a22565b611b72565b600191505092915050565b600d6020528060005260406000206000915090505481565b601760159054906101000a900460ff1681565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b601760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b601f5481565b601c5481565b601d5481565b60255481565b60165481565b60006111c3600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612922565b9050919050565b6111d26128a4565b6111dc6000612990565b565b6111e66128a4565b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60235481565b61124f6128a4565b8260198190555081601a8190555080601b81905550601b54601a546019546112779190613a22565b6112819190613a22565b60188190555060fa60185411156112cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c490613ac4565b60405180910390fd5b505050565b6112da6128a4565b80601760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6113266128a4565b60011515601760169054906101000a900460ff1615150361134657600080fd5b426016819055506001601760166101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546113a3906139c2565b80601f01602080910402602001604051908101604052809291908181526020018280546113cf906139c2565b801561141c5780601f106113f15761010080835404028352916020019161141c565b820191906000526020600020905b8154815290600101906020018083116113ff57829003601f168201915b5050505050905090565b600c6020528060005260406000206000915054906101000a900460ff1681565b60245481565b6114546128a4565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114db90613b56565b60405180910390fd5b6114ee8282612a56565b5050565b6000806114fd611b6a565b9050600061150b828661188d565b905083811015611550576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154790613be8565b60405180910390fd5b61155d8286868403611b72565b60019250505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008061159a611b6a565b90506115a7818585611dc7565b600191505092915050565b600e6020528060005260406000206000915054906101000a900460ff1681565b601e5481565b60006115e26128a4565b601760159054906101000a900460ff16151582151503611637576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162e90613c54565b60405180910390fd5b81601760156101000a81548160ff02191690831515021790555060019050919050565b600f6020528060005260406000206000915054906101000a900460ff1681565b6116826128a4565b60005b82518110156117125781600e60008584815181106116a6576116a5613c74565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061170a90613ca3565b915050611685565b505050565b601760169054906101000a900460ff1681565b6117326128a4565b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6117956128a4565b82601d8190555081601e8190555080601f81905550601f54601e54601d546117bd9190613a22565b6117c79190613a22565b601c8190555060fa601c541115611813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180a90613ac4565b60405180910390fd5b505050565b60135481565b60205481565b61182c6128a4565b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60185481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60008111611957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194e90613d5d565b60405180910390fd5b600033905081600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119a79190613a22565b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550670de0b6b3a7640000826119fe9190613d7d565b9150611a0f8161dead846000612ab1565b8160106000828254611a219190613dd7565b92505081905550611a30612ac3565b5050565b60155481565b601a5481565b611a486128a4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611ab7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aae90613e7d565b60405180910390fd5b611ac081612990565b50565b611acb6128a4565b60058310158015611add575060058210155b611b1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1390613ee9565b60405180910390fd5b826024819055508160238190555080602581905550611b39612ac3565b505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60145481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd890613f7b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c479061400d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611d2e919061354d565b60405180910390a3505050565b6000611d47848461188d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611dc15781811015611db3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611daa90614079565b60405180910390fd5b611dc08484848403611b72565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2d9061410b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ea5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9c9061419d565b60405180910390fd5b60008111611ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edf9061422f565b60405180910390fd5b600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611f8c5750600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b611fcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc29061429b565b60405180910390fd5b601760159054906101000a900460ff161561242257611fe861136a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612056575061202661136a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561208f5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156120c9575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156120e25750601760009054906101000a900460ff16155b1561242157601760169054906101000a900460ff166121dc57600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061219c5750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6121db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d290614307565b60405180910390fd5b5b600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561227f5750600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156122df576013548111156122c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c090614399565b60405180910390fd5b60165442036122de576122dd826001610f04565b5b5b600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661237657601354811115612375576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236c9061442b565b60405180910390fd5b5b600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612420576014546123d383611179565b826123de9190613a22565b111561241f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241690614497565b60405180910390fd5b5b5b5b600061242d30611179565b9050600060155482101590508080156124535750601760009054906101000a900460ff16155b80156124a95750600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156124ff5750600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156125555750600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612599576001601760006101000a81548160ff02191690831515021790555061257d612b2e565b6000601760006101000a81548160ff0219169083151502179055505b6000601760009054906101000a900460ff16159050600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061264f5750600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561265957600090505b600080821561288e57600f60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156127095750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614155b15612750576127376103e861272960185489612bef90919063ffffffff16565b612c0590919063ffffffff16565b915061274b86601954601a54601b54612c1b565b61283b565b600f60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156127f75750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614155b1561283a576128256103e8612817601c5489612bef90919063ffffffff16565b612c0590919063ffffffff16565b915061283986601d54601e54601f54612c1b565b5b5b600082111561287f576128518830846000612ab1565b60006022546021546128639190613a22565b905060008082119050801561287c5761287b82612cde565b5b50505b818661288b9190613dd7565b95505b61289a88888884612ab1565b5050505050505050565b6128ac611b6a565b73ffffffffffffffffffffffffffffffffffffffff166128ca61136a565b73ffffffffffffffffffffffffffffffffffffffff1614612920576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291790614503565b60405180910390fd5b565b6000601154821115612969576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296090614595565b60405180910390fd5b6000612973612d34565b90506129888184612c0590919063ffffffff16565b915050919050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b612abd84848484612d5f565b50505050565b6103e8602454601054612ad69190613d7d565b612ae091906145e4565b6013819055506103e8602554601054612af99190613d7d565b612b0391906145e4565b6015819055506103e8602354601054612b1c9190613d7d565b612b2691906145e4565b601481905550565b6000612b3930611179565b90506000808203612b4b575050612bed565b612b5482612f1f565b6000602081905550601760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612ba290614646565b60006040518083038185875af1925050503d8060008114612bdf576040519150601f19603f3d011682016040523d82523d6000602084013e612be4565b606091505b50508091505050505b565b60008183612bfd9190613d7d565b905092915050565b60008183612c1391906145e4565b905092915050565b612c426103e8612c348587612bef90919063ffffffff16565b612c0590919063ffffffff16565b60206000828254612c539190613a22565b92505081905550612c816103e8612c738487612bef90919063ffffffff16565b612c0590919063ffffffff16565b60216000828254612c929190613a22565b92505081905550612cc06103e8612cb28387612bef90919063ffffffff16565b612c0590919063ffffffff16565b60226000828254612cd19190613a22565b9250508190555050505050565b612ced3061dead836032612ab1565b612d01600282612c0590919063ffffffff16565b60106000828254612d129190613dd7565b9250508190555060006022819055506000602181905550612d31612ac3565b50565b6000806000612d41613162565b91509150612d588183612c0590919063ffffffff16565b9250505090565b6000806000806000612d7187876131c7565b94509450945094509450612dcd85600960008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461322190919063ffffffff16565b600960008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612e6284600960008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461323790919063ffffffff16565b600960008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612eaf838261324d565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612f0c919061354d565b60405180910390a3505050505050505050565b6000600267ffffffffffffffff811115612f3c57612f3b61370d565b5b604051908082528060200260200182016040528015612f6a5781602001602082028036833780820191505090505b5090503081600081518110612f8257612f81613c74565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613029573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061304d9190614670565b8160018151811061306157613060613c74565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506130c830600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611b72565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161312c959493929190614796565b600060405180830381600087803b15801561314657600080fd5b505af115801561315a573d6000803e3d6000fd5b505050505050565b60008060006011549050600069d3c21bcecceda1000000905061319a69d3c21bcecceda1000000601154612c0590919063ffffffff16565b8210156131ba5760115469d3c21bcecceda10000009350935050506131c3565b81819350935050505b9091565b60008060008060008060006131dc8989613287565b9150915060006131ea612d34565b905060008060006131fc8d86866132da565b92509250925082828288889a509a509a509a509a505050505050509295509295909350565b6000818361322f9190613dd7565b905092915050565b600081836132459190613a22565b905092915050565b6132628260115461322190919063ffffffff16565b60118190555061327d8160125461323790919063ffffffff16565b6012819055505050565b60008060006132b260646132a48688612bef90919063ffffffff16565b612c0590919063ffffffff16565b905060006132c9828761322190919063ffffffff16565b905080829350935050509250929050565b6000806000806132f38588612bef90919063ffffffff16565b9050600061330a8688612bef90919063ffffffff16565b90506000613321828461322190919063ffffffff16565b905082818395509550955050505093509350939050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613372578082015181840152602081019050613357565b83811115613381576000848401525b50505050565b6000601f19601f8301169050919050565b60006133a382613338565b6133ad8185613343565b93506133bd818560208601613354565b6133c681613387565b840191505092915050565b600060208201905081810360008301526133eb8184613398565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061343282613407565b9050919050565b61344281613427565b811461344d57600080fd5b50565b60008135905061345f81613439565b92915050565b6000819050919050565b61347881613465565b811461348357600080fd5b50565b6000813590506134958161346f565b92915050565b600080604083850312156134b2576134b16133fd565b5b60006134c085828601613450565b92505060206134d185828601613486565b9150509250929050565b60008115159050919050565b6134f0816134db565b82525050565b600060208201905061350b60008301846134e7565b92915050565b600060208284031215613527576135266133fd565b5b600061353584828501613450565b91505092915050565b61354781613465565b82525050565b6000602082019050613562600083018461353e565b92915050565b600080600060608486031215613581576135806133fd565b5b600061358f86828701613450565b93505060206135a086828701613450565b92505060406135b186828701613486565b9150509250925092565b6135c481613427565b82525050565b60006020820190506135df60008301846135bb565b92915050565b600060ff82169050919050565b6135fb816135e5565b82525050565b600060208201905061361660008301846135f2565b92915050565b613625816134db565b811461363057600080fd5b50565b6000813590506136428161361c565b92915050565b6000806040838503121561365f5761365e6133fd565b5b600061366d85828601613450565b925050602061367e85828601613633565b9150509250929050565b6000806000606084860312156136a1576136a06133fd565b5b60006136af86828701613486565b93505060206136c086828701613486565b92505060406136d186828701613486565b9150509250925092565b6000602082840312156136f1576136f06133fd565b5b60006136ff84828501613633565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61374582613387565b810181811067ffffffffffffffff821117156137645761376361370d565b5b80604052505050565b60006137776133f3565b9050613783828261373c565b919050565b600067ffffffffffffffff8211156137a3576137a261370d565b5b602082029050602081019050919050565b600080fd5b60006137cc6137c784613788565b61376d565b905080838252602082019050602084028301858111156137ef576137ee6137b4565b5b835b8181101561381857806138048882613450565b8452602084019350506020810190506137f1565b5050509392505050565b600082601f83011261383757613836613708565b5b81356138478482602086016137b9565b91505092915050565b60008060408385031215613867576138666133fd565b5b600083013567ffffffffffffffff81111561388557613884613402565b5b61389185828601613822565b92505060206138a285828601613633565b9150509250929050565b600080604083850312156138c3576138c26133fd565b5b60006138d185828601613450565b92505060206138e285828601613450565b9150509250929050565b600060208284031215613902576139016133fd565b5b600061391084828501613486565b91505092915050565b6000819050919050565b600061393e61393961393484613407565b613919565b613407565b9050919050565b600061395082613923565b9050919050565b600061396282613945565b9050919050565b61397281613957565b82525050565b600060208201905061398d6000830184613969565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806139da57607f821691505b6020821081036139ed576139ec613993565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613a2d82613465565b9150613a3883613465565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a6d57613a6c6139f3565b5b828201905092915050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000613aae601d83613343565b9150613ab982613a78565b602082019050919050565b60006020820190508181036000830152613add81613aa1565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613b40603983613343565b9150613b4b82613ae4565b604082019050919050565b60006020820190508181036000830152613b6f81613b33565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613bd2602583613343565b9150613bdd82613b76565b604082019050919050565b60006020820190508181036000830152613c0181613bc5565b9050919050565b7f20616c72656164792073657420746f20746861742076616c7565000000000000600082015250565b6000613c3e601a83613343565b9150613c4982613c08565b602082019050919050565b60006020820190508181036000830152613c6d81613c31565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613cae82613465565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613ce057613cdf6139f3565b5b600182019050919050565b7f596f7520676f747461206275726e20736f6d657468696e672c206e6f74206e6f60008201527f7468696e6720796f75206e657264000000000000000000000000000000000000602082015250565b6000613d47602e83613343565b9150613d5282613ceb565b604082019050919050565b60006020820190508181036000830152613d7681613d3a565b9050919050565b6000613d8882613465565b9150613d9383613465565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613dcc57613dcb6139f3565b5b828202905092915050565b6000613de282613465565b9150613ded83613465565b925082821015613e0057613dff6139f3565b5b828203905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613e67602683613343565b9150613e7282613e0b565b604082019050919050565b60006020820190508181036000830152613e9681613e5a565b9050919050565b7f302e352520697320746865206c6f7765737420706172746e6572000000000000600082015250565b6000613ed3601a83613343565b9150613ede82613e9d565b602082019050919050565b60006020820190508181036000830152613f0281613ec6565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613f65602483613343565b9150613f7082613f09565b604082019050919050565b60006020820190508181036000830152613f9481613f58565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613ff7602283613343565b915061400282613f9b565b604082019050919050565b6000602082019050818103600083015261402681613fea565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000614063601d83613343565b915061406e8261402d565b602082019050919050565b6000602082019050818103600083015261409281614056565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006140f5602583613343565b915061410082614099565b604082019050919050565b60006020820190508181036000830152614124816140e8565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614187602383613343565b91506141928261412b565b604082019050919050565b600060208201905081810360008301526141b68161417a565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000614219602983613343565b9150614224826141bd565b604082019050919050565b600060208201905081810360008301526142488161420c565b9050919050565b7f4279652042796520426f74000000000000000000000000000000000000000000600082015250565b6000614285600b83613343565b91506142908261424f565b602082019050919050565b600060208201905081810360008301526142b481614278565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006142f1601683613343565b91506142fc826142bb565b602082019050919050565b60006020820190508181036000830152614320816142e4565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614383603583613343565b915061438e82614327565b604082019050919050565b600060208201905081810360008301526143b281614376565b9050919050565b7f7472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f72616e73616374696f6e416d6f756e742e000000000000000000000000000000602082015250565b6000614415603183613343565b9150614420826143b9565b604082019050919050565b6000602082019050818103600083015261444481614408565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614481601383613343565b915061448c8261444b565b602082019050919050565b600060208201905081810360008301526144b081614474565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006144ed602083613343565b91506144f8826144b7565b602082019050919050565b6000602082019050818103600083015261451c816144e0565b9050919050565b7f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260008201527f65666c656374696f6e7300000000000000000000000000000000000000000000602082015250565b600061457f602a83613343565b915061458a82614523565b604082019050919050565b600060208201905081810360008301526145ae81614572565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006145ef82613465565b91506145fa83613465565b92508261460a576146096145b5565b5b828204905092915050565b600081905092915050565b50565b6000614630600083614615565b915061463b82614620565b600082019050919050565b600061465182614623565b9150819050919050565b60008151905061466a81613439565b92915050565b600060208284031215614686576146856133fd565b5b60006146948482850161465b565b91505092915050565b6000819050919050565b60006146c26146bd6146b88461469d565b613919565b613465565b9050919050565b6146d2816146a7565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61470d81613427565b82525050565b600061471f8383614704565b60208301905092915050565b6000602082019050919050565b6000614743826146d8565b61474d81856146e3565b9350614758836146f4565b8060005b838110156147895781516147708882614713565b975061477b8361472b565b92505060018101905061475c565b5085935050505092915050565b600060a0820190506147ab600083018861353e565b6147b860208301876146c9565b81810360408301526147ca8186614738565b90506147d960608301856135bb565b6147e6608083018461353e565b969550505050505056fea2646970667358221220389691a25ec6b80d952ac7d3662e5de43cc656d511df418d37c0f8a6d429543e64736f6c634300080f0033000000000000000000000000e61882d3e159af8594638ab712b847b37fa57b80

Deployed Bytecode

0x60806040526004361061037a5760003560e01c80638a8c523c116101d1578063bbc0c74211610102578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610d2d578063f7e3069a14610d56578063f887ea4014610d7f578063f8b45b0514610daa57610381565b8063dd62ed3e14610c71578063e1c551ca14610cae578063e2f4560514610cd7578063e71dc3f514610d0257610381565b8063c8c8ebe4116100dc578063c8c8ebe414610bc7578063cc2ffe7c14610bf2578063d2fcc00114610c1d578063d85ba06314610c4657610381565b8063bbc0c74214610b4a578063c024666814610b75578063c17b5b8c14610b9e57610381565b8063a8aa1b311161016f578063adb873bd11610149578063adb873bd14610a7c578063b256f7b714610aa7578063b62496f514610ae4578063b83b297f14610b2157610381565b8063a8aa1b31146109d7578063a9059cbb14610a02578063abb8105214610a3f57610381565b806396880b17116101ab57806396880b1714610909578063975d71e2146109465780639a7a23d614610971578063a457c2d71461099a57610381565b80638a8c523c1461089c5780638da5cb5b146108b357806395d89b41146108de57610381565b80634fbee193116102ab5780636dea2b70116102495780637571336a116102235780637571336a146107f65780637ab439831461081f5780638095d5641461084a578063809d458d1461087357610381565b80636dea2b701461077757806370a08231146107a2578063715018a6146107df57610381565b80636042f719116102855780636042f719146106cb5780636a486a8e146106f65780636b2fb124146107215780636c2acb561461074c57610381565b80634fbee19314610638578063563df32f146106755780635c068a8c146106a057610381565b806323b872dd11610318578063342aa8b5116102f2578063342aa8b51461056a578063395093511461059357806341998fa3146105d05780634a62bb651461060d57610381565b806323b872dd146104d757806327c8f83514610514578063313ce5671461053f57610381565b806312611ae81161035457806312611ae81461042b57806318160ddd146104565780631d7778561461048157806323136371146104ac57610381565b806306fdde0314610386578063095ea7b3146103b157806310d5de53146103ee57610381565b3661038157005b600080fd5b34801561039257600080fd5b5061039b610dd5565b6040516103a891906133d1565b60405180910390f35b3480156103bd57600080fd5b506103d860048036038101906103d3919061349b565b610e67565b6040516103e591906134f6565b60405180910390f35b3480156103fa57600080fd5b5061041560048036038101906104109190613511565b610e8a565b60405161042291906134f6565b60405180910390f35b34801561043757600080fd5b50610440610eaa565b60405161044d919061354d565b60405180910390f35b34801561046257600080fd5b5061046b610eb0565b604051610478919061354d565b60405180910390f35b34801561048d57600080fd5b50610496610eba565b6040516104a3919061354d565b60405180910390f35b3480156104b857600080fd5b506104c1610ec0565b6040516104ce919061354d565b60405180910390f35b3480156104e357600080fd5b506104fe60048036038101906104f99190613568565b610ec6565b60405161050b91906134f6565b60405180910390f35b34801561052057600080fd5b50610529610ef5565b60405161053691906135ca565b60405180910390f35b34801561054b57600080fd5b50610554610efb565b6040516105619190613601565b60405180910390f35b34801561057657600080fd5b50610591600480360381019061058c9190613648565b610f04565b005b34801561059f57600080fd5b506105ba60048036038101906105b5919061349b565b611077565b6040516105c791906134f6565b60405180910390f35b3480156105dc57600080fd5b506105f760048036038101906105f29190613511565b6110ae565b604051610604919061354d565b60405180910390f35b34801561061957600080fd5b506106226110c6565b60405161062f91906134f6565b60405180910390f35b34801561064457600080fd5b5061065f600480360381019061065a9190613511565b6110d9565b60405161066c91906134f6565b60405180910390f35b34801561068157600080fd5b5061068a61112f565b60405161069791906135ca565b60405180910390f35b3480156106ac57600080fd5b506106b5611155565b6040516106c2919061354d565b60405180910390f35b3480156106d757600080fd5b506106e061115b565b6040516106ed919061354d565b60405180910390f35b34801561070257600080fd5b5061070b611161565b604051610718919061354d565b60405180910390f35b34801561072d57600080fd5b50610736611167565b604051610743919061354d565b60405180910390f35b34801561075857600080fd5b5061076161116d565b60405161076e919061354d565b60405180910390f35b34801561078357600080fd5b5061078c611173565b604051610799919061354d565b60405180910390f35b3480156107ae57600080fd5b506107c960048036038101906107c49190613511565b611179565b6040516107d6919061354d565b60405180910390f35b3480156107eb57600080fd5b506107f46111ca565b005b34801561080257600080fd5b5061081d60048036038101906108189190613648565b6111de565b005b34801561082b57600080fd5b50610834611241565b604051610841919061354d565b60405180910390f35b34801561085657600080fd5b50610871600480360381019061086c9190613688565b611247565b005b34801561087f57600080fd5b5061089a60048036038101906108959190613511565b6112d2565b005b3480156108a857600080fd5b506108b161131e565b005b3480156108bf57600080fd5b506108c861136a565b6040516108d591906135ca565b60405180910390f35b3480156108ea57600080fd5b506108f3611394565b60405161090091906133d1565b60405180910390f35b34801561091557600080fd5b50610930600480360381019061092b9190613511565b611426565b60405161093d91906134f6565b60405180910390f35b34801561095257600080fd5b5061095b611446565b604051610968919061354d565b60405180910390f35b34801561097d57600080fd5b5061099860048036038101906109939190613648565b61144c565b005b3480156109a657600080fd5b506109c160048036038101906109bc919061349b565b6114f2565b6040516109ce91906134f6565b60405180910390f35b3480156109e357600080fd5b506109ec611569565b6040516109f991906135ca565b60405180910390f35b348015610a0e57600080fd5b50610a296004803603810190610a24919061349b565b61158f565b604051610a3691906134f6565b60405180910390f35b348015610a4b57600080fd5b50610a666004803603810190610a619190613511565b6115b2565b604051610a7391906134f6565b60405180910390f35b348015610a8857600080fd5b50610a916115d2565b604051610a9e919061354d565b60405180910390f35b348015610ab357600080fd5b50610ace6004803603810190610ac991906136db565b6115d8565b604051610adb91906134f6565b60405180910390f35b348015610af057600080fd5b50610b0b6004803603810190610b069190613511565b61165a565b604051610b1891906134f6565b60405180910390f35b348015610b2d57600080fd5b50610b486004803603810190610b439190613850565b61167a565b005b348015610b5657600080fd5b50610b5f611717565b604051610b6c91906134f6565b60405180910390f35b348015610b8157600080fd5b50610b9c6004803603810190610b979190613648565b61172a565b005b348015610baa57600080fd5b50610bc56004803603810190610bc09190613688565b61178d565b005b348015610bd357600080fd5b50610bdc611818565b604051610be9919061354d565b60405180910390f35b348015610bfe57600080fd5b50610c0761181e565b604051610c14919061354d565b60405180910390f35b348015610c2957600080fd5b50610c446004803603810190610c3f9190613648565b611824565b005b348015610c5257600080fd5b50610c5b611887565b604051610c68919061354d565b60405180910390f35b348015610c7d57600080fd5b50610c986004803603810190610c9391906138ac565b61188d565b604051610ca5919061354d565b60405180910390f35b348015610cba57600080fd5b50610cd56004803603810190610cd091906138ec565b611914565b005b348015610ce357600080fd5b50610cec611a34565b604051610cf9919061354d565b60405180910390f35b348015610d0e57600080fd5b50610d17611a3a565b604051610d24919061354d565b60405180910390f35b348015610d3957600080fd5b50610d546004803603810190610d4f9190613511565b611a40565b005b348015610d6257600080fd5b50610d7d6004803603810190610d789190613688565b611ac3565b005b348015610d8b57600080fd5b50610d94611b3e565b604051610da19190613978565b60405180910390f35b348015610db657600080fd5b50610dbf611b64565b604051610dcc919061354d565b60405180910390f35b606060038054610de4906139c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610e10906139c2565b8015610e5d5780601f10610e3257610100808354040283529160200191610e5d565b820191906000526020600020905b815481529060010190602001808311610e4057829003601f168201915b5050505050905090565b600080610e72611b6a565b9050610e7f818585611b72565b600191505092915050565b600b6020528060005260406000206000915054906101000a900460ff1681565b60225481565b6000601054905090565b60215481565b601b5481565b600080610ed1611b6a565b9050610ede858285611d3b565b610ee9858585611dc7565b60019150509392505050565b61dead81565b60006012905090565b610f0c6128a4565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f6657600080fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fc057600080fd5b801515600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615150361101c57600080fd5b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600080611082611b6a565b90506110a3818585611094858961188d565b61109e9190613a22565b611b72565b600191505092915050565b600d6020528060005260406000206000915090505481565b601760159054906101000a900460ff1681565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b601760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b601f5481565b601c5481565b601d5481565b60255481565b60165481565b60006111c3600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612922565b9050919050565b6111d26128a4565b6111dc6000612990565b565b6111e66128a4565b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60235481565b61124f6128a4565b8260198190555081601a8190555080601b81905550601b54601a546019546112779190613a22565b6112819190613a22565b60188190555060fa60185411156112cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c490613ac4565b60405180910390fd5b505050565b6112da6128a4565b80601760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6113266128a4565b60011515601760169054906101000a900460ff1615150361134657600080fd5b426016819055506001601760166101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546113a3906139c2565b80601f01602080910402602001604051908101604052809291908181526020018280546113cf906139c2565b801561141c5780601f106113f15761010080835404028352916020019161141c565b820191906000526020600020905b8154815290600101906020018083116113ff57829003601f168201915b5050505050905090565b600c6020528060005260406000206000915054906101000a900460ff1681565b60245481565b6114546128a4565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114db90613b56565b60405180910390fd5b6114ee8282612a56565b5050565b6000806114fd611b6a565b9050600061150b828661188d565b905083811015611550576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154790613be8565b60405180910390fd5b61155d8286868403611b72565b60019250505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008061159a611b6a565b90506115a7818585611dc7565b600191505092915050565b600e6020528060005260406000206000915054906101000a900460ff1681565b601e5481565b60006115e26128a4565b601760159054906101000a900460ff16151582151503611637576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162e90613c54565b60405180910390fd5b81601760156101000a81548160ff02191690831515021790555060019050919050565b600f6020528060005260406000206000915054906101000a900460ff1681565b6116826128a4565b60005b82518110156117125781600e60008584815181106116a6576116a5613c74565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061170a90613ca3565b915050611685565b505050565b601760169054906101000a900460ff1681565b6117326128a4565b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6117956128a4565b82601d8190555081601e8190555080601f81905550601f54601e54601d546117bd9190613a22565b6117c79190613a22565b601c8190555060fa601c541115611813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180a90613ac4565b60405180910390fd5b505050565b60135481565b60205481565b61182c6128a4565b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60185481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60008111611957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194e90613d5d565b60405180910390fd5b600033905081600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119a79190613a22565b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550670de0b6b3a7640000826119fe9190613d7d565b9150611a0f8161dead846000612ab1565b8160106000828254611a219190613dd7565b92505081905550611a30612ac3565b5050565b60155481565b601a5481565b611a486128a4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611ab7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aae90613e7d565b60405180910390fd5b611ac081612990565b50565b611acb6128a4565b60058310158015611add575060058210155b611b1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1390613ee9565b60405180910390fd5b826024819055508160238190555080602581905550611b39612ac3565b505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60145481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd890613f7b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c479061400d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611d2e919061354d565b60405180910390a3505050565b6000611d47848461188d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611dc15781811015611db3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611daa90614079565b60405180910390fd5b611dc08484848403611b72565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2d9061410b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ea5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9c9061419d565b60405180910390fd5b60008111611ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edf9061422f565b60405180910390fd5b600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611f8c5750600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b611fcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc29061429b565b60405180910390fd5b601760159054906101000a900460ff161561242257611fe861136a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612056575061202661136a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561208f5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156120c9575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156120e25750601760009054906101000a900460ff16155b1561242157601760169054906101000a900460ff166121dc57600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061219c5750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6121db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d290614307565b60405180910390fd5b5b600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561227f5750600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156122df576013548111156122c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c090614399565b60405180910390fd5b60165442036122de576122dd826001610f04565b5b5b600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661237657601354811115612375576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236c9061442b565b60405180910390fd5b5b600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612420576014546123d383611179565b826123de9190613a22565b111561241f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241690614497565b60405180910390fd5b5b5b5b600061242d30611179565b9050600060155482101590508080156124535750601760009054906101000a900460ff16155b80156124a95750600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156124ff5750600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156125555750600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612599576001601760006101000a81548160ff02191690831515021790555061257d612b2e565b6000601760006101000a81548160ff0219169083151502179055505b6000601760009054906101000a900460ff16159050600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061264f5750600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561265957600090505b600080821561288e57600f60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156127095750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614155b15612750576127376103e861272960185489612bef90919063ffffffff16565b612c0590919063ffffffff16565b915061274b86601954601a54601b54612c1b565b61283b565b600f60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156127f75750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614155b1561283a576128256103e8612817601c5489612bef90919063ffffffff16565b612c0590919063ffffffff16565b915061283986601d54601e54601f54612c1b565b5b5b600082111561287f576128518830846000612ab1565b60006022546021546128639190613a22565b905060008082119050801561287c5761287b82612cde565b5b50505b818661288b9190613dd7565b95505b61289a88888884612ab1565b5050505050505050565b6128ac611b6a565b73ffffffffffffffffffffffffffffffffffffffff166128ca61136a565b73ffffffffffffffffffffffffffffffffffffffff1614612920576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291790614503565b60405180910390fd5b565b6000601154821115612969576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296090614595565b60405180910390fd5b6000612973612d34565b90506129888184612c0590919063ffffffff16565b915050919050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b612abd84848484612d5f565b50505050565b6103e8602454601054612ad69190613d7d565b612ae091906145e4565b6013819055506103e8602554601054612af99190613d7d565b612b0391906145e4565b6015819055506103e8602354601054612b1c9190613d7d565b612b2691906145e4565b601481905550565b6000612b3930611179565b90506000808203612b4b575050612bed565b612b5482612f1f565b6000602081905550601760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612ba290614646565b60006040518083038185875af1925050503d8060008114612bdf576040519150601f19603f3d011682016040523d82523d6000602084013e612be4565b606091505b50508091505050505b565b60008183612bfd9190613d7d565b905092915050565b60008183612c1391906145e4565b905092915050565b612c426103e8612c348587612bef90919063ffffffff16565b612c0590919063ffffffff16565b60206000828254612c539190613a22565b92505081905550612c816103e8612c738487612bef90919063ffffffff16565b612c0590919063ffffffff16565b60216000828254612c929190613a22565b92505081905550612cc06103e8612cb28387612bef90919063ffffffff16565b612c0590919063ffffffff16565b60226000828254612cd19190613a22565b9250508190555050505050565b612ced3061dead836032612ab1565b612d01600282612c0590919063ffffffff16565b60106000828254612d129190613dd7565b9250508190555060006022819055506000602181905550612d31612ac3565b50565b6000806000612d41613162565b91509150612d588183612c0590919063ffffffff16565b9250505090565b6000806000806000612d7187876131c7565b94509450945094509450612dcd85600960008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461322190919063ffffffff16565b600960008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612e6284600960008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461323790919063ffffffff16565b600960008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612eaf838261324d565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612f0c919061354d565b60405180910390a3505050505050505050565b6000600267ffffffffffffffff811115612f3c57612f3b61370d565b5b604051908082528060200260200182016040528015612f6a5781602001602082028036833780820191505090505b5090503081600081518110612f8257612f81613c74565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613029573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061304d9190614670565b8160018151811061306157613060613c74565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506130c830600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611b72565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161312c959493929190614796565b600060405180830381600087803b15801561314657600080fd5b505af115801561315a573d6000803e3d6000fd5b505050505050565b60008060006011549050600069d3c21bcecceda1000000905061319a69d3c21bcecceda1000000601154612c0590919063ffffffff16565b8210156131ba5760115469d3c21bcecceda10000009350935050506131c3565b81819350935050505b9091565b60008060008060008060006131dc8989613287565b9150915060006131ea612d34565b905060008060006131fc8d86866132da565b92509250925082828288889a509a509a509a509a505050505050509295509295909350565b6000818361322f9190613dd7565b905092915050565b600081836132459190613a22565b905092915050565b6132628260115461322190919063ffffffff16565b60118190555061327d8160125461323790919063ffffffff16565b6012819055505050565b60008060006132b260646132a48688612bef90919063ffffffff16565b612c0590919063ffffffff16565b905060006132c9828761322190919063ffffffff16565b905080829350935050509250929050565b6000806000806132f38588612bef90919063ffffffff16565b9050600061330a8688612bef90919063ffffffff16565b90506000613321828461322190919063ffffffff16565b905082818395509550955050505093509350939050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613372578082015181840152602081019050613357565b83811115613381576000848401525b50505050565b6000601f19601f8301169050919050565b60006133a382613338565b6133ad8185613343565b93506133bd818560208601613354565b6133c681613387565b840191505092915050565b600060208201905081810360008301526133eb8184613398565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061343282613407565b9050919050565b61344281613427565b811461344d57600080fd5b50565b60008135905061345f81613439565b92915050565b6000819050919050565b61347881613465565b811461348357600080fd5b50565b6000813590506134958161346f565b92915050565b600080604083850312156134b2576134b16133fd565b5b60006134c085828601613450565b92505060206134d185828601613486565b9150509250929050565b60008115159050919050565b6134f0816134db565b82525050565b600060208201905061350b60008301846134e7565b92915050565b600060208284031215613527576135266133fd565b5b600061353584828501613450565b91505092915050565b61354781613465565b82525050565b6000602082019050613562600083018461353e565b92915050565b600080600060608486031215613581576135806133fd565b5b600061358f86828701613450565b93505060206135a086828701613450565b92505060406135b186828701613486565b9150509250925092565b6135c481613427565b82525050565b60006020820190506135df60008301846135bb565b92915050565b600060ff82169050919050565b6135fb816135e5565b82525050565b600060208201905061361660008301846135f2565b92915050565b613625816134db565b811461363057600080fd5b50565b6000813590506136428161361c565b92915050565b6000806040838503121561365f5761365e6133fd565b5b600061366d85828601613450565b925050602061367e85828601613633565b9150509250929050565b6000806000606084860312156136a1576136a06133fd565b5b60006136af86828701613486565b93505060206136c086828701613486565b92505060406136d186828701613486565b9150509250925092565b6000602082840312156136f1576136f06133fd565b5b60006136ff84828501613633565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61374582613387565b810181811067ffffffffffffffff821117156137645761376361370d565b5b80604052505050565b60006137776133f3565b9050613783828261373c565b919050565b600067ffffffffffffffff8211156137a3576137a261370d565b5b602082029050602081019050919050565b600080fd5b60006137cc6137c784613788565b61376d565b905080838252602082019050602084028301858111156137ef576137ee6137b4565b5b835b8181101561381857806138048882613450565b8452602084019350506020810190506137f1565b5050509392505050565b600082601f83011261383757613836613708565b5b81356138478482602086016137b9565b91505092915050565b60008060408385031215613867576138666133fd565b5b600083013567ffffffffffffffff81111561388557613884613402565b5b61389185828601613822565b92505060206138a285828601613633565b9150509250929050565b600080604083850312156138c3576138c26133fd565b5b60006138d185828601613450565b92505060206138e285828601613450565b9150509250929050565b600060208284031215613902576139016133fd565b5b600061391084828501613486565b91505092915050565b6000819050919050565b600061393e61393961393484613407565b613919565b613407565b9050919050565b600061395082613923565b9050919050565b600061396282613945565b9050919050565b61397281613957565b82525050565b600060208201905061398d6000830184613969565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806139da57607f821691505b6020821081036139ed576139ec613993565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613a2d82613465565b9150613a3883613465565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a6d57613a6c6139f3565b5b828201905092915050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000613aae601d83613343565b9150613ab982613a78565b602082019050919050565b60006020820190508181036000830152613add81613aa1565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613b40603983613343565b9150613b4b82613ae4565b604082019050919050565b60006020820190508181036000830152613b6f81613b33565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613bd2602583613343565b9150613bdd82613b76565b604082019050919050565b60006020820190508181036000830152613c0181613bc5565b9050919050565b7f20616c72656164792073657420746f20746861742076616c7565000000000000600082015250565b6000613c3e601a83613343565b9150613c4982613c08565b602082019050919050565b60006020820190508181036000830152613c6d81613c31565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613cae82613465565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613ce057613cdf6139f3565b5b600182019050919050565b7f596f7520676f747461206275726e20736f6d657468696e672c206e6f74206e6f60008201527f7468696e6720796f75206e657264000000000000000000000000000000000000602082015250565b6000613d47602e83613343565b9150613d5282613ceb565b604082019050919050565b60006020820190508181036000830152613d7681613d3a565b9050919050565b6000613d8882613465565b9150613d9383613465565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613dcc57613dcb6139f3565b5b828202905092915050565b6000613de282613465565b9150613ded83613465565b925082821015613e0057613dff6139f3565b5b828203905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613e67602683613343565b9150613e7282613e0b565b604082019050919050565b60006020820190508181036000830152613e9681613e5a565b9050919050565b7f302e352520697320746865206c6f7765737420706172746e6572000000000000600082015250565b6000613ed3601a83613343565b9150613ede82613e9d565b602082019050919050565b60006020820190508181036000830152613f0281613ec6565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613f65602483613343565b9150613f7082613f09565b604082019050919050565b60006020820190508181036000830152613f9481613f58565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613ff7602283613343565b915061400282613f9b565b604082019050919050565b6000602082019050818103600083015261402681613fea565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000614063601d83613343565b915061406e8261402d565b602082019050919050565b6000602082019050818103600083015261409281614056565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006140f5602583613343565b915061410082614099565b604082019050919050565b60006020820190508181036000830152614124816140e8565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614187602383613343565b91506141928261412b565b604082019050919050565b600060208201905081810360008301526141b68161417a565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000614219602983613343565b9150614224826141bd565b604082019050919050565b600060208201905081810360008301526142488161420c565b9050919050565b7f4279652042796520426f74000000000000000000000000000000000000000000600082015250565b6000614285600b83613343565b91506142908261424f565b602082019050919050565b600060208201905081810360008301526142b481614278565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006142f1601683613343565b91506142fc826142bb565b602082019050919050565b60006020820190508181036000830152614320816142e4565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614383603583613343565b915061438e82614327565b604082019050919050565b600060208201905081810360008301526143b281614376565b9050919050565b7f7472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f72616e73616374696f6e416d6f756e742e000000000000000000000000000000602082015250565b6000614415603183613343565b9150614420826143b9565b604082019050919050565b6000602082019050818103600083015261444481614408565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614481601383613343565b915061448c8261444b565b602082019050919050565b600060208201905081810360008301526144b081614474565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006144ed602083613343565b91506144f8826144b7565b602082019050919050565b6000602082019050818103600083015261451c816144e0565b9050919050565b7f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260008201527f65666c656374696f6e7300000000000000000000000000000000000000000000602082015250565b600061457f602a83613343565b915061458a82614523565b604082019050919050565b600060208201905081810360008301526145ae81614572565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006145ef82613465565b91506145fa83613465565b92508261460a576146096145b5565b5b828204905092915050565b600081905092915050565b50565b6000614630600083614615565b915061463b82614620565b600082019050919050565b600061465182614623565b9150819050919050565b60008151905061466a81613439565b92915050565b600060208284031215614686576146856133fd565b5b60006146948482850161465b565b91505092915050565b6000819050919050565b60006146c26146bd6146b88461469d565b613919565b613465565b9050919050565b6146d2816146a7565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61470d81613427565b82525050565b600061471f8383614704565b60208301905092915050565b6000602082019050919050565b6000614743826146d8565b61474d81856146e3565b9350614758836146f4565b8060005b838110156147895781516147708882614713565b975061477b8361472b565b92505060018101905061475c565b5085935050505092915050565b600060a0820190506147ab600083018861353e565b6147b860208301876146c9565b81810360408301526147ca8186614738565b90506147d960608301856135bb565b6147e6608083018461353e565b969550505050505056fea2646970667358221220389691a25ec6b80d952ac7d3662e5de43cc656d511df418d37c0f8a6d429543e64736f6c634300080f0033

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

000000000000000000000000e61882d3e159af8594638ab712b847b37fa57b80

-----Decoded View---------------
Arg [0] : _treasury (address): 0xE61882D3E159Af8594638ab712B847b37FA57B80

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000e61882d3e159af8594638ab712b847b37fa57b80


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.