ETH Price: $3,676.55 (+0.86%)
 

Overview

Max Total Supply

100,000,000,000 FORCE

Holders

7

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
25,500,000 FORCE

Value
$0.00
0xdDEa4172f3a2d6E74538581B593bb13c38A11bE6
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:
StakeForce

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
london EvmVersion
File 1 of 11 : Token.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.13;
pragma experimental ABIEncoderV2;

import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";


contract StakeForce is ERC20, Ownable {
    using SafeMath for uint256;

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

    bool private swapping;

    address public marketingWallet;
    address public developmentWallet;
    address public communityFundWallet;

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

    bool public tradingActive = false;
    bool public swapEnabled = false;

    uint256 public buyTotalFees;
    uint256 private buyMarketingFee;
    uint256 private buyDevelopmentFee;
    uint256 private buyCommunityFundFee;

    uint256 public sellTotalFees;
    uint256 private sellMarketingFee;
    uint256 private sellDevelopmentFee;
    uint256 private sellCommunityFundFee;

    uint256 private tokensForMarketing;
    uint256 private tokensForDevelopment;
    uint256 private tokensForCommunityFund;
    uint256 private previousFee;

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) private _isExcludedMaxTransactionAmount;
    mapping(address => bool) private automatedMarketMakerPairs;

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

    event marketingWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event developmentWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event communityFundWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    constructor() ERC20("StakeForce", "FORCE") {
        uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        _approve(address(this), address(uniswapV2Router), type(uint256).max);

        uint256 totalSupply = 100_000_000_000 ether;

        maxTransactionAmount = (totalSupply) / 3000; //0.3% of total supply
        maxWallet = (totalSupply) / 100;  //1% of total supply
        swapTokensAtAmount = (totalSupply * 5) / 10000;

        buyMarketingFee = 5;
        buyDevelopmentFee = 5;
        buyCommunityFundFee = 5;
        buyTotalFees =
            buyMarketingFee +
            buyDevelopmentFee +
            buyCommunityFundFee;

        sellMarketingFee = 10;
        sellDevelopmentFee = 10;
        sellCommunityFundFee = 10;
        sellTotalFees =
            sellMarketingFee +
            sellDevelopmentFee +
            sellCommunityFundFee;

        previousFee = sellTotalFees;

        marketingWallet = address(0x41267f7a282529d89654739cF03128EE73d440e2);
        developmentWallet = address(0x41267f7a282529d89654739cF03128EE73d440e2);
        communityFundWallet = address(0x41267f7a282529d89654739cF03128EE73d440e2);

        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(deadAddress, true);
        excludeFromFees(marketingWallet, true);
        excludeFromFees(developmentWallet, true);
        excludeFromFees(communityFundWallet, true);

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(deadAddress, true);
        excludeFromMaxTransaction(address(uniswapV2Router), true);
        excludeFromMaxTransaction(marketingWallet, true);
        excludeFromMaxTransaction(developmentWallet, true);
        excludeFromMaxTransaction(communityFundWallet, true);

        _mint(address(this), totalSupply);
    }

    receive() external payable {}

    function burn(uint256 amount) external {
        _burn(msg.sender, amount);
    }

    function enableTrading() external onlyOwner {
        require(!tradingActive, "Trading already active.");

        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
            address(this),
            uniswapV2Router.WETH()
        );
        _approve(address(this), address(uniswapV2Pair), type(uint256).max);
        IERC20(uniswapV2Pair).approve(
            address(uniswapV2Router),
            type(uint256).max
        );

        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
        excludeFromMaxTransaction(address(uniswapV2Pair), true);

        uint256 tokensInWallet = balanceOf(address(this));
        uint256 tokensToAdd = tokensInWallet * 9 / 10; //90% of tokens in wallet go to LP

        uniswapV2Router.addLiquidityETH{value: address(this).balance}(
            address(this),
            tokensToAdd,
            0,
            0,
            owner(),
            block.timestamp
        );

        tradingActive = true;
        swapEnabled = true;
    }

    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "ERC20: Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "ERC20: Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxWalletAndTxnAmount(
        uint256 newTxnNum,
        uint256 newMaxWalletNum
    ) external onlyOwner {
        require(
            newTxnNum >= ((totalSupply() * 5) / 1000),
            "ERC20: Cannot set maxTxn lower than 0.5%"
        );
        require(
            newMaxWalletNum >= ((totalSupply() * 5) / 1000),
            "ERC20: Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newMaxWalletNum;
        maxTransactionAmount = newTxnNum;
    }

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

    function updateBuyFees(
        uint256 _marketingFee,
        uint256 _developmentFee,
        uint256 _communityFundFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyDevelopmentFee = _developmentFee;
        buyCommunityFundFee = _communityFundFee;
        buyTotalFees =
            buyMarketingFee +
            buyDevelopmentFee +
            buyCommunityFundFee;
        require(buyTotalFees <= 10, "ERC20: Must keep fees at 10% or less");
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _developmentFee,
        uint256 _communityFundFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellDevelopmentFee = _developmentFee;
        sellCommunityFundFee = _communityFundFee;
        sellTotalFees =
            sellMarketingFee +
            sellDevelopmentFee +
            sellCommunityFundFee;
        previousFee = sellTotalFees;
        require(sellTotalFees <= 10, "ERC20: Must keep fees at 10% or less");
    }

    function updateMarketingWallet(address _marketingWallet)
        external
        onlyOwner
    {
        require(_marketingWallet != address(0), "ERC20: Address 0");
        address oldWallet = marketingWallet;
        marketingWallet = _marketingWallet;
        emit marketingWalletUpdated(marketingWallet, oldWallet);
    }

    function updateDevelopmentWallet(address _developmentWallet)
        external
        onlyOwner
    {
        require(_developmentWallet != address(0), "ERC20: Address 0");
        address oldWallet = developmentWallet;
        developmentWallet = _developmentWallet;
        emit developmentWalletUpdated(developmentWallet, oldWallet);
    }

    function updateCommunityFundWallet(address _communityFundWallet)
        external
        onlyOwner
    {
        require(_communityFundWallet != address(0), "ERC20: Address 0");
        address oldWallet = communityFundWallet;
        communityFundWallet = _communityFundWallet;
        emit communityFundWalletUpdated(communityFundWallet, oldWallet);
    }

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

    function withdrawStuckETH() public onlyOwner {
        bool success;
        (success, ) = address(msg.sender).call{value: address(this).balance}(
            ""
        );
    }

    function withdrawStuckTokens(address tkn) public onlyOwner {
        require(IERC20(tkn).balanceOf(address(this)) > 0, "No tokens");
        uint256 amount = IERC20(tkn).balanceOf(address(this));
        IERC20(tkn).transfer(msg.sender, amount);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

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

            //when buy
            if (
                automatedMarketMakerPairs[from] &&
                !_isExcludedMaxTransactionAmount[to]
            ) {
                require(
                    amount <= maxTransactionAmount,
                    "ERC20: Buy transfer amount exceeds the maxTransactionAmount."
                );
                require(
                    amount + balanceOf(to) <= maxWallet,
                    "ERC20: Max wallet exceeded"
                );
            }
            //when sell
            else if (
                automatedMarketMakerPairs[to] &&
                !_isExcludedMaxTransactionAmount[from]
            ) {
                require(
                    amount <= maxTransactionAmount,
                    "ERC20: Sell transfer amount exceeds the maxTransactionAmount."
                );
            } else if (!_isExcludedMaxTransactionAmount[to]) {
                require(
                    amount + balanceOf(to) <= maxWallet,
                    "ERC20: Max wallet exceeded"
                );
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;

        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForCommunityFund +=
                    (fees * sellCommunityFundFee) /
                    sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
                tokensForDevelopment +=
                    (fees * sellDevelopmentFee) /
                    sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForCommunityFund +=
                    (fees * buyCommunityFundFee) /
                    buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
                tokensForDevelopment +=
                    (fees * buyDevelopmentFee) /
                    buyTotalFees;
            }

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

            amount -= fees;
        }

        super._transfer(from, to, amount);
        sellTotalFees = previousFee;
    }

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

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

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForCommunityFund +
            tokensForMarketing +
            tokensForDevelopment;
        bool success;

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }

        swapTokensForEth(contractBalance);

        uint256 ethBalance = address(this).balance;

        uint256 ethForDevelopment = ethBalance.mul(tokensForDevelopment).div(
            totalTokensToSwap
        );

        uint256 ethForCommunityFund = ethBalance
            .mul(tokensForCommunityFund)
            .div(totalTokensToSwap);

        tokensForMarketing = 0;
        tokensForDevelopment = 0;
        tokensForCommunityFund = 0;

        (success, ) = address(communityFundWallet).call{
            value: ethForCommunityFund
        }("");

        (success, ) = address(developmentWallet).call{value: ethForDevelopment}(
            ""
        );

        (success, ) = address(marketingWallet).call{
            value: address(this).balance
        }("");
    }
}

File 2 of 11 : IUniswapV2Router02.sol
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

File 3 of 11 : IUniswapV2Router01.sol
pragma solidity >=0.6.2;

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

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

File 4 of 11 : IUniswapV2Pair.sol
pragma solidity >=0.5.0;

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

File 5 of 11 : IUniswapV2Factory.sol
pragma solidity >=0.5.0;

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

File 6 of 11 : 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 7 of 11 : 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 8 of 11 : 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 9 of 11 : 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);
}

File 10 of 11 : 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 11 of 11 : 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);
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"communityFundWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"developmentWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"communityFundWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"developmentWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"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":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"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":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_developmentFee","type":"uint256"},{"internalType":"uint256","name":"_communityFundFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_communityFundWallet","type":"address"}],"name":"updateCommunityFundWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_developmentWallet","type":"address"}],"name":"updateDevelopmentWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTxnNum","type":"uint256"},{"internalType":"uint256","name":"newMaxWalletNum","type":"uint256"}],"name":"updateMaxWalletAndTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_developmentFee","type":"uint256"},{"internalType":"uint256","name":"_communityFundFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tkn","type":"address"}],"name":"withdrawStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526000600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff0219169083151502179055503480156200004757600080fd5b506040518060400160405280600a81526020017f5374616b65466f726365000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f464f5243450000000000000000000000000000000000000000000000000000008152508160039080519060200190620000cc92919062000b63565b508060049080519060200190620000e592919062000b63565b50505062000108620000fc6200056c60201b60201c565b6200057460201b60201c565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505062000185306080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6200063a60201b60201c565b60006c01431e0fae6d7217caa00000009050610bb881620001a7919062000c7b565b600a81905550606481620001bc919062000c7b565b600c81905550612710600582620001d4919062000cb3565b620001e0919062000c7b565b600b819055506005600f8190555060056010819055506005601181905550601154601054600f5462000213919062000d14565b6200021f919062000d14565b600e81905550600a601381905550600a601481905550600a60158190555060155460145460135462000252919062000d14565b6200025e919062000d14565b6012819055506012546019819055507341267f7a282529d89654739cf03128ee73d440e2600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507341267f7a282529d89654739cf03128ee73d440e2600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507341267f7a282529d89654739cf03128ee73d440e2600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200038e620003806200080b60201b60201c565b60016200083560201b60201c565b620003a13060016200083560201b60201c565b620003b661dead60016200083560201b60201c565b620003eb600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200083560201b60201c565b62000420600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200083560201b60201c565b62000455600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200083560201b60201c565b62000477620004696200080b60201b60201c565b6001620008f060201b60201c565b6200048a306001620008f060201b60201c565b6200049f61dead6001620008f060201b60201c565b620004b46080516001620008f060201b60201c565b620004e9600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620008f060201b60201c565b6200051e600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620008f060201b60201c565b62000553600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620008f060201b60201c565b6200056530826200095b60201b60201c565b5062001062565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620006ac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006a39062000df8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200071e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007159062000e90565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051620007fe919062000ec3565b60405180910390a3505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200084562000ac860201b60201c565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620008e4919062000efd565b60405180910390a25050565b6200090062000ac860201b60201c565b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620009cd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009c49062000f6a565b60405180910390fd5b620009e16000838362000b5960201b60201c565b8060026000828254620009f5919062000d14565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000aa8919062000ec3565b60405180910390a362000ac46000838362000b5e60201b60201c565b5050565b62000ad86200056c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000afe6200080b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000b57576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b4e9062000fdc565b60405180910390fd5b565b505050565b505050565b82805462000b71906200102d565b90600052602060002090601f01602090048101928262000b95576000855562000be1565b82601f1062000bb057805160ff191683800117855562000be1565b8280016001018555821562000be1579182015b8281111562000be057825182559160200191906001019062000bc3565b5b50905062000bf0919062000bf4565b5090565b5b8082111562000c0f57600081600090555060010162000bf5565b5090565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000c888262000c13565b915062000c958362000c13565b92508262000ca85762000ca762000c1d565b5b828204905092915050565b600062000cc08262000c13565b915062000ccd8362000c13565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000d095762000d0862000c4c565b5b828202905092915050565b600062000d218262000c13565b915062000d2e8362000c13565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000d665762000d6562000c4c565b5b828201905092915050565b600082825260208201905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600062000de060248362000d71565b915062000ded8262000d82565b604082019050919050565b6000602082019050818103600083015262000e138162000dd1565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600062000e7860228362000d71565b915062000e858262000e1a565b604082019050919050565b6000602082019050818103600083015262000eab8162000e69565b9050919050565b62000ebd8162000c13565b82525050565b600060208201905062000eda600083018462000eb2565b92915050565b60008115159050919050565b62000ef78162000ee0565b82525050565b600060208201905062000f14600083018462000eec565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000f52601f8362000d71565b915062000f5f8262000f1a565b602082019050919050565b6000602082019050818103600083015262000f858162000f43565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000fc460208362000d71565b915062000fd18262000f8c565b602082019050919050565b6000602082019050818103600083015262000ff78162000fb5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200104657607f821691505b6020821081036200105c576200105b62000ffe565b5b50919050565b608051614cf2620010af60003960008181610a4001528181610d7301528181610e1e01528181610fd8015281816110ff015281816134b90152818161359a01526135c10152614cf26000f3fe60806040526004361061024a5760003560e01c80638da5cb5b11610139578063c17b5b8c116100b6578063dd62ed3e1161007a578063dd62ed3e1461088d578063e2f45605146108ca578063f023f573146108f5578063f2fde38b1461091e578063f5648a4f14610947578063f8b45b051461095e57610251565b8063c17b5b8c146107a8578063c8c8ebe4146107d1578063cb963728146107fc578063d257b34f14610825578063d85ba0631461086257610251565b8063a9059cbb116100fd578063a9059cbb146106c3578063aacebbe314610700578063bbc0c74214610729578063c024666814610754578063c04a54141461077d57610251565b80638da5cb5b146105de57806395d89b41146106095780639618839914610634578063a25975a21461065d578063a457c2d71461068657610251565b806349bd5a5e116101c7578063715018a61161018b578063715018a6146105335780637571336a1461054a57806375f0a874146105735780638095d5641461059e5780638a8c523c146105c757610251565b806349bd5a5e146104385780634fbee193146104635780636a486a8e146104a05780636ddd1713146104cb57806370a08231146104f657610251565b806323b872dd1161020e57806323b872dd1461033f57806327c8f8351461037c578063313ce567146103a757806339509351146103d257806342966c681461040f57610251565b806306fdde0314610256578063095ea7b3146102815780631694505e146102be57806318160ddd146102e9578063197b5a301461031457610251565b3661025157005b600080fd5b34801561026257600080fd5b5061026b610989565b60405161027891906136f0565b60405180910390f35b34801561028d57600080fd5b506102a860048036038101906102a391906137ab565b610a1b565b6040516102b59190613806565b60405180910390f35b3480156102ca57600080fd5b506102d3610a3e565b6040516102e09190613880565b60405180910390f35b3480156102f557600080fd5b506102fe610a62565b60405161030b91906138aa565b60405180910390f35b34801561032057600080fd5b50610329610a6c565b60405161033691906138d4565b60405180910390f35b34801561034b57600080fd5b50610366600480360381019061036191906138ef565b610a92565b6040516103739190613806565b60405180910390f35b34801561038857600080fd5b50610391610ac1565b60405161039e91906138d4565b60405180910390f35b3480156103b357600080fd5b506103bc610ac7565b6040516103c9919061395e565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f491906137ab565b610ad0565b6040516104069190613806565b60405180910390f35b34801561041b57600080fd5b5061043660048036038101906104319190613979565b610b07565b005b34801561044457600080fd5b5061044d610b14565b60405161045a91906138d4565b60405180910390f35b34801561046f57600080fd5b5061048a600480360381019061048591906139a6565b610b3a565b6040516104979190613806565b60405180910390f35b3480156104ac57600080fd5b506104b5610b90565b6040516104c291906138aa565b60405180910390f35b3480156104d757600080fd5b506104e0610b96565b6040516104ed9190613806565b60405180910390f35b34801561050257600080fd5b5061051d600480360381019061051891906139a6565b610ba9565b60405161052a91906138aa565b60405180910390f35b34801561053f57600080fd5b50610548610bf1565b005b34801561055657600080fd5b50610571600480360381019061056c91906139ff565b610c05565b005b34801561057f57600080fd5b50610588610c68565b60405161059591906138d4565b60405180910390f35b3480156105aa57600080fd5b506105c560048036038101906105c09190613a3f565b610c8e565b005b3480156105d357600080fd5b506105dc610d19565b005b3480156105ea57600080fd5b506105f36111e9565b60405161060091906138d4565b60405180910390f35b34801561061557600080fd5b5061061e611213565b60405161062b91906136f0565b60405180910390f35b34801561064057600080fd5b5061065b60048036038101906106569190613a92565b6112a5565b005b34801561066957600080fd5b50610684600480360381019061067f91906139a6565b611385565b005b34801561069257600080fd5b506106ad60048036038101906106a891906137ab565b6114e4565b6040516106ba9190613806565b60405180910390f35b3480156106cf57600080fd5b506106ea60048036038101906106e591906137ab565b61155b565b6040516106f79190613806565b60405180910390f35b34801561070c57600080fd5b50610727600480360381019061072291906139a6565b61157e565b005b34801561073557600080fd5b5061073e6116dd565b60405161074b9190613806565b60405180910390f35b34801561076057600080fd5b5061077b600480360381019061077691906139ff565b6116f0565b005b34801561078957600080fd5b506107926117a1565b60405161079f91906138d4565b60405180910390f35b3480156107b457600080fd5b506107cf60048036038101906107ca9190613a3f565b6117c7565b005b3480156107dd57600080fd5b506107e661185b565b6040516107f391906138aa565b60405180910390f35b34801561080857600080fd5b50610823600480360381019061081e91906139a6565b611861565b005b34801561083157600080fd5b5061084c60048036038101906108479190613979565b611a26565b6040516108599190613806565b60405180910390f35b34801561086e57600080fd5b50610877611b07565b60405161088491906138aa565b60405180910390f35b34801561089957600080fd5b506108b460048036038101906108af9190613ad2565b611b0d565b6040516108c191906138aa565b60405180910390f35b3480156108d657600080fd5b506108df611b94565b6040516108ec91906138aa565b60405180910390f35b34801561090157600080fd5b5061091c600480360381019061091791906139a6565b611b9a565b005b34801561092a57600080fd5b50610945600480360381019061094091906139a6565b611cf9565b005b34801561095357600080fd5b5061095c611d7c565b005b34801561096a57600080fd5b50610973611df5565b60405161098091906138aa565b60405180910390f35b60606003805461099890613b41565b80601f01602080910402602001604051908101604052809291908181526020018280546109c490613b41565b8015610a115780601f106109e657610100808354040283529160200191610a11565b820191906000526020600020905b8154815290600101906020018083116109f457829003601f168201915b5050505050905090565b600080610a26611dfb565b9050610a33818585611e03565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610a9d611dfb565b9050610aaa858285611fcc565b610ab5858585612058565b60019150509392505050565b61dead81565b60006012905090565b600080610adb611dfb565b9050610afc818585610aed8589611b0d565b610af79190613ba1565b611e03565b600191505092915050565b610b113382612b1a565b50565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60125481565b600d60019054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610bf9612ce7565b610c036000612d65565b565b610c0d612ce7565b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610c96612ce7565b82600f819055508160108190555080601181905550601154601054600f54610cbe9190613ba1565b610cc89190613ba1565b600e81905550600a600e541115610d14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0b90613c69565b60405180910390fd5b505050565b610d21612ce7565b600d60009054906101000a900460ff1615610d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6890613cd5565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ddc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e009190613d0a565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396307f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e87573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eab9190613d0a565b6040518363ffffffff1660e01b8152600401610ec8929190613d37565b6020604051808303816000875af1158015610ee7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f0b9190613d0a565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610f9830600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611e03565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b37f00000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b8152600401611035929190613d60565b6020604051808303816000875af1158015611054573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110789190613d9e565b506110a6600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001612e2b565b6110d3600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001610c05565b60006110de30610ba9565b90506000600a6009836110f19190613dcb565b6110fb9190613e54565b90507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7194730846000806111476111e9565b426040518863ffffffff1660e01b815260040161116996959493929190613ec0565b60606040518083038185885af1158015611187573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906111ac9190613f36565b5050506001600d60006101000a81548160ff0219169083151502179055506001600d60016101000a81548160ff0219169083151502179055505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461122290613b41565b80601f016020809104026020016040519081016040528092919081815260200182805461124e90613b41565b801561129b5780601f106112705761010080835404028352916020019161129b565b820191906000526020600020905b81548152906001019060200180831161127e57829003601f168201915b5050505050905090565b6112ad612ce7565b6103e860056112ba610a62565b6112c49190613dcb565b6112ce9190613e54565b821015611310576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130790613ffb565b60405180910390fd5b6103e8600561131d610a62565b6113279190613dcb565b6113319190613e54565b811015611373576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136a9061408d565b60405180910390fd5b80600c8190555081600a819055505050565b61138d612ce7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036113fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f3906140f9565b60405180910390fd5b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fa13e0842056b6007f193cc5de6b4f061118c03f9e43e8ad46768a6fa48211a7360405160405180910390a35050565b6000806114ef611dfb565b905060006114fd8286611b0d565b905083811015611542576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115399061418b565b60405180910390fd5b61154f8286868403611e03565b60019250505092915050565b600080611566611dfb565b9050611573818585612058565b600191505092915050565b611586612ce7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ec906140f9565b60405180910390fd5b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a35050565b600d60009054906101000a900460ff1681565b6116f8612ce7565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516117959190613806565b60405180910390a25050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6117cf612ce7565b8260138190555081601481905550806015819055506015546014546013546117f79190613ba1565b6118019190613ba1565b601281905550601254601981905550600a6012541115611856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184d90613c69565b60405180910390fd5b505050565b600a5481565b611869612ce7565b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016118a491906138d4565b602060405180830381865afa1580156118c1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118e591906141ab565b11611925576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191c90614224565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161196091906138d4565b602060405180830381865afa15801561197d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119a191906141ab565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016119de929190613d60565b6020604051808303816000875af11580156119fd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a219190613d9e565b505050565b6000611a30612ce7565b620186a06001611a3e610a62565b611a489190613dcb565b611a529190613e54565b821015611a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8b906142b6565b60405180910390fd5b6103e86005611aa1610a62565b611aab9190613dcb565b611ab59190613e54565b821115611af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aee90614348565b60405180910390fd5b81600b8190555060019050919050565b600e5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b611ba2612ce7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c08906140f9565b60405180910390fd5b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167ffaf1b77ed79f6e898c44dd8ab36b330c7b2fd39bcaab05ed6362480df870396560405160405180910390a35050565b611d01612ce7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d67906143da565b60405180910390fd5b611d7981612d65565b50565b611d84612ce7565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051611daa9061442b565b60006040518083038185875af1925050503d8060008114611de7576040519150601f19603f3d011682016040523d82523d6000602084013e611dec565b606091505b50508091505050565b600c5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e69906144b2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ee1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed890614544565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611fbf91906138aa565b60405180910390a3505050565b6000611fd88484611b0d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146120525781811015612044576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203b906145b0565b60405180910390fd5b6120518484848403611e03565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036120c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120be90614642565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612136576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212d906146d4565b60405180910390fd5b6000810361214f5761214a83836000612ecc565b612b15565b6121576111e9565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156121c557506121956111e9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156121fe5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612238575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156122515750600660149054906101000a900460ff16155b1561263457600d60009054906101000a900460ff1661234b57601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061230b5750601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61234a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234190614740565b60405180910390fd5b5b601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156123ee5750601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561249557600a54811115612438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242f906147d2565b60405180910390fd5b600c5461244483610ba9565b8261244f9190613ba1565b1115612490576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124879061483e565b60405180910390fd5b612633565b601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156125385750601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561258757600a54811115612582576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612579906148d0565b60405180910390fd5b612632565b601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661263157600c546125e483610ba9565b826125ef9190613ba1565b1115612630576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126279061483e565b60405180910390fd5b5b5b5b5b600061263f30610ba9565b90506000600b5482101590508080156126645750600d60019054906101000a900460ff165b801561267d5750600660149054906101000a900460ff16155b80156126d35750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156127295750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561277f5750601a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156127c3576001600660146101000a81548160ff0219169083151502179055506127a7613142565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff16159050601a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806128795750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561288357600090505b60008115612afc57601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128e657506000601254115b156129b3576129136064612905601254886133e490919063ffffffff16565b6133fa90919063ffffffff16565b9050601254601554826129269190613dcb565b6129309190613e54565b601860008282546129419190613ba1565b92505081905550601254601354826129599190613dcb565b6129639190613e54565b601660008282546129749190613ba1565b925050819055506012546014548261298c9190613dcb565b6129969190613e54565b601760008282546129a79190613ba1565b92505081905550612ad8565b601c60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a0e57506000600e54115b15612ad757612a3b6064612a2d600e54886133e490919063ffffffff16565b6133fa90919063ffffffff16565b9050600e5460115482612a4e9190613dcb565b612a589190613e54565b60186000828254612a699190613ba1565b92505081905550600e54600f5482612a819190613dcb565b612a8b9190613e54565b60166000828254612a9c9190613ba1565b92505081905550600e5460105482612ab49190613dcb565b612abe9190613e54565b60176000828254612acf9190613ba1565b925050819055505b5b6000811115612aed57612aec873083612ecc565b5b8085612af991906148f0565b94505b612b07878787612ecc565b601954601281905550505050505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8090614996565b60405180910390fd5b612b9582600083613410565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612c1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1290614a28565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612cce91906138aa565b60405180910390a3612ce283600084613415565b505050565b612cef611dfb565b73ffffffffffffffffffffffffffffffffffffffff16612d0d6111e9565b73ffffffffffffffffffffffffffffffffffffffff1614612d63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5a90614a94565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612f3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3290614642565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fa1906146d4565b60405180910390fd5b612fb5838383613410565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561303b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161303290614b26565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161312991906138aa565b60405180910390a361313c848484613415565b50505050565b600061314d30610ba9565b905060006017546016546018546131649190613ba1565b61316e9190613ba1565b90506000808314806131805750600082145b1561318d575050506133e2565b6014600b5461319c9190613dcb565b8311156131b5576014600b546131b29190613dcb565b92505b6131be8361341a565b600047905060006131ec846131de601754856133e490919063ffffffff16565b6133fa90919063ffffffff16565b9050600061321785613209601854866133e490919063ffffffff16565b6133fa90919063ffffffff16565b9050600060168190555060006017819055506000601881905550600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16816040516132779061442b565b60006040518083038185875af1925050503d80600081146132b4576040519150601f19603f3d011682016040523d82523d6000602084013e6132b9565b606091505b505080945050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516133059061442b565b60006040518083038185875af1925050503d8060008114613342576040519150601f19603f3d011682016040523d82523d6000602084013e613347565b606091505b505080945050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516133939061442b565b60006040518083038185875af1925050503d80600081146133d0576040519150601f19603f3d011682016040523d82523d6000602084013e6133d5565b606091505b5050809450505050505050505b565b600081836133f29190613dcb565b905092915050565b600081836134089190613e54565b905092915050565b505050565b505050565b6000600267ffffffffffffffff81111561343757613436614b46565b5b6040519080825280602002602001820160405280156134655781602001602082028036833780820191505090505b509050308160008151811061347d5761347c614b75565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613522573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135469190613d0a565b8160018151811061355a57613559614b75565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506135bf307f000000000000000000000000000000000000000000000000000000000000000084611e03565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613621959493929190614c62565b600060405180830381600087803b15801561363b57600080fd5b505af115801561364f573d6000803e3d6000fd5b505050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613691578082015181840152602081019050613676565b838111156136a0576000848401525b50505050565b6000601f19601f8301169050919050565b60006136c282613657565b6136cc8185613662565b93506136dc818560208601613673565b6136e5816136a6565b840191505092915050565b6000602082019050818103600083015261370a81846136b7565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061374282613717565b9050919050565b61375281613737565b811461375d57600080fd5b50565b60008135905061376f81613749565b92915050565b6000819050919050565b61378881613775565b811461379357600080fd5b50565b6000813590506137a58161377f565b92915050565b600080604083850312156137c2576137c1613712565b5b60006137d085828601613760565b92505060206137e185828601613796565b9150509250929050565b60008115159050919050565b613800816137eb565b82525050565b600060208201905061381b60008301846137f7565b92915050565b6000819050919050565b600061384661384161383c84613717565b613821565b613717565b9050919050565b60006138588261382b565b9050919050565b600061386a8261384d565b9050919050565b61387a8161385f565b82525050565b60006020820190506138956000830184613871565b92915050565b6138a481613775565b82525050565b60006020820190506138bf600083018461389b565b92915050565b6138ce81613737565b82525050565b60006020820190506138e960008301846138c5565b92915050565b60008060006060848603121561390857613907613712565b5b600061391686828701613760565b935050602061392786828701613760565b925050604061393886828701613796565b9150509250925092565b600060ff82169050919050565b61395881613942565b82525050565b6000602082019050613973600083018461394f565b92915050565b60006020828403121561398f5761398e613712565b5b600061399d84828501613796565b91505092915050565b6000602082840312156139bc576139bb613712565b5b60006139ca84828501613760565b91505092915050565b6139dc816137eb565b81146139e757600080fd5b50565b6000813590506139f9816139d3565b92915050565b60008060408385031215613a1657613a15613712565b5b6000613a2485828601613760565b9250506020613a35858286016139ea565b9150509250929050565b600080600060608486031215613a5857613a57613712565b5b6000613a6686828701613796565b9350506020613a7786828701613796565b9250506040613a8886828701613796565b9150509250925092565b60008060408385031215613aa957613aa8613712565b5b6000613ab785828601613796565b9250506020613ac885828601613796565b9150509250929050565b60008060408385031215613ae957613ae8613712565b5b6000613af785828601613760565b9250506020613b0885828601613760565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613b5957607f821691505b602082108103613b6c57613b6b613b12565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613bac82613775565b9150613bb783613775565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613bec57613beb613b72565b5b828201905092915050565b7f45524332303a204d757374206b656570206665657320617420313025206f722060008201527f6c65737300000000000000000000000000000000000000000000000000000000602082015250565b6000613c53602483613662565b9150613c5e82613bf7565b604082019050919050565b60006020820190508181036000830152613c8281613c46565b9050919050565b7f54726164696e6720616c7265616479206163746976652e000000000000000000600082015250565b6000613cbf601783613662565b9150613cca82613c89565b602082019050919050565b60006020820190508181036000830152613cee81613cb2565b9050919050565b600081519050613d0481613749565b92915050565b600060208284031215613d2057613d1f613712565b5b6000613d2e84828501613cf5565b91505092915050565b6000604082019050613d4c60008301856138c5565b613d5960208301846138c5565b9392505050565b6000604082019050613d7560008301856138c5565b613d82602083018461389b565b9392505050565b600081519050613d98816139d3565b92915050565b600060208284031215613db457613db3613712565b5b6000613dc284828501613d89565b91505092915050565b6000613dd682613775565b9150613de183613775565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e1a57613e19613b72565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613e5f82613775565b9150613e6a83613775565b925082613e7a57613e79613e25565b5b828204905092915050565b6000819050919050565b6000613eaa613ea5613ea084613e85565b613821565b613775565b9050919050565b613eba81613e8f565b82525050565b600060c082019050613ed560008301896138c5565b613ee2602083018861389b565b613eef6040830187613eb1565b613efc6060830186613eb1565b613f0960808301856138c5565b613f1660a083018461389b565b979650505050505050565b600081519050613f308161377f565b92915050565b600080600060608486031215613f4f57613f4e613712565b5b6000613f5d86828701613f21565b9350506020613f6e86828701613f21565b9250506040613f7f86828701613f21565b9150509250925092565b7f45524332303a2043616e6e6f7420736574206d617854786e206c6f776572207460008201527f68616e20302e3525000000000000000000000000000000000000000000000000602082015250565b6000613fe5602883613662565b9150613ff082613f89565b604082019050919050565b6000602082019050818103600083015261401481613fd8565b9050919050565b7f45524332303a2043616e6e6f7420736574206d617857616c6c6574206c6f776560008201527f72207468616e20302e3525000000000000000000000000000000000000000000602082015250565b6000614077602b83613662565b91506140828261401b565b604082019050919050565b600060208201905081810360008301526140a68161406a565b9050919050565b7f45524332303a2041646472657373203000000000000000000000000000000000600082015250565b60006140e3601083613662565b91506140ee826140ad565b602082019050919050565b60006020820190508181036000830152614112816140d6565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614175602583613662565b915061418082614119565b604082019050919050565b600060208201905081810360008301526141a481614168565b9050919050565b6000602082840312156141c1576141c0613712565b5b60006141cf84828501613f21565b91505092915050565b7f4e6f20746f6b656e730000000000000000000000000000000000000000000000600082015250565b600061420e600983613662565b9150614219826141d8565b602082019050919050565b6000602082019050818103600083015261423d81614201565b9050919050565b7f45524332303a205377617020616d6f756e742063616e6e6f74206265206c6f7760008201527f6572207468616e20302e3030312520746f74616c20737570706c792e00000000602082015250565b60006142a0603c83613662565b91506142ab82614244565b604082019050919050565b600060208201905081810360008301526142cf81614293565b9050919050565b7f45524332303a205377617020616d6f756e742063616e6e6f742062652068696760008201527f686572207468616e20302e352520746f74616c20737570706c792e0000000000602082015250565b6000614332603b83613662565b915061433d826142d6565b604082019050919050565b6000602082019050818103600083015261436181614325565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006143c4602683613662565b91506143cf82614368565b604082019050919050565b600060208201905081810360008301526143f3816143b7565b9050919050565b600081905092915050565b50565b60006144156000836143fa565b915061442082614405565b600082019050919050565b600061443682614408565b9150819050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061449c602483613662565b91506144a782614440565b604082019050919050565b600060208201905081810360008301526144cb8161448f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061452e602283613662565b9150614539826144d2565b604082019050919050565b6000602082019050818103600083015261455d81614521565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061459a601d83613662565b91506145a582614564565b602082019050919050565b600060208201905081810360008301526145c98161458d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061462c602583613662565b9150614637826145d0565b604082019050919050565b6000602082019050818103600083015261465b8161461f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006146be602383613662565b91506146c982614662565b604082019050919050565b600060208201905081810360008301526146ed816146b1565b9050919050565b7f45524332303a2054726164696e67206973206e6f74206163746976652e000000600082015250565b600061472a601d83613662565b9150614735826146f4565b602082019050919050565b600060208201905081810360008301526147598161471d565b9050919050565b7f45524332303a20427579207472616e7366657220616d6f756e7420657863656560008201527f647320746865206d61785472616e73616374696f6e416d6f756e742e00000000602082015250565b60006147bc603c83613662565b91506147c782614760565b604082019050919050565b600060208201905081810360008301526147eb816147af565b9050919050565b7f45524332303a204d61782077616c6c6574206578636565646564000000000000600082015250565b6000614828601a83613662565b9150614833826147f2565b602082019050919050565b600060208201905081810360008301526148578161481b565b9050919050565b7f45524332303a2053656c6c207472616e7366657220616d6f756e74206578636560008201527f65647320746865206d61785472616e73616374696f6e416d6f756e742e000000602082015250565b60006148ba603d83613662565b91506148c58261485e565b604082019050919050565b600060208201905081810360008301526148e9816148ad565b9050919050565b60006148fb82613775565b915061490683613775565b92508282101561491957614918613b72565b5b828203905092915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614980602183613662565b915061498b82614924565b604082019050919050565b600060208201905081810360008301526149af81614973565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000614a12602283613662565b9150614a1d826149b6565b604082019050919050565b60006020820190508181036000830152614a4181614a05565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614a7e602083613662565b9150614a8982614a48565b602082019050919050565b60006020820190508181036000830152614aad81614a71565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614b10602683613662565b9150614b1b82614ab4565b604082019050919050565b60006020820190508181036000830152614b3f81614b03565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614bd981613737565b82525050565b6000614beb8383614bd0565b60208301905092915050565b6000602082019050919050565b6000614c0f82614ba4565b614c198185614baf565b9350614c2483614bc0565b8060005b83811015614c55578151614c3c8882614bdf565b9750614c4783614bf7565b925050600181019050614c28565b5085935050505092915050565b600060a082019050614c77600083018861389b565b614c846020830187613eb1565b8181036040830152614c968186614c04565b9050614ca560608301856138c5565b614cb2608083018461389b565b969550505050505056fea26469706673582212203514914d95845d5f9606fcbeaeb2616d39632da6a4bc1d5bd6ae6fa27c0d0b4864736f6c634300080d0033

Deployed Bytecode

0x60806040526004361061024a5760003560e01c80638da5cb5b11610139578063c17b5b8c116100b6578063dd62ed3e1161007a578063dd62ed3e1461088d578063e2f45605146108ca578063f023f573146108f5578063f2fde38b1461091e578063f5648a4f14610947578063f8b45b051461095e57610251565b8063c17b5b8c146107a8578063c8c8ebe4146107d1578063cb963728146107fc578063d257b34f14610825578063d85ba0631461086257610251565b8063a9059cbb116100fd578063a9059cbb146106c3578063aacebbe314610700578063bbc0c74214610729578063c024666814610754578063c04a54141461077d57610251565b80638da5cb5b146105de57806395d89b41146106095780639618839914610634578063a25975a21461065d578063a457c2d71461068657610251565b806349bd5a5e116101c7578063715018a61161018b578063715018a6146105335780637571336a1461054a57806375f0a874146105735780638095d5641461059e5780638a8c523c146105c757610251565b806349bd5a5e146104385780634fbee193146104635780636a486a8e146104a05780636ddd1713146104cb57806370a08231146104f657610251565b806323b872dd1161020e57806323b872dd1461033f57806327c8f8351461037c578063313ce567146103a757806339509351146103d257806342966c681461040f57610251565b806306fdde0314610256578063095ea7b3146102815780631694505e146102be57806318160ddd146102e9578063197b5a301461031457610251565b3661025157005b600080fd5b34801561026257600080fd5b5061026b610989565b60405161027891906136f0565b60405180910390f35b34801561028d57600080fd5b506102a860048036038101906102a391906137ab565b610a1b565b6040516102b59190613806565b60405180910390f35b3480156102ca57600080fd5b506102d3610a3e565b6040516102e09190613880565b60405180910390f35b3480156102f557600080fd5b506102fe610a62565b60405161030b91906138aa565b60405180910390f35b34801561032057600080fd5b50610329610a6c565b60405161033691906138d4565b60405180910390f35b34801561034b57600080fd5b50610366600480360381019061036191906138ef565b610a92565b6040516103739190613806565b60405180910390f35b34801561038857600080fd5b50610391610ac1565b60405161039e91906138d4565b60405180910390f35b3480156103b357600080fd5b506103bc610ac7565b6040516103c9919061395e565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f491906137ab565b610ad0565b6040516104069190613806565b60405180910390f35b34801561041b57600080fd5b5061043660048036038101906104319190613979565b610b07565b005b34801561044457600080fd5b5061044d610b14565b60405161045a91906138d4565b60405180910390f35b34801561046f57600080fd5b5061048a600480360381019061048591906139a6565b610b3a565b6040516104979190613806565b60405180910390f35b3480156104ac57600080fd5b506104b5610b90565b6040516104c291906138aa565b60405180910390f35b3480156104d757600080fd5b506104e0610b96565b6040516104ed9190613806565b60405180910390f35b34801561050257600080fd5b5061051d600480360381019061051891906139a6565b610ba9565b60405161052a91906138aa565b60405180910390f35b34801561053f57600080fd5b50610548610bf1565b005b34801561055657600080fd5b50610571600480360381019061056c91906139ff565b610c05565b005b34801561057f57600080fd5b50610588610c68565b60405161059591906138d4565b60405180910390f35b3480156105aa57600080fd5b506105c560048036038101906105c09190613a3f565b610c8e565b005b3480156105d357600080fd5b506105dc610d19565b005b3480156105ea57600080fd5b506105f36111e9565b60405161060091906138d4565b60405180910390f35b34801561061557600080fd5b5061061e611213565b60405161062b91906136f0565b60405180910390f35b34801561064057600080fd5b5061065b60048036038101906106569190613a92565b6112a5565b005b34801561066957600080fd5b50610684600480360381019061067f91906139a6565b611385565b005b34801561069257600080fd5b506106ad60048036038101906106a891906137ab565b6114e4565b6040516106ba9190613806565b60405180910390f35b3480156106cf57600080fd5b506106ea60048036038101906106e591906137ab565b61155b565b6040516106f79190613806565b60405180910390f35b34801561070c57600080fd5b50610727600480360381019061072291906139a6565b61157e565b005b34801561073557600080fd5b5061073e6116dd565b60405161074b9190613806565b60405180910390f35b34801561076057600080fd5b5061077b600480360381019061077691906139ff565b6116f0565b005b34801561078957600080fd5b506107926117a1565b60405161079f91906138d4565b60405180910390f35b3480156107b457600080fd5b506107cf60048036038101906107ca9190613a3f565b6117c7565b005b3480156107dd57600080fd5b506107e661185b565b6040516107f391906138aa565b60405180910390f35b34801561080857600080fd5b50610823600480360381019061081e91906139a6565b611861565b005b34801561083157600080fd5b5061084c60048036038101906108479190613979565b611a26565b6040516108599190613806565b60405180910390f35b34801561086e57600080fd5b50610877611b07565b60405161088491906138aa565b60405180910390f35b34801561089957600080fd5b506108b460048036038101906108af9190613ad2565b611b0d565b6040516108c191906138aa565b60405180910390f35b3480156108d657600080fd5b506108df611b94565b6040516108ec91906138aa565b60405180910390f35b34801561090157600080fd5b5061091c600480360381019061091791906139a6565b611b9a565b005b34801561092a57600080fd5b50610945600480360381019061094091906139a6565b611cf9565b005b34801561095357600080fd5b5061095c611d7c565b005b34801561096a57600080fd5b50610973611df5565b60405161098091906138aa565b60405180910390f35b60606003805461099890613b41565b80601f01602080910402602001604051908101604052809291908181526020018280546109c490613b41565b8015610a115780601f106109e657610100808354040283529160200191610a11565b820191906000526020600020905b8154815290600101906020018083116109f457829003601f168201915b5050505050905090565b600080610a26611dfb565b9050610a33818585611e03565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610a9d611dfb565b9050610aaa858285611fcc565b610ab5858585612058565b60019150509392505050565b61dead81565b60006012905090565b600080610adb611dfb565b9050610afc818585610aed8589611b0d565b610af79190613ba1565b611e03565b600191505092915050565b610b113382612b1a565b50565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60125481565b600d60019054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610bf9612ce7565b610c036000612d65565b565b610c0d612ce7565b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610c96612ce7565b82600f819055508160108190555080601181905550601154601054600f54610cbe9190613ba1565b610cc89190613ba1565b600e81905550600a600e541115610d14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0b90613c69565b60405180910390fd5b505050565b610d21612ce7565b600d60009054906101000a900460ff1615610d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6890613cd5565b60405180910390fd5b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ddc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e009190613d0a565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e87573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eab9190613d0a565b6040518363ffffffff1660e01b8152600401610ec8929190613d37565b6020604051808303816000875af1158015610ee7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f0b9190613d0a565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610f9830600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611e03565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b37f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b8152600401611035929190613d60565b6020604051808303816000875af1158015611054573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110789190613d9e565b506110a6600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001612e2b565b6110d3600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001610c05565b60006110de30610ba9565b90506000600a6009836110f19190613dcb565b6110fb9190613e54565b90507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7194730846000806111476111e9565b426040518863ffffffff1660e01b815260040161116996959493929190613ec0565b60606040518083038185885af1158015611187573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906111ac9190613f36565b5050506001600d60006101000a81548160ff0219169083151502179055506001600d60016101000a81548160ff0219169083151502179055505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461122290613b41565b80601f016020809104026020016040519081016040528092919081815260200182805461124e90613b41565b801561129b5780601f106112705761010080835404028352916020019161129b565b820191906000526020600020905b81548152906001019060200180831161127e57829003601f168201915b5050505050905090565b6112ad612ce7565b6103e860056112ba610a62565b6112c49190613dcb565b6112ce9190613e54565b821015611310576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130790613ffb565b60405180910390fd5b6103e8600561131d610a62565b6113279190613dcb565b6113319190613e54565b811015611373576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136a9061408d565b60405180910390fd5b80600c8190555081600a819055505050565b61138d612ce7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036113fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f3906140f9565b60405180910390fd5b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fa13e0842056b6007f193cc5de6b4f061118c03f9e43e8ad46768a6fa48211a7360405160405180910390a35050565b6000806114ef611dfb565b905060006114fd8286611b0d565b905083811015611542576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115399061418b565b60405180910390fd5b61154f8286868403611e03565b60019250505092915050565b600080611566611dfb565b9050611573818585612058565b600191505092915050565b611586612ce7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ec906140f9565b60405180910390fd5b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a35050565b600d60009054906101000a900460ff1681565b6116f8612ce7565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516117959190613806565b60405180910390a25050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6117cf612ce7565b8260138190555081601481905550806015819055506015546014546013546117f79190613ba1565b6118019190613ba1565b601281905550601254601981905550600a6012541115611856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184d90613c69565b60405180910390fd5b505050565b600a5481565b611869612ce7565b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016118a491906138d4565b602060405180830381865afa1580156118c1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118e591906141ab565b11611925576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191c90614224565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161196091906138d4565b602060405180830381865afa15801561197d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119a191906141ab565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016119de929190613d60565b6020604051808303816000875af11580156119fd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a219190613d9e565b505050565b6000611a30612ce7565b620186a06001611a3e610a62565b611a489190613dcb565b611a529190613e54565b821015611a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8b906142b6565b60405180910390fd5b6103e86005611aa1610a62565b611aab9190613dcb565b611ab59190613e54565b821115611af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aee90614348565b60405180910390fd5b81600b8190555060019050919050565b600e5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b611ba2612ce7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c08906140f9565b60405180910390fd5b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167ffaf1b77ed79f6e898c44dd8ab36b330c7b2fd39bcaab05ed6362480df870396560405160405180910390a35050565b611d01612ce7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d67906143da565b60405180910390fd5b611d7981612d65565b50565b611d84612ce7565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051611daa9061442b565b60006040518083038185875af1925050503d8060008114611de7576040519150601f19603f3d011682016040523d82523d6000602084013e611dec565b606091505b50508091505050565b600c5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e69906144b2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ee1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed890614544565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611fbf91906138aa565b60405180910390a3505050565b6000611fd88484611b0d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146120525781811015612044576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203b906145b0565b60405180910390fd5b6120518484848403611e03565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036120c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120be90614642565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612136576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212d906146d4565b60405180910390fd5b6000810361214f5761214a83836000612ecc565b612b15565b6121576111e9565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156121c557506121956111e9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156121fe5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612238575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156122515750600660149054906101000a900460ff16155b1561263457600d60009054906101000a900460ff1661234b57601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061230b5750601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61234a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234190614740565b60405180910390fd5b5b601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156123ee5750601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561249557600a54811115612438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242f906147d2565b60405180910390fd5b600c5461244483610ba9565b8261244f9190613ba1565b1115612490576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124879061483e565b60405180910390fd5b612633565b601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156125385750601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561258757600a54811115612582576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612579906148d0565b60405180910390fd5b612632565b601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661263157600c546125e483610ba9565b826125ef9190613ba1565b1115612630576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126279061483e565b60405180910390fd5b5b5b5b5b600061263f30610ba9565b90506000600b5482101590508080156126645750600d60019054906101000a900460ff165b801561267d5750600660149054906101000a900460ff16155b80156126d35750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156127295750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561277f5750601a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156127c3576001600660146101000a81548160ff0219169083151502179055506127a7613142565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff16159050601a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806128795750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561288357600090505b60008115612afc57601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128e657506000601254115b156129b3576129136064612905601254886133e490919063ffffffff16565b6133fa90919063ffffffff16565b9050601254601554826129269190613dcb565b6129309190613e54565b601860008282546129419190613ba1565b92505081905550601254601354826129599190613dcb565b6129639190613e54565b601660008282546129749190613ba1565b925050819055506012546014548261298c9190613dcb565b6129969190613e54565b601760008282546129a79190613ba1565b92505081905550612ad8565b601c60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a0e57506000600e54115b15612ad757612a3b6064612a2d600e54886133e490919063ffffffff16565b6133fa90919063ffffffff16565b9050600e5460115482612a4e9190613dcb565b612a589190613e54565b60186000828254612a699190613ba1565b92505081905550600e54600f5482612a819190613dcb565b612a8b9190613e54565b60166000828254612a9c9190613ba1565b92505081905550600e5460105482612ab49190613dcb565b612abe9190613e54565b60176000828254612acf9190613ba1565b925050819055505b5b6000811115612aed57612aec873083612ecc565b5b8085612af991906148f0565b94505b612b07878787612ecc565b601954601281905550505050505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8090614996565b60405180910390fd5b612b9582600083613410565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612c1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1290614a28565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612cce91906138aa565b60405180910390a3612ce283600084613415565b505050565b612cef611dfb565b73ffffffffffffffffffffffffffffffffffffffff16612d0d6111e9565b73ffffffffffffffffffffffffffffffffffffffff1614612d63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5a90614a94565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612f3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3290614642565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fa1906146d4565b60405180910390fd5b612fb5838383613410565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561303b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161303290614b26565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161312991906138aa565b60405180910390a361313c848484613415565b50505050565b600061314d30610ba9565b905060006017546016546018546131649190613ba1565b61316e9190613ba1565b90506000808314806131805750600082145b1561318d575050506133e2565b6014600b5461319c9190613dcb565b8311156131b5576014600b546131b29190613dcb565b92505b6131be8361341a565b600047905060006131ec846131de601754856133e490919063ffffffff16565b6133fa90919063ffffffff16565b9050600061321785613209601854866133e490919063ffffffff16565b6133fa90919063ffffffff16565b9050600060168190555060006017819055506000601881905550600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16816040516132779061442b565b60006040518083038185875af1925050503d80600081146132b4576040519150601f19603f3d011682016040523d82523d6000602084013e6132b9565b606091505b505080945050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516133059061442b565b60006040518083038185875af1925050503d8060008114613342576040519150601f19603f3d011682016040523d82523d6000602084013e613347565b606091505b505080945050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516133939061442b565b60006040518083038185875af1925050503d80600081146133d0576040519150601f19603f3d011682016040523d82523d6000602084013e6133d5565b606091505b5050809450505050505050505b565b600081836133f29190613dcb565b905092915050565b600081836134089190613e54565b905092915050565b505050565b505050565b6000600267ffffffffffffffff81111561343757613436614b46565b5b6040519080825280602002602001820160405280156134655781602001602082028036833780820191505090505b509050308160008151811061347d5761347c614b75565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613522573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135469190613d0a565b8160018151811061355a57613559614b75565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506135bf307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611e03565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613621959493929190614c62565b600060405180830381600087803b15801561363b57600080fd5b505af115801561364f573d6000803e3d6000fd5b505050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613691578082015181840152602081019050613676565b838111156136a0576000848401525b50505050565b6000601f19601f8301169050919050565b60006136c282613657565b6136cc8185613662565b93506136dc818560208601613673565b6136e5816136a6565b840191505092915050565b6000602082019050818103600083015261370a81846136b7565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061374282613717565b9050919050565b61375281613737565b811461375d57600080fd5b50565b60008135905061376f81613749565b92915050565b6000819050919050565b61378881613775565b811461379357600080fd5b50565b6000813590506137a58161377f565b92915050565b600080604083850312156137c2576137c1613712565b5b60006137d085828601613760565b92505060206137e185828601613796565b9150509250929050565b60008115159050919050565b613800816137eb565b82525050565b600060208201905061381b60008301846137f7565b92915050565b6000819050919050565b600061384661384161383c84613717565b613821565b613717565b9050919050565b60006138588261382b565b9050919050565b600061386a8261384d565b9050919050565b61387a8161385f565b82525050565b60006020820190506138956000830184613871565b92915050565b6138a481613775565b82525050565b60006020820190506138bf600083018461389b565b92915050565b6138ce81613737565b82525050565b60006020820190506138e960008301846138c5565b92915050565b60008060006060848603121561390857613907613712565b5b600061391686828701613760565b935050602061392786828701613760565b925050604061393886828701613796565b9150509250925092565b600060ff82169050919050565b61395881613942565b82525050565b6000602082019050613973600083018461394f565b92915050565b60006020828403121561398f5761398e613712565b5b600061399d84828501613796565b91505092915050565b6000602082840312156139bc576139bb613712565b5b60006139ca84828501613760565b91505092915050565b6139dc816137eb565b81146139e757600080fd5b50565b6000813590506139f9816139d3565b92915050565b60008060408385031215613a1657613a15613712565b5b6000613a2485828601613760565b9250506020613a35858286016139ea565b9150509250929050565b600080600060608486031215613a5857613a57613712565b5b6000613a6686828701613796565b9350506020613a7786828701613796565b9250506040613a8886828701613796565b9150509250925092565b60008060408385031215613aa957613aa8613712565b5b6000613ab785828601613796565b9250506020613ac885828601613796565b9150509250929050565b60008060408385031215613ae957613ae8613712565b5b6000613af785828601613760565b9250506020613b0885828601613760565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613b5957607f821691505b602082108103613b6c57613b6b613b12565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613bac82613775565b9150613bb783613775565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613bec57613beb613b72565b5b828201905092915050565b7f45524332303a204d757374206b656570206665657320617420313025206f722060008201527f6c65737300000000000000000000000000000000000000000000000000000000602082015250565b6000613c53602483613662565b9150613c5e82613bf7565b604082019050919050565b60006020820190508181036000830152613c8281613c46565b9050919050565b7f54726164696e6720616c7265616479206163746976652e000000000000000000600082015250565b6000613cbf601783613662565b9150613cca82613c89565b602082019050919050565b60006020820190508181036000830152613cee81613cb2565b9050919050565b600081519050613d0481613749565b92915050565b600060208284031215613d2057613d1f613712565b5b6000613d2e84828501613cf5565b91505092915050565b6000604082019050613d4c60008301856138c5565b613d5960208301846138c5565b9392505050565b6000604082019050613d7560008301856138c5565b613d82602083018461389b565b9392505050565b600081519050613d98816139d3565b92915050565b600060208284031215613db457613db3613712565b5b6000613dc284828501613d89565b91505092915050565b6000613dd682613775565b9150613de183613775565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e1a57613e19613b72565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613e5f82613775565b9150613e6a83613775565b925082613e7a57613e79613e25565b5b828204905092915050565b6000819050919050565b6000613eaa613ea5613ea084613e85565b613821565b613775565b9050919050565b613eba81613e8f565b82525050565b600060c082019050613ed560008301896138c5565b613ee2602083018861389b565b613eef6040830187613eb1565b613efc6060830186613eb1565b613f0960808301856138c5565b613f1660a083018461389b565b979650505050505050565b600081519050613f308161377f565b92915050565b600080600060608486031215613f4f57613f4e613712565b5b6000613f5d86828701613f21565b9350506020613f6e86828701613f21565b9250506040613f7f86828701613f21565b9150509250925092565b7f45524332303a2043616e6e6f7420736574206d617854786e206c6f776572207460008201527f68616e20302e3525000000000000000000000000000000000000000000000000602082015250565b6000613fe5602883613662565b9150613ff082613f89565b604082019050919050565b6000602082019050818103600083015261401481613fd8565b9050919050565b7f45524332303a2043616e6e6f7420736574206d617857616c6c6574206c6f776560008201527f72207468616e20302e3525000000000000000000000000000000000000000000602082015250565b6000614077602b83613662565b91506140828261401b565b604082019050919050565b600060208201905081810360008301526140a68161406a565b9050919050565b7f45524332303a2041646472657373203000000000000000000000000000000000600082015250565b60006140e3601083613662565b91506140ee826140ad565b602082019050919050565b60006020820190508181036000830152614112816140d6565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614175602583613662565b915061418082614119565b604082019050919050565b600060208201905081810360008301526141a481614168565b9050919050565b6000602082840312156141c1576141c0613712565b5b60006141cf84828501613f21565b91505092915050565b7f4e6f20746f6b656e730000000000000000000000000000000000000000000000600082015250565b600061420e600983613662565b9150614219826141d8565b602082019050919050565b6000602082019050818103600083015261423d81614201565b9050919050565b7f45524332303a205377617020616d6f756e742063616e6e6f74206265206c6f7760008201527f6572207468616e20302e3030312520746f74616c20737570706c792e00000000602082015250565b60006142a0603c83613662565b91506142ab82614244565b604082019050919050565b600060208201905081810360008301526142cf81614293565b9050919050565b7f45524332303a205377617020616d6f756e742063616e6e6f742062652068696760008201527f686572207468616e20302e352520746f74616c20737570706c792e0000000000602082015250565b6000614332603b83613662565b915061433d826142d6565b604082019050919050565b6000602082019050818103600083015261436181614325565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006143c4602683613662565b91506143cf82614368565b604082019050919050565b600060208201905081810360008301526143f3816143b7565b9050919050565b600081905092915050565b50565b60006144156000836143fa565b915061442082614405565b600082019050919050565b600061443682614408565b9150819050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061449c602483613662565b91506144a782614440565b604082019050919050565b600060208201905081810360008301526144cb8161448f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061452e602283613662565b9150614539826144d2565b604082019050919050565b6000602082019050818103600083015261455d81614521565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061459a601d83613662565b91506145a582614564565b602082019050919050565b600060208201905081810360008301526145c98161458d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061462c602583613662565b9150614637826145d0565b604082019050919050565b6000602082019050818103600083015261465b8161461f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006146be602383613662565b91506146c982614662565b604082019050919050565b600060208201905081810360008301526146ed816146b1565b9050919050565b7f45524332303a2054726164696e67206973206e6f74206163746976652e000000600082015250565b600061472a601d83613662565b9150614735826146f4565b602082019050919050565b600060208201905081810360008301526147598161471d565b9050919050565b7f45524332303a20427579207472616e7366657220616d6f756e7420657863656560008201527f647320746865206d61785472616e73616374696f6e416d6f756e742e00000000602082015250565b60006147bc603c83613662565b91506147c782614760565b604082019050919050565b600060208201905081810360008301526147eb816147af565b9050919050565b7f45524332303a204d61782077616c6c6574206578636565646564000000000000600082015250565b6000614828601a83613662565b9150614833826147f2565b602082019050919050565b600060208201905081810360008301526148578161481b565b9050919050565b7f45524332303a2053656c6c207472616e7366657220616d6f756e74206578636560008201527f65647320746865206d61785472616e73616374696f6e416d6f756e742e000000602082015250565b60006148ba603d83613662565b91506148c58261485e565b604082019050919050565b600060208201905081810360008301526148e9816148ad565b9050919050565b60006148fb82613775565b915061490683613775565b92508282101561491957614918613b72565b5b828203905092915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614980602183613662565b915061498b82614924565b604082019050919050565b600060208201905081810360008301526149af81614973565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000614a12602283613662565b9150614a1d826149b6565b604082019050919050565b60006020820190508181036000830152614a4181614a05565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614a7e602083613662565b9150614a8982614a48565b602082019050919050565b60006020820190508181036000830152614aad81614a71565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614b10602683613662565b9150614b1b82614ab4565b604082019050919050565b60006020820190508181036000830152614b3f81614b03565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614bd981613737565b82525050565b6000614beb8383614bd0565b60208301905092915050565b6000602082019050919050565b6000614c0f82614ba4565b614c198185614baf565b9350614c2483614bc0565b8060005b83811015614c55578151614c3c8882614bdf565b9750614c4783614bf7565b925050600181019050614c28565b5085935050505092915050565b600060a082019050614c77600083018861389b565b614c846020830187613eb1565b8181036040830152614c968186614c04565b9050614ca560608301856138c5565b614cb2608083018461389b565b969550505050505056fea26469706673582212203514914d95845d5f9606fcbeaeb2616d39632da6a4bc1d5bd6ae6fa27c0d0b4864736f6c634300080d0033

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.