Token PANCAT

 

Overview ERC-20

Price
$0.00 @ 0.000000 MATIC
Fully Diluted Market Cap
Total Supply:
500,000,000,000,000,000 PANCAT

Holders:
7,353 addresses

Transfers:
-

 
Loading
[ Download CSV Export  ] 
Loading
[ Download CSV Export  ] 
Loading

OVERVIEW

A project to help animals, support innovative community ideas, trade, create and earn on cryptocurrencies using NFT, game, NFT minting, swap projects.


Update? Click here to update the token ICO / general information
# Exchange Pair Price  24H Volume % Volume
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
CoinToken

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-11
*/

//
//
//     ######          This is where the CAT MEGA ARMY society begins.          ####         
//    #########**#                                                          #***######       
//    #####     ###*#                    PANCAT COIN                    #**#   #######       
//    ########     ###*                    #PANCAT                    **#     #ц#######       
//     #######        ##*                                          #*##       ########       
//     #######          ##*             ############             *###         ########       
//     #######            ##*# #**######################****## *###           #######        
//      #######            #######    ####      #####    #########            #######        
//      #######        ############   #####     #####  ##############        #######         
//      #########  ################## ######   ###### ###################   ########         
//       ###### ############################# ############################### ######         
//       #### ################################################################# ###          
//        #########################################################################          
//        ########################################################################           
//       ##########################################################################          
//      ##                                                                        ##         
//     ##              ##      ##                             ##      ##           ##        
//     ##            ##      ##                             ##      ##             ##        
//     ##          ##      ##                             ##      ##               ##        
//     ##        ##      ##                             ##      ##                 ##        
//     ##      ##      ##                             ##      ##                   ##        
//      ##           ##                    ##   ##          ##                    ##         
//       ##        ##                     ##     ##       ##                     ##          
//        ##                            ##        ##                           ##            
//          ##                        ##            ##                       ##              
//             ######################                 ######################                 
//                  **********                               **********                      
//
//
//     ##        === 'PANCAT' Token contract with following features ===           ##        
//     ##             => Twitter     :https://twitter.com/pancatcoin               ##        
//     ##             => Telegram    :https://t.me/pancatcoin                      ##        
//     ##             => Website     :https://pancatcoin.com                       ##        
//     ##             => Reddit      :https://www.reddit.com/r/pancatcoin/         ##        
//     ##             => Contact     :[email protected]                         ##        
       
  pragma solidity ^0.6.12;
// SPDX-License-Identifier: Unlicensed
interface IERC20 { 

    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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



/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
 
library SafeMath {
    /**
     * @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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @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 sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

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

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

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts 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 mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

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

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


/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return _functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

/**
 * @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.
 */
contract Ownable is Context {
    address public _owner;
    address private _previousOwner;
    uint256 private _lockTime;

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


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

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

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

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

    function geUnlockTime() public view returns (uint256) {
        return _lockTime;
    }

    //Locks the contract for owner for the amount of time provided
    function lock(uint256 time) public virtual onlyOwner {
        _previousOwner = _owner;
        _owner = address(0);
        _lockTime = now + time;
        emit OwnershipTransferred(_owner, address(0));
    }
    
    //Unlocks the contract for owner when _lockTime is exceeds
    function unlock() public virtual {
        require(_previousOwner == msg.sender, "You don't have permission to unlock");
        require(now > _lockTime , "Contract is locked until 7 days");
        emit OwnershipTransferred(_owner, _previousOwner);
        _owner = _previousOwner;
    }
}

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


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

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



// pragma solidity >=0.6.2;

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


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

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

    mapping (address => bool) private _isExcludedFromFee;

    mapping (address => bool) private _isExcluded;
    address[] private _excluded;
   
    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal;
    uint256 private _rTotal;
    uint256 private _tFeeTotal;

    string private _name;
    string private _symbol;
    uint256 private _decimals;
    
    uint256 public _taxFee;
    uint256 private _previousTaxFee;
    
    uint256 public _liquidityFee;
    uint256 private _previousLiquidityFee;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    
    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;
    
    uint256 public _maxTxAmount;
    uint256 public numTokensSellToAddToLiquidity;
    
    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );
    
    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }
    
    constructor (string memory _NAME, string memory _SYMBOL, uint256 _DECIMALS, uint256 _supply, uint256 _txFee,uint256 _lpFee,uint256 _MAXAMOUNT,uint256 SELLMAXAMOUNT,address routerAddress,address tokenOwner) public {
        _name = _NAME;
        _symbol = _SYMBOL;
        _decimals = _DECIMALS;
        _tTotal = _supply * 10 ** _decimals;
        _rTotal = (MAX - (MAX % _tTotal));
        _taxFee = _txFee;
        _liquidityFee = _lpFee;
        _previousTaxFee = _txFee;
        _previousLiquidityFee = _lpFee;
        _maxTxAmount = _MAXAMOUNT * 10 ** _decimals;
        numTokensSellToAddToLiquidity = SELLMAXAMOUNT * 10 ** _decimals;
        
        
        _rOwned[tokenOwner] = _rTotal;
        
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(routerAddress);
         // Create a uniswap pair for this new token
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        // set the rest of the contract variables
        uniswapV2Router = _uniswapV2Router;
        
        //exclude owner and this contract from fee
        _isExcludedFromFee[tokenOwner] = true;
        _isExcludedFromFee[address(this)] = true;
    
        _owner = tokenOwner;
        emit Transfer(address(0), tokenOwner, _tTotal);
    }


    function name() public view returns (string memory) {
        return _name;
    }

    function symbol() public view returns (string memory) {
        return _symbol;
    }

    function decimals() public view returns (uint256) {
        return _decimals;
    }

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

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

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender) public view override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

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

    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    function isExcludedFromReward(address account) public view returns (bool) {
        return _isExcluded[account];
    }

    function totalFees() public view returns (uint256) {
        return _tFeeTotal;
    }

    function deliver(uint256 tAmount) public {
        address sender = _msgSender();
        require(!_isExcluded[sender], "Excluded addresses cannot call this function");
        (uint256 rAmount,,,,,) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rTotal = _rTotal.sub(rAmount);
        _tFeeTotal = _tFeeTotal.add(tAmount);
    }

    function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) {
        require(tAmount <= _tTotal, "Amount must be less than supply");
        if (!deductTransferFee) {
            (uint256 rAmount,,,,,) = _getValues(tAmount);
            return rAmount;
        } else {
            (,uint256 rTransferAmount,,,,) = _getValues(tAmount);
            return rTransferAmount;
        }
    }

    function tokenFromReflection(uint256 rAmount) public view returns(uint256) {
        require(rAmount <= _rTotal, "Amount must be less than total reflections");
        uint256 currentRate =  _getRate();
        return rAmount.div(currentRate);
    }

    function excludeFromReward(address account) public onlyOwner() {
        // require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not exclude Uniswap router.');
        require(!_isExcluded[account], "Account is already excluded");
        if(_rOwned[account] > 0) {
            _tOwned[account] = tokenFromReflection(_rOwned[account]);
        }
        _isExcluded[account] = true;
        _excluded.push(account);
    }

    function includeInReward(address account) external onlyOwner() {
        require(_isExcluded[account], "Account is already excluded");
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_excluded[i] == account) {
                _excluded[i] = _excluded[_excluded.length - 1];
                _tOwned[account] = 0;
                _isExcluded[account] = false;
                _excluded.pop();
                break;
            }
        }
    }
        function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);        
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }
    
    function excludeFromFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = true;
    }
    
    function includeInFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = false;
    }
    
    function setTaxFeePercent(uint256 taxFee) external onlyOwner() {
        _taxFee = taxFee;
    }
    
    function setLiquidityFeePercent(uint256 liquidityFee) external onlyOwner() {
        _liquidityFee = liquidityFee;
    }
    
    function setNumTokensSellToAddToLiquidity(uint256 swapNumber) public onlyOwner {
        numTokensSellToAddToLiquidity = swapNumber * 10 ** _decimals;
    }
   
    function setMaxTxPercent(uint256 maxTxPercent) public onlyOwner {
        _maxTxAmount = maxTxPercent  * 10 ** _decimals;
    }

    function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }
    
     //to recieve ETH from uniswapV2Router when swaping
    receive() external payable {}

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

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

    function _getTValues(uint256 tAmount) private view returns (uint256, uint256, uint256) {
        uint256 tFee = calculateTaxFee(tAmount);
        uint256 tLiquidity = calculateLiquidityFee(tAmount);
        uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity);
        return (tTransferAmount, tFee, tLiquidity);
    }

    function _getRValues(uint256 tAmount, uint256 tFee, uint256 tLiquidity, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).sub(rLiquidity);
        return (rAmount, rTransferAmount, rFee);
    }

    function _getRate() private view returns(uint256) {
        (uint256 rSupply, uint256 tSupply) = _getCurrentSupply();
        return rSupply.div(tSupply);
    }

    function _getCurrentSupply() private view returns(uint256, uint256) {
        uint256 rSupply = _rTotal;
        uint256 tSupply = _tTotal;      
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal);
            rSupply = rSupply.sub(_rOwned[_excluded[i]]);
            tSupply = tSupply.sub(_tOwned[_excluded[i]]);
        }
        if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
        return (rSupply, tSupply);
    }
    
    function _takeLiquidity(uint256 tLiquidity) private {
        uint256 currentRate =  _getRate();
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity);
        if(_isExcluded[address(this)])
            _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity);
    }
    
    
    function claimTokens() public onlyOwner {
            payable(_owner).transfer(address(this).balance);
    }
    
    function calculateTaxFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_taxFee).div(
            10**2
        );
    }

    function calculateLiquidityFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_liquidityFee).div(
            10**2
        );
    }
    
    function removeAllFee() private {
        if(_taxFee == 0 && _liquidityFee == 0) return;
        
        _previousTaxFee = _taxFee;
        _previousLiquidityFee = _liquidityFee;
        
        _taxFee = 0;
        _liquidityFee = 0;
    }
    
    function restoreAllFee() private {
        _taxFee = _previousTaxFee;
        _liquidityFee = _previousLiquidityFee;
    }
    
    function isExcludedFromFee(address account) public view returns(bool) {
        return _isExcludedFromFee[account];
    }

    function _approve(address owner, address spender, uint256 amount) private {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        if(from != owner() && to != owner())
            require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");

        // is the token balance of this contract address over the min number of
        // tokens that we need to initiate a swap + liquidity lock?
        // also, don't get caught in a circular liquidity event.
        // also, don't swap & liquify if sender is uniswap pair.
        uint256 contractTokenBalance = balanceOf(address(this));
        
        if(contractTokenBalance >= _maxTxAmount)
        {
            contractTokenBalance = _maxTxAmount;
        }
        
        bool overMinTokenBalance = contractTokenBalance >= numTokensSellToAddToLiquidity;
        if (
            overMinTokenBalance &&
            !inSwapAndLiquify &&
            from != uniswapV2Pair &&
            swapAndLiquifyEnabled
        ) {
            contractTokenBalance = numTokensSellToAddToLiquidity;
            //add liquidity
            swapAndLiquify(contractTokenBalance);
        }
        
        //indicates if fee should be deducted from transfer
        bool takeFee = true;
        
        //if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFee[from] || _isExcludedFromFee[to]){
            takeFee = false;
        }
        
        //transfer amount, it will take tax, burn, liquidity fee
        _tokenTransfer(from,to,amount,takeFee);
    }

    function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        // split the contract balance into halves
        uint256 half = contractTokenBalance.div(2);
        uint256 otherHalf = contractTokenBalance.sub(half);

        // capture the contract's current ETH balance.
        // this is so that we can capture exactly the amount of ETH that the
        // swap creates, and not make the liquidity event include any ETH that
        // has been manually sent to the contract
        uint256 initialBalance = address(this).balance;

        // swap tokens for ETH
        swapTokensForEth(half); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered

        // how much ETH did we just swap into?
        uint256 newBalance = address(this).balance.sub(initialBalance);

        // add liquidity to uniswap
        addLiquidity(otherHalf, newBalance);
        
        emit SwapAndLiquify(half, newBalance, otherHalf);
    }

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

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

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

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

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

    //this method is responsible for taking all fee, if takeFee is true
    function _tokenTransfer(address sender, address recipient, uint256 amount,bool takeFee) private {
        if(!takeFee)
            removeAllFee();
        
        if (_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferFromExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && _isExcluded[recipient]) {
            _transferToExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferStandard(sender, recipient, amount);
        } else if (_isExcluded[sender] && _isExcluded[recipient]) {
            _transferBothExcluded(sender, recipient, amount);
        } else {
            _transferStandard(sender, recipient, amount);
        }
        
        if(!takeFee)
            restoreAllFee();
    }

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

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

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


    

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_NAME","type":"string"},{"internalType":"string","name":"_SYMBOL","type":"string"},{"internalType":"uint256","name":"_DECIMALS","type":"uint256"},{"internalType":"uint256","name":"_supply","type":"uint256"},{"internalType":"uint256","name":"_txFee","type":"uint256"},{"internalType":"uint256","name":"_lpFee","type":"uint256"},{"internalType":"uint256","name":"_MAXAMOUNT","type":"uint256"},{"internalType":"uint256","name":"SELLMAXAMOUNT","type":"uint256"},{"internalType":"address","name":"routerAddress","type":"address"},{"internalType":"address","name":"tokenOwner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","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":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numTokensSellToAddToLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"swapNumber","type":"uint256"}],"name":"setNumTokensSellToAddToLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"setTaxFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001601360016101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50604051620058b1380380620058b183398181016040526101408110156200005357600080fd5b81019080805160405193929190846401000000008211156200007457600080fd5b838201915060208201858111156200008b57600080fd5b8251866001820283011164010000000082111715620000a957600080fd5b8083526020830192505050908051906020019080838360005b83811015620000df578082015181840152602081019050620000c2565b50505050905090810190601f1680156200010d5780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200013157600080fd5b838201915060208201858111156200014857600080fd5b82518660018202830111640100000000821117156200016657600080fd5b8083526020830192505050908051906020019080838360005b838110156200019c5780820151818401526020810190506200017f565b50505050905090810190601f168015620001ca5780820380516001836020036101000a031916815260200191505b50604052602001805190602001909291908051906020019092919080519060200190929190805190602001909291908051906020019092919080519060200190929190805190602001909291908051906020019092919050505089600c90805190602001906200023c929190620006a8565b5088600d908051906020019062000255929190620006a8565b5087600e81905550600e54600a0a8702600981905550600954600019816200027957fe5b0660001903600a8190555085600f81905550846011819055508560108190555084601281905550600e54600a0a8402601481905550600e54600a0a8302601581905550600a54600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060008290508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200034e57600080fd5b505afa15801562000363573d6000803e3d6000fd5b505050506040513d60208110156200037a57600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620003ee57600080fd5b505afa15801562000403573d6000803e3d6000fd5b505050506040513d60208110156200041a57600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b1580156200049557600080fd5b505af1158015620004aa573d6000803e3d6000fd5b505050506040513d6020811015620004c157600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b815250506001600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6009546040518082815260200191505060405180910390a350505050505050505050506200074e565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620006eb57805160ff19168380011785556200071c565b828001600101855582156200071c579182015b828111156200071b578251825591602001919060010190620006fe565b5b5090506200072b91906200072f565b5090565b5b808211156200074a57600081600090555060010162000730565b5090565b60805160601c60a05160601c61511b6200079660003980611a41528061328c525080610fcd5280613ef25280613fde528061400552806141105280614137525061511b6000f3fe60806040526004361061024a5760003560e01c80636bc87c3a11610139578063a9059cbb116100b6578063d543dbeb1161007a578063d543dbeb14610c57578063dd46706414610c92578063dd62ed3e14610ccd578063ea2f0b3714610d52578063f0f165af14610da3578063f2fde38b14610dde57610251565b8063a9059cbb14610b12578063b2bdfa7b14610b83578063b6c5232414610bc4578063c49b9a8014610bef578063d12a768814610c2c57610251565b80638da5cb5b116100fd5780638da5cb5b1461097e5780638ee88c53146109bf57806395d89b41146109fa578063a457c2d714610a8a578063a69df4b514610afb57610251565b80636bc87c3a1461084557806370a0823114610870578063715018a6146108d55780637d1db4a5146108ec57806388f820201461091757610251565b806339509351116101c757806348c54b9d1161018b57806348c54b9d1461070857806349bd5a5e1461071f5780634a74bb021461076057806352390c021461078d5780635342acb4146107de57610251565b806339509351146105855780633b124fe7146105f65780633bd5d17314610621578063437823ec1461065c5780634549b039146106ad57610251565b806318160ddd1161020e57806318160ddd146103fe57806323b872dd146104295780632d838119146104ba578063313ce567146105095780633685d4191461053457610251565b8063061c82d01461025657806306fdde0314610291578063095ea7b31461032157806313114a9d146103925780631694505e146103bd57610251565b3661025157005b600080fd5b34801561026257600080fd5b5061028f6004803603602081101561027957600080fd5b8101908080359060200190929190505050610e2f565b005b34801561029d57600080fd5b506102a6610f01565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102e65780820151818401526020810190506102cb565b50505050905090810190601f1680156103135780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561032d57600080fd5b5061037a6004803603604081101561034457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fa3565b60405180821515815260200191505060405180910390f35b34801561039e57600080fd5b506103a7610fc1565b6040518082815260200191505060405180910390f35b3480156103c957600080fd5b506103d2610fcb565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561040a57600080fd5b50610413610fef565b6040518082815260200191505060405180910390f35b34801561043557600080fd5b506104a26004803603606081101561044c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ff9565b60405180821515815260200191505060405180910390f35b3480156104c657600080fd5b506104f3600480360360208110156104dd57600080fd5b81019080803590602001909291905050506110d2565b6040518082815260200191505060405180910390f35b34801561051557600080fd5b5061051e611156565b6040518082815260200191505060405180910390f35b34801561054057600080fd5b506105836004803603602081101561055757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611160565b005b34801561059157600080fd5b506105de600480360360408110156105a857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506114ea565b60405180821515815260200191505060405180910390f35b34801561060257600080fd5b5061060b61159d565b6040518082815260200191505060405180910390f35b34801561062d57600080fd5b5061065a6004803603602081101561064457600080fd5b81019080803590602001909291905050506115a3565b005b34801561066857600080fd5b506106ab6004803603602081101561067f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611734565b005b3480156106b957600080fd5b506106f2600480360360408110156106d057600080fd5b8101908080359060200190929190803515159060200190929190505050611857565b6040518082815260200191505060405180910390f35b34801561071457600080fd5b5061071d61190e565b005b34801561072b57600080fd5b50610734611a3f565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561076c57600080fd5b50610775611a63565b60405180821515815260200191505060405180910390f35b34801561079957600080fd5b506107dc600480360360208110156107b057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a76565b005b3480156107ea57600080fd5b5061082d6004803603602081101561080157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d90565b60405180821515815260200191505060405180910390f35b34801561085157600080fd5b5061085a611de6565b6040518082815260200191505060405180910390f35b34801561087c57600080fd5b506108bf6004803603602081101561089357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611dec565b6040518082815260200191505060405180910390f35b3480156108e157600080fd5b506108ea611ed7565b005b3480156108f857600080fd5b5061090161205d565b6040518082815260200191505060405180910390f35b34801561092357600080fd5b506109666004803603602081101561093a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612063565b60405180821515815260200191505060405180910390f35b34801561098a57600080fd5b506109936120b9565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156109cb57600080fd5b506109f8600480360360208110156109e257600080fd5b81019080803590602001909291905050506120e2565b005b348015610a0657600080fd5b50610a0f6121b4565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a4f578082015181840152602081019050610a34565b50505050905090810190601f168015610a7c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610a9657600080fd5b50610ae360048036036040811015610aad57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612256565b60405180821515815260200191505060405180910390f35b348015610b0757600080fd5b50610b10612323565b005b348015610b1e57600080fd5b50610b6b60048036036040811015610b3557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612540565b60405180821515815260200191505060405180910390f35b348015610b8f57600080fd5b50610b9861255e565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610bd057600080fd5b50610bd9612582565b6040518082815260200191505060405180910390f35b348015610bfb57600080fd5b50610c2a60048036036020811015610c1257600080fd5b8101908080351515906020019092919050505061258c565b005b348015610c3857600080fd5b50610c416126aa565b6040518082815260200191505060405180910390f35b348015610c6357600080fd5b50610c9060048036036020811015610c7a57600080fd5b81019080803590602001909291905050506126b0565b005b348015610c9e57600080fd5b50610ccb60048036036020811015610cb557600080fd5b8101908080359060200190929190505050612789565b005b348015610cd957600080fd5b50610d3c60048036036040811015610cf057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061297a565b6040518082815260200191505060405180910390f35b348015610d5e57600080fd5b50610da160048036036020811015610d7557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612a01565b005b348015610daf57600080fd5b50610ddc60048036036020811015610dc657600080fd5b8101908080359060200190929190505050612b24565b005b348015610dea57600080fd5b50610e2d60048036036020811015610e0157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612bfd565b005b610e37612e08565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ef7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600f8190555050565b6060600c8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610f995780601f10610f6e57610100808354040283529160200191610f99565b820191906000526020600020905b815481529060010190602001808311610f7c57829003601f168201915b5050505050905090565b6000610fb7610fb0612e08565b8484612e10565b6001905092915050565b6000600b54905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600954905090565b6000611006848484613007565b6110c784611012612e08565b6110c285604051806060016040528060288152602001614fd860289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611078612e08565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133cc9092919063ffffffff16565b612e10565b600190509392505050565b6000600a5482111561112f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614f1d602a913960400191505060405180910390fd5b600061113961348c565b905061114e81846134b790919063ffffffff16565b915050919050565b6000600e54905090565b611168612e08565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611228576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166112e7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b6008805490508110156114e6578173ffffffffffffffffffffffffffffffffffffffff166008828154811061131b57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156114d95760086001600880549050038154811061137757fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600882815481106113af57fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600880548061149f57fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590556114e6565b80806001019150506112ea565b5050565b60006115936114f7612e08565b8461158e8560056000611508612e08565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461350190919063ffffffff16565b612e10565b6001905092915050565b600f5481565b60006115ad612e08565b9050600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611652576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615072602c913960400191505060405180910390fd5b600061165d83613589565b505050505090506116b681600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135e590919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061170e81600a546135e590919063ffffffff16565b600a8190555061172983600b5461350190919063ffffffff16565b600b81905550505050565b61173c612e08565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60006009548311156118d1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b816118f15760006118e184613589565b5050505050905080915050611908565b60006118fc84613589565b50505050915050809150505b92915050565b611916612e08565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146119d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611a3c573d6000803e3d6000fd5b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b601360019054906101000a900460ff1681565b611a7e612e08565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b3e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611bfe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611cd257611c8e600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110d2565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60115481565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611e8757600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050611ed2565b611ecf600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110d2565b90505b919050565b611edf612e08565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f9f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60145481565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6120ea612e08565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146121aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060118190555050565b6060600d8054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561224c5780601f106122215761010080835404028352916020019161224c565b820191906000526020600020905b81548152906001019060200180831161222f57829003601f168201915b5050505050905090565b6000612319612263612e08565b84612314856040518060600160405280602581526020016150c1602591396005600061228d612e08565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133cc9092919063ffffffff16565b612e10565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146123c9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061509e6023913960400191505060405180910390fd5b6002544211612440576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f436f6e7472616374206973206c6f636b656420756e74696c203720646179730081525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600061255461254d612e08565b8484613007565b6001905092915050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b612594612e08565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612654576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601360016101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1598160405180821515815260200191505060405180910390a150565b60155481565b6126b8612e08565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612778576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600e54600a0a810260148190555050565b612791612e08565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612851576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550804201600281905550600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b612a09612e08565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612ac9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b612b2c612e08565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612bec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600e54600a0a810260158190555050565b612c05612e08565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612cc5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180614f476026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612e96576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061504e6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614f6d6022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561308d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806150296025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613113576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180614efa6023913960400191505060405180910390fd5b6000811161316c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806150006029913960400191505060405180910390fd5b6131746120b9565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156131e257506131b26120b9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561324357601454811115613242576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180614f8f6028913960400191505060405180910390fd5b5b600061324e30611dec565b9050601454811061325f5760145490505b600060155482101590508080156132835750601360009054906101000a900460ff16155b80156132db57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156132f35750601360019054906101000a900460ff165b156133075760155491506133068261362f565b5b600060019050600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806133ae5750600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156133b857600090505b6133c486868684613711565b505050505050565b6000838311158290613479576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561343e578082015181840152602081019050613423565b50505050905090810190601f16801561346b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000613499613a22565b915091506134b081836134b790919063ffffffff16565b9250505090565b60006134f983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613cb3565b905092915050565b60008082840190508381101561357f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60008060008060008060008060006135a08a613d79565b92509250925060008060006135be8d86866135b961348c565b613dd3565b9250925092508282828888889b509b509b509b509b509b5050505050505091939550919395565b600061362783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506133cc565b905092915050565b6001601360006101000a81548160ff02191690831515021790555060006136606002836134b790919063ffffffff16565b9050600061367782846135e590919063ffffffff16565b9050600047905061368783613e5c565b600061369c82476135e590919063ffffffff16565b90506136a8838261410a565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56184828560405180848152602001838152602001828152602001935050505060405180910390a1505050506000601360006101000a81548160ff02191690831515021790555050565b8061371f5761371e61425b565b5b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156137c25750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156137d7576137d284848461429e565b613a0e565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561387a5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561388f5761388a8484846144fe565b613a0d565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156139335750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156139485761394384848461475e565b613a0c565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156139ea5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156139ff576139fa848484614929565b613a0b565b613a0a84848461475e565b5b5b5b5b80613a1c57613a1b614c1e565b5b50505050565b6000806000600a5490506000600954905060005b600880549050811015613c7657826003600060088481548110613a5557fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180613b3c5750816004600060088481548110613ad457fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b15613b5357600a5460095494509450505050613caf565b613bdc6003600060088481548110613b6757fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054846135e590919063ffffffff16565b9250613c676004600060088481548110613bf257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836135e590919063ffffffff16565b91508080600101915050613a36565b50613c8e600954600a546134b790919063ffffffff16565b821015613ca657600a54600954935093505050613caf565b81819350935050505b9091565b60008083118290613d5f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613d24578082015181840152602081019050613d09565b50505050905090810190601f168015613d515780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581613d6b57fe5b049050809150509392505050565b600080600080613d8885614c32565b90506000613d9586614c63565b90506000613dbe82613db0858a6135e590919063ffffffff16565b6135e590919063ffffffff16565b90508083839550955095505050509193909250565b600080600080613dec8589614c9490919063ffffffff16565b90506000613e038689614c9490919063ffffffff16565b90506000613e1a8789614c9490919063ffffffff16565b90506000613e4382613e3585876135e590919063ffffffff16565b6135e590919063ffffffff16565b9050838184965096509650505050509450945094915050565b6060600267ffffffffffffffff81118015613e7657600080fd5b50604051908082528060200260200182016040528015613ea55781602001602082028036833780820191505090505b5090503081600081518110613eb657fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613f5657600080fd5b505afa158015613f6a573d6000803e3d6000fd5b505050506040513d6020811015613f8057600080fd5b810190808051906020019092919050505081600181518110613f9e57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614003307f000000000000000000000000000000000000000000000000000000000000000084612e10565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b838110156140c55780820151818401526020810190506140aa565b505050509050019650505050505050600060405180830381600087803b1580156140ee57600080fd5b505af1158015614102573d6000803e3d6000fd5b505050505050565b614135307f000000000000000000000000000000000000000000000000000000000000000084612e10565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061417f6120b9565b426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b15801561420457600080fd5b505af1158015614218573d6000803e3d6000fd5b50505050506040513d606081101561422f57600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b6000600f5414801561426f57506000601154145b156142795761429c565b600f546010819055506011546012819055506000600f8190555060006011819055505b565b6000806000806000806142b087613589565b95509550955095509550955061430e87600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135e590919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506143a386600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135e590919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061443885600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461350190919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061448481614d1a565b61448e8483614ebf565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b60008060008060008061451087613589565b95509550955095509550955061456e86600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135e590919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061460383600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461350190919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061469885600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461350190919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506146e481614d1a565b6146ee8483614ebf565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b60008060008060008061477087613589565b9550955095509550955095506147ce86600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135e590919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061486385600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461350190919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506148af81614d1a565b6148b98483614ebf565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b60008060008060008061493b87613589565b95509550955095509550955061499987600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135e590919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614a2e86600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135e590919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614ac383600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461350190919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614b5885600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461350190919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614ba481614d1a565b614bae8483614ebf565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b601054600f81905550601254601181905550565b6000614c5c6064614c4e600f5485614c9490919063ffffffff16565b6134b790919063ffffffff16565b9050919050565b6000614c8d6064614c7f60115485614c9490919063ffffffff16565b6134b790919063ffffffff16565b9050919050565b600080831415614ca75760009050614d14565b6000828402905082848281614cb857fe5b0414614d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180614fb76021913960400191505060405180910390fd5b809150505b92915050565b6000614d2461348c565b90506000614d3b8284614c9490919063ffffffff16565b9050614d8f81600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461350190919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615614eba57614e7683600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461350190919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b614ed482600a546135e590919063ffffffff16565b600a81905550614eef81600b5461350190919063ffffffff16565b600b81905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122044d8db319790ee0244892302c6d9f43e34a17b389f2da4d77006f7936e6bb72c64736f6c634300060c003300000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000000006f05b59d3b200000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000003782dace9d9000000000000000000000000000000000000000000000000000003782dace9d90000000000000000000000000000a5e0829caced8ffdd4de3c43696c57f7d7a678ff000000000000000000000000b183023a548407d3793fa9a214cdded29f5c6ebd000000000000000000000000000000000000000000000000000000000000000650414e4341540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000650414e4341540000000000000000000000000000000000000000000000000000

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

00000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000000006f05b59d3b200000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000003782dace9d9000000000000000000000000000000000000000000000000000003782dace9d90000000000000000000000000000a5e0829caced8ffdd4de3c43696c57f7d7a678ff000000000000000000000000b183023a548407d3793fa9a214cdded29f5c6ebd000000000000000000000000000000000000000000000000000000000000000650414e4341540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000650414e4341540000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _NAME (string): PANCAT
Arg [1] : _SYMBOL (string): PANCAT
Arg [2] : _DECIMALS (uint256): 9
Arg [3] : _supply (uint256): 500000000000000000
Arg [4] : _txFee (uint256): 4
Arg [5] : _lpFee (uint256): 2
Arg [6] : _MAXAMOUNT (uint256): 250000000000000000
Arg [7] : SELLMAXAMOUNT (uint256): 250000000000000000
Arg [8] : routerAddress (address): 0xa5e0829caced8ffdd4de3c43696c57f7d7a678ff
Arg [9] : tokenOwner (address): 0xb183023a548407d3793fa9a214cdded29f5c6ebd

-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [3] : 00000000000000000000000000000000000000000000000006f05b59d3b20000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [6] : 00000000000000000000000000000000000000000000000003782dace9d90000
Arg [7] : 00000000000000000000000000000000000000000000000003782dace9d90000
Arg [8] : 000000000000000000000000a5e0829caced8ffdd4de3c43696c57f7d7a678ff
Arg [9] : 000000000000000000000000b183023a548407d3793fa9a214cdded29f5c6ebd
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [11] : 50414e4341540000000000000000000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [13] : 50414e4341540000000000000000000000000000000000000000000000000000


Deployed ByteCode Sourcemap

28509:19107:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36446:98;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;31383:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32297:161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;33418:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29354:51;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31662:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32466:313;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;34342:253;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31569:85;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;35058:479;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32787:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29200:22;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33513:377;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;36201:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;33898:436;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;39747:110;;;;;;;;;;;;;:::i;:::-;;29412:38;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29491:40;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;34603:447;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;40608:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29273:28;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31765:198;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19104:148;;;;;;;;;;;;;:::i;:::-;;29544:27;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33290:120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;18461:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;36556:122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;31474:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33013:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;20114:293;;;;;;;;;;;;;:::i;:::-;;31971:167;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;18195:21;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;19659:89;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;36996:171;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29578:44;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;36859:129;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;19824:214;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32146:143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;36324:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;36690:158;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;19407:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;36446:98;18683:12;:10;:12::i;:::-;18673:22;;:6;;;;;;;;;;:22;;;18665:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36530:6:::1;36520:7;:16;;;;36446:98:::0;:::o;31383:83::-;31420:13;31453:5;31446:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31383:83;:::o;32297:161::-;32372:4;32389:39;32398:12;:10;:12::i;:::-;32412:7;32421:6;32389:8;:39::i;:::-;32446:4;32439:11;;32297:161;;;;:::o;33418:87::-;33460:7;33487:10;;33480:17;;33418:87;:::o;29354:51::-;;;:::o;31662:95::-;31715:7;31742;;31735:14;;31662:95;:::o;32466:313::-;32564:4;32581:36;32591:6;32599:9;32610:6;32581:9;:36::i;:::-;32628:121;32637:6;32645:12;:10;:12::i;:::-;32659:89;32697:6;32659:89;;;;;;;;;;;;;;;;;:11;:19;32671:6;32659:19;;;;;;;;;;;;;;;:33;32679:12;:10;:12::i;:::-;32659:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;32628:8;:121::i;:::-;32767:4;32760:11;;32466:313;;;;;:::o;34342:253::-;34408:7;34447;;34436;:18;;34428:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34512:19;34535:10;:8;:10::i;:::-;34512:33;;34563:24;34575:11;34563:7;:11;;:24;;;;:::i;:::-;34556:31;;;34342:253;;;:::o;31569:85::-;31610:7;31637:9;;31630:16;;31569:85;:::o;35058:479::-;18683:12;:10;:12::i;:::-;18673:22;;:6;;;;;;;;;;:22;;;18665:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35140:11:::1;:20;35152:7;35140:20;;;;;;;;;;;;;;;;;;;;;;;;;35132:60;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;35208:9;35203:327;35227:9;:16;;;;35223:1;:20;35203:327;;;35285:7;35269:23;;:9;35279:1;35269:12;;;;;;;;;;;;;;;;;;;;;;;;;:23;;;35265:254;;;35328:9;35357:1;35338:9;:16;;;;:20;35328:31;;;;;;;;;;;;;;;;;;;;;;;;;35313:9;35323:1;35313:12;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35397:1;35378:7;:16;35386:7;35378:16;;;;;;;;;;;;;;;:20;;;;35440:5;35417:11;:20;35429:7;35417:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;35464:9;:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35498:5;;35265:254;35245:3;;;;;;;35203:327;;;;35058:479:::0;:::o;32787:218::-;32875:4;32892:83;32901:12;:10;:12::i;:::-;32915:7;32924:50;32963:10;32924:11;:25;32936:12;:10;:12::i;:::-;32924:25;;;;;;;;;;;;;;;:34;32950:7;32924:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;32892:8;:83::i;:::-;32993:4;32986:11;;32787:218;;;;:::o;29200:22::-;;;;:::o;33513:377::-;33565:14;33582:12;:10;:12::i;:::-;33565:29;;33614:11;:19;33626:6;33614:19;;;;;;;;;;;;;;;;;;;;;;;;;33613:20;33605:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33694:15;33718:19;33729:7;33718:10;:19::i;:::-;33693:44;;;;;;;33766:28;33786:7;33766;:15;33774:6;33766:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;33748:7;:15;33756:6;33748:15;;;;;;;;;;;;;;;:46;;;;33815:20;33827:7;33815;;:11;;:20;;;;:::i;:::-;33805:7;:30;;;;33859:23;33874:7;33859:10;;:14;;:23;;;;:::i;:::-;33846:10;:36;;;;33513:377;;;:::o;36201:111::-;18683:12;:10;:12::i;:::-;18673:22;;:6;;;;;;;;;;:22;;;18665:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36300:4:::1;36270:18;:27;36289:7;36270:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;36201:111:::0;:::o;33898:436::-;33988:7;34027;;34016;:18;;34008:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34086:17;34081:246;;34121:15;34145:19;34156:7;34145:10;:19::i;:::-;34120:44;;;;;;;34186:7;34179:14;;;;;34081:246;34228:23;34259:19;34270:7;34259:10;:19::i;:::-;34226:52;;;;;;;34300:15;34293:22;;;33898:436;;;;;:::o;39747:110::-;18683:12;:10;:12::i;:::-;18673:22;;:6;;;;;;;;;;:22;;;18665:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39810:6:::1;::::0;::::1;;;;;;;;39802:24;;:47;39827:21;39802:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;39747:110::o:0;29412:38::-;;;:::o;29491:40::-;;;;;;;;;;;;;:::o;34603:447::-;18683:12;:10;:12::i;:::-;18673:22;;:6;;;;;;;;;;:22;;;18665:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34800:11:::1;:20;34812:7;34800:20;;;;;;;;;;;;;;;;;;;;;;;;;34799:21;34791:61;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;34885:1;34866:7;:16;34874:7;34866:16;;;;;;;;;;;;;;;;:20;34863:108;;;34922:37;34942:7;:16;34950:7;34942:16;;;;;;;;;;;;;;;;34922:19;:37::i;:::-;34903:7;:16;34911:7;34903:16;;;;;;;;;;;;;;;:56;;;;34863:108;35004:4;34981:11;:20;34993:7;34981:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;35019:9;35034:7;35019:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34603:447:::0;:::o;40608:123::-;40672:4;40696:18;:27;40715:7;40696:27;;;;;;;;;;;;;;;;;;;;;;;;;40689:34;;40608:123;;;:::o;29273:28::-;;;;:::o;31765:198::-;31831:7;31855:11;:20;31867:7;31855:20;;;;;;;;;;;;;;;;;;;;;;;;;31851:49;;;31884:7;:16;31892:7;31884:16;;;;;;;;;;;;;;;;31877:23;;;;31851:49;31918:37;31938:7;:16;31946:7;31938:16;;;;;;;;;;;;;;;;31918:19;:37::i;:::-;31911:44;;31765:198;;;;:::o;19104:148::-;18683:12;:10;:12::i;:::-;18673:22;;:6;;;;;;;;;;:22;;;18665:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19211:1:::1;19174:40;;19195:6;::::0;::::1;;;;;;;;19174:40;;;;;;;;;;;;19242:1;19225:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;19104:148::o:0;29544:27::-;;;;:::o;33290:120::-;33358:4;33382:11;:20;33394:7;33382:20;;;;;;;;;;;;;;;;;;;;;;;;;33375:27;;33290:120;;;:::o;18461:79::-;18499:7;18526:6;;;;;;;;;;;18519:13;;18461:79;:::o;36556:122::-;18683:12;:10;:12::i;:::-;18673:22;;:6;;;;;;;;;;:22;;;18665:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36658:12:::1;36642:13;:28;;;;36556:122:::0;:::o;31474:87::-;31513:13;31546:7;31539:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31474:87;:::o;33013:269::-;33106:4;33123:129;33132:12;:10;:12::i;:::-;33146:7;33155:96;33194:15;33155:96;;;;;;;;;;;;;;;;;:11;:25;33167:12;:10;:12::i;:::-;33155:25;;;;;;;;;;;;;;;:34;33181:7;33155:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;33123:8;:129::i;:::-;33270:4;33263:11;;33013:269;;;;:::o;20114:293::-;20184:10;20166:28;;:14;;;;;;;;;;;:28;;;20158:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20259:9;;20253:3;:15;20245:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20350:14;;;;;;;;;;;20321:44;;20342:6;;;;;;;;;;20321:44;;;;;;;;;;;;20385:14;;;;;;;;;;;20376:6;;:23;;;;;;;;;;;;;;;;;;20114:293::o;31971:167::-;32049:4;32066:42;32076:12;:10;:12::i;:::-;32090:9;32101:6;32066:9;:42::i;:::-;32126:4;32119:11;;31971:167;;;;:::o;18195:21::-;;;;;;;;;;;;:::o;19659:89::-;19704:7;19731:9;;19724:16;;19659:89;:::o;36996:171::-;18683:12;:10;:12::i;:::-;18673:22;;:6;;;;;;;;;;:22;;;18665:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37097:8:::1;37073:21;;:32;;;;;;;;;;;;;;;;;;37121:38;37150:8;37121:38;;;;;;;;;;;;;;;;;;;;36996:171:::0;:::o;29578:44::-;;;;:::o;36859:129::-;18683:12;:10;:12::i;:::-;18673:22;;:6;;;;;;;;;;:22;;;18665:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36971:9:::1;;36965:2;:15;36949:12;:31;36934:12;:46;;;;36859:129:::0;:::o;19824:214::-;18683:12;:10;:12::i;:::-;18673:22;;:6;;;;;;;;;;:22;;;18665:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19905:6:::1;::::0;::::1;;;;;;;;19888:14;;:23;;;;;;;;;;;;;;;;;;19939:1;19922:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;19970:4;19964:3;:10;19952:9;:22;;;;20027:1;19990:40;;20011:6;::::0;::::1;;;;;;;;19990:40;;;;;;;;;;;;19824:214:::0;:::o;32146:143::-;32227:7;32254:11;:18;32266:5;32254:18;;;;;;;;;;;;;;;:27;32273:7;32254:27;;;;;;;;;;;;;;;;32247:34;;32146:143;;;;:::o;36324:110::-;18683:12;:10;:12::i;:::-;18673:22;;:6;;;;;;;;;;:22;;;18665:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36421:5:::1;36391:18;:27;36410:7;36391:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;36324:110:::0;:::o;36690:158::-;18683:12;:10;:12::i;:::-;18673:22;;:6;;;;;;;;;;:22;;;18665:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36831:9:::1;;36825:2;:15;36812:10;:28;36780:29;:60;;;;36690:158:::0;:::o;19407:244::-;18683:12;:10;:12::i;:::-;18673:22;;:6;;;;;;;;;;:22;;;18665:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19516:1:::1;19496:22;;:8;:22;;;;19488:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19606:8;19577:38;;19598:6;::::0;::::1;;;;;;;;19577:38;;;;;;;;;;;;19635:8;19626:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;19407:244:::0;:::o;11138:106::-;11191:15;11226:10;11219:17;;11138:106;:::o;40739:337::-;40849:1;40832:19;;:5;:19;;;;40824:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40930:1;40911:21;;:7;:21;;;;40903:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41014:6;40984:11;:18;40996:5;40984:18;;;;;;;;;;;;;;;:27;41003:7;40984:27;;;;;;;;;;;;;;;:36;;;;41052:7;41036:32;;41045:5;41036:32;;;41061:6;41036:32;;;;;;;;;;;;;;;;;;40739:337;;;:::o;41084:1813::-;41222:1;41206:18;;:4;:18;;;;41198:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41299:1;41285:16;;:2;:16;;;;41277:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41369:1;41360:6;:10;41352:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41438:7;:5;:7::i;:::-;41430:15;;:4;:15;;;;:32;;;;;41455:7;:5;:7::i;:::-;41449:13;;:2;:13;;;;41430:32;41427:125;;;41495:12;;41485:6;:22;;41477:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41427:125;41847:28;41878:24;41896:4;41878:9;:24::i;:::-;41847:55;;41950:12;;41926:20;:36;41923:112;;42011:12;;41988:35;;41923:112;42055:24;42106:29;;42082:20;:53;;42055:80;;42164:19;:53;;;;;42201:16;;;;;;;;;;;42200:17;42164:53;:91;;;;;42242:13;42234:21;;:4;:21;;;;42164:91;:129;;;;;42272:21;;;;;;;;;;;42164:129;42146:318;;;42343:29;;42320:52;;42416:36;42431:20;42416:14;:36::i;:::-;42146:318;42545:12;42560:4;42545:19;;42672:18;:24;42691:4;42672:24;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;42700:18;:22;42719:2;42700:22;;;;;;;;;;;;;;;;;;;;;;;;;42672:50;42669:96;;;42748:5;42738:15;;42669:96;42851:38;42866:4;42871:2;42874:6;42881:7;42851:14;:38::i;:::-;41084:1813;;;;;;:::o;7548:192::-;7634:7;7667:1;7662;:6;;7670:12;7654:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7694:9;7710:1;7706;:5;7694:17;;7731:1;7724:8;;;7548:192;;;;;:::o;38630:163::-;38671:7;38692:15;38709;38728:19;:17;:19::i;:::-;38691:56;;;;38765:20;38777:7;38765;:11;;:20;;;;:::i;:::-;38758:27;;;;38630:163;:::o;8946:132::-;9004:7;9031:39;9035:1;9038;9031:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;9024:46;;8946:132;;;;:::o;6645:181::-;6703:7;6723:9;6739:1;6735;:5;6723:17;;6764:1;6759;:6;;6751:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6817:1;6810:8;;;6645:181;;;;:::o;37428:419::-;37487:7;37496;37505;37514;37523;37532;37553:23;37578:12;37592:18;37614:20;37626:7;37614:11;:20::i;:::-;37552:82;;;;;;37646:15;37663:23;37688:12;37704:50;37716:7;37725:4;37731:10;37743;:8;:10::i;:::-;37704:11;:50::i;:::-;37645:109;;;;;;37773:7;37782:15;37799:4;37805:15;37822:4;37828:10;37765:74;;;;;;;;;;;;;;;;;;37428:419;;;;;;;:::o;7109:136::-;7167:7;7194:43;7198:1;7201;7194:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;7187:50;;7109:136;;;;:::o;42905:985::-;29948:4;29929:16;;:23;;;;;;;;;;;;;;;;;;43041:12:::1;43056:27;43081:1;43056:20;:24;;:27;;;;:::i;:::-;43041:42;;43094:17;43114:30;43139:4;43114:20;:24;;:30;;;;:::i;:::-;43094:50;;43422:22;43447:21;43422:46;;43513:22;43530:4;43513:16;:22::i;:::-;43666:18;43687:41;43713:14;43687:21;:25;;:41;;;;:::i;:::-;43666:62;;43778:35;43791:9;43802:10;43778:12;:35::i;:::-;43839:43;43854:4;43860:10;43872:9;43839:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29963:1;;;;29994:5:::0;29975:16;;:24;;;;;;;;;;;;;;;;;;42905:985;:::o;45089:834::-;45200:7;45196:40;;45222:14;:12;:14::i;:::-;45196:40;45261:11;:19;45273:6;45261:19;;;;;;;;;;;;;;;;;;;;;;;;;:46;;;;;45285:11;:22;45297:9;45285:22;;;;;;;;;;;;;;;;;;;;;;;;;45284:23;45261:46;45257:597;;;45324:48;45346:6;45354:9;45365:6;45324:21;:48::i;:::-;45257:597;;;45395:11;:19;45407:6;45395:19;;;;;;;;;;;;;;;;;;;;;;;;;45394:20;:46;;;;;45418:11;:22;45430:9;45418:22;;;;;;;;;;;;;;;;;;;;;;;;;45394:46;45390:464;;;45457:46;45477:6;45485:9;45496:6;45457:19;:46::i;:::-;45390:464;;;45526:11;:19;45538:6;45526:19;;;;;;;;;;;;;;;;;;;;;;;;;45525:20;:47;;;;;45550:11;:22;45562:9;45550:22;;;;;;;;;;;;;;;;;;;;;;;;;45549:23;45525:47;45521:333;;;45589:44;45607:6;45615:9;45626:6;45589:17;:44::i;:::-;45521:333;;;45655:11;:19;45667:6;45655:19;;;;;;;;;;;;;;;;;;;;;;;;;:45;;;;;45678:11;:22;45690:9;45678:22;;;;;;;;;;;;;;;;;;;;;;;;;45655:45;45651:203;;;45717:48;45739:6;45747:9;45758:6;45717:21;:48::i;:::-;45651:203;;;45798:44;45816:6;45824:9;45835:6;45798:17;:44::i;:::-;45651:203;45521:333;45390:464;45257:597;45878:7;45874:41;;45900:15;:13;:15::i;:::-;45874:41;45089:834;;;;:::o;38801:561::-;38851:7;38860;38880:15;38898:7;;38880:25;;38916:15;38934:7;;38916:25;;38963:9;38958:289;38982:9;:16;;;;38978:1;:20;38958:289;;;39048:7;39024;:21;39032:9;39042:1;39032:12;;;;;;;;;;;;;;;;;;;;;;;;;39024:21;;;;;;;;;;;;;;;;:31;:66;;;;39083:7;39059;:21;39067:9;39077:1;39067:12;;;;;;;;;;;;;;;;;;;;;;;;;39059:21;;;;;;;;;;;;;;;;:31;39024:66;39020:97;;;39100:7;;39109;;39092:25;;;;;;;;;39020:97;39142:34;39154:7;:21;39162:9;39172:1;39162:12;;;;;;;;;;;;;;;;;;;;;;;;;39154:21;;;;;;;;;;;;;;;;39142:7;:11;;:34;;;;:::i;:::-;39132:44;;39201:34;39213:7;:21;39221:9;39231:1;39221:12;;;;;;;;;;;;;;;;;;;;;;;;;39213:21;;;;;;;;;;;;;;;;39201:7;:11;;:34;;;;:::i;:::-;39191:44;;39000:3;;;;;;;38958:289;;;;39271:20;39283:7;;39271;;:11;;:20;;;;:::i;:::-;39261:7;:30;39257:61;;;39301:7;;39310;;39293:25;;;;;;;;39257:61;39337:7;39346;39329:25;;;;;;38801:561;;;:::o;9574:278::-;9660:7;9692:1;9688;:5;9695:12;9680:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9719:9;9735:1;9731;:5;;;;;;9719:17;;9843:1;9836:8;;;9574:278;;;;;:::o;37855:330::-;37915:7;37924;37933;37953:12;37968:24;37984:7;37968:15;:24::i;:::-;37953:39;;38003:18;38024:30;38046:7;38024:21;:30::i;:::-;38003:51;;38065:23;38091:33;38113:10;38091:17;38103:4;38091:7;:11;;:17;;;;:::i;:::-;:21;;:33;;;;:::i;:::-;38065:59;;38143:15;38160:4;38166:10;38135:42;;;;;;;;;37855:330;;;;;:::o;38193:429::-;38308:7;38317;38326;38346:15;38364:24;38376:11;38364:7;:11;;:24;;;;:::i;:::-;38346:42;;38399:12;38414:21;38423:11;38414:4;:8;;:21;;;;:::i;:::-;38399:36;;38446:18;38467:27;38482:11;38467:10;:14;;:27;;;;:::i;:::-;38446:48;;38505:23;38531:33;38553:10;38531:17;38543:4;38531:7;:11;;:17;;;;:::i;:::-;:21;;:33;;;;:::i;:::-;38505:59;;38583:7;38592:15;38609:4;38575:39;;;;;;;;;;38193:429;;;;;;;;:::o;43898:589::-;44024:21;44062:1;44048:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44024:40;;44093:4;44075;44080:1;44075:7;;;;;;;;;;;;;:23;;;;;;;;;;;44119:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44109:4;44114:1;44109:7;;;;;;;;;;;;;:32;;;;;;;;;;;44154:62;44171:4;44186:15;44204:11;44154:8;:62::i;:::-;44255:15;:66;;;44336:11;44362:1;44406:4;44433;44453:15;44255:224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43898:589;;:::o;44495:513::-;44643:62;44660:4;44675:15;44693:11;44643:8;:62::i;:::-;44748:15;:31;;;44787:9;44820:4;44840:11;44866:1;44909;44952:7;:5;:7::i;:::-;44974:15;44748:252;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44495:513;;:::o;40209:250::-;40266:1;40255:7;;:12;:34;;;;;40288:1;40271:13;;:18;40255:34;40252:46;;;40291:7;;40252:46;40336:7;;40318:15;:25;;;;40378:13;;40354:21;:37;;;;40422:1;40412:7;:11;;;;40450:1;40434:13;:17;;;;40209:250;:::o;47035:566::-;47138:15;47155:23;47180:12;47194:23;47219:12;47233:18;47255:19;47266:7;47255:10;:19::i;:::-;47137:137;;;;;;;;;;;;47303:28;47323:7;47303;:15;47311:6;47303:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;47285:7;:15;47293:6;47285:15;;;;;;;;;;;;;;;:46;;;;47360:28;47380:7;47360;:15;47368:6;47360:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;47342:7;:15;47350:6;47342:15;;;;;;;;;;;;;;;:46;;;;47420:39;47443:15;47420:7;:18;47428:9;47420:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;47399:7;:18;47407:9;47399:18;;;;;;;;;;;;;;;:60;;;;47473:26;47488:10;47473:14;:26::i;:::-;47510:23;47522:4;47528;47510:11;:23::i;:::-;47566:9;47549:44;;47558:6;47549:44;;;47577:15;47549:44;;;;;;;;;;;;;;;;;;47035:566;;;;;;;;;:::o;46441:586::-;46542:15;46559:23;46584:12;46598:23;46623:12;46637:18;46659:19;46670:7;46659:10;:19::i;:::-;46541:137;;;;;;;;;;;;46707:28;46727:7;46707;:15;46715:6;46707:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;46689:7;:15;46697:6;46689:15;;;;;;;;;;;;;;;:46;;;;46767:39;46790:15;46767:7;:18;46775:9;46767:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;46746:7;:18;46754:9;46746:18;;;;;;;;;;;;;;;:60;;;;46838:39;46861:15;46838:7;:18;46846:9;46838:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;46817:7;:18;46825:9;46817:18;;;;;;;;;;;;;;;:60;;;;46899:26;46914:10;46899:14;:26::i;:::-;46936:23;46948:4;46954;46936:11;:23::i;:::-;46992:9;46975:44;;46984:6;46975:44;;;47003:15;46975:44;;;;;;;;;;;;;;;;;;46441:586;;;;;;;;;:::o;45931:502::-;46030:15;46047:23;46072:12;46086:23;46111:12;46125:18;46147:19;46158:7;46147:10;:19::i;:::-;46029:137;;;;;;;;;;;;46195:28;46215:7;46195;:15;46203:6;46195:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;46177:7;:15;46185:6;46177:15;;;;;;;;;;;;;;;:46;;;;46255:39;46278:15;46255:7;:18;46263:9;46255:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;46234:7;:18;46242:9;46234:18;;;;;;;;;;;;;;;:60;;;;46305:26;46320:10;46305:14;:26::i;:::-;46342:23;46354:4;46360;46342:11;:23::i;:::-;46398:9;46381:44;;46390:6;46381:44;;;46409:15;46381:44;;;;;;;;;;;;;;;;;;45931:502;;;;;;;;;:::o;35547:642::-;35650:15;35667:23;35692:12;35706:23;35731:12;35745:18;35767:19;35778:7;35767:10;:19::i;:::-;35649:137;;;;;;;;;;;;35815:28;35835:7;35815;:15;35823:6;35815:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;35797:7;:15;35805:6;35797:15;;;;;;;;;;;;;;;:46;;;;35872:28;35892:7;35872;:15;35880:6;35872:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;35854:7;:15;35862:6;35854:15;;;;;;;;;;;;;;;:46;;;;35932:39;35955:15;35932:7;:18;35940:9;35932:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;35911:7;:18;35919:9;35911:18;;;;;;;;;;;;;;;:60;;;;36003:39;36026:15;36003:7;:18;36011:9;36003:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;35982:7;:18;35990:9;35982:18;;;;;;;;;;;;;;;:60;;;;36061:26;36076:10;36061:14;:26::i;:::-;36098:23;36110:4;36116;36098:11;:23::i;:::-;36154:9;36137:44;;36146:6;36137:44;;;36165:15;36137:44;;;;;;;;;;;;;;;;;;35547:642;;;;;;;;;:::o;40471:125::-;40525:15;;40515:7;:25;;;;40567:21;;40551:13;:37;;;;40471:125::o;39869:154::-;39933:7;39960:55;39999:5;39960:20;39972:7;;39960;:11;;:20;;;;:::i;:::-;:24;;:55;;;;:::i;:::-;39953:62;;39869:154;;;:::o;40031:166::-;40101:7;40128:61;40173:5;40128:26;40140:13;;40128:7;:11;;:26;;;;:::i;:::-;:30;;:61;;;;:::i;:::-;40121:68;;40031:166;;;:::o;7999:471::-;8057:7;8307:1;8302;:6;8298:47;;;8332:1;8325:8;;;;8298:47;8357:9;8373:1;8369;:5;8357:17;;8402:1;8397;8393;:5;;;;;;:10;8385:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8461:1;8454:8;;;7999:471;;;;;:::o;39374:355::-;39437:19;39460:10;:8;:10::i;:::-;39437:33;;39481:18;39502:27;39517:11;39502:10;:14;;:27;;;;:::i;:::-;39481:48;;39565:38;39592:10;39565:7;:22;39581:4;39565:22;;;;;;;;;;;;;;;;:26;;:38;;;;:::i;:::-;39540:7;:22;39556:4;39540:22;;;;;;;;;;;;;;;:63;;;;39617:11;:26;39637:4;39617:26;;;;;;;;;;;;;;;;;;;;;;;;;39614:107;;;39683:38;39710:10;39683:7;:22;39699:4;39683:22;;;;;;;;;;;;;;;;:26;;:38;;;;:::i;:::-;39658:7;:22;39674:4;39658:22;;;;;;;;;;;;;;;:63;;;;39614:107;39374:355;;;:::o;37273:147::-;37351:17;37363:4;37351:7;;:11;;:17;;;;:::i;:::-;37341:7;:27;;;;37392:20;37407:4;37392:10;;:14;;:20;;;;:::i;:::-;37379:10;:33;;;;37273:147;;:::o

Swarm Source

ipfs://44d8db319790ee0244892302c6d9f43e34a17b389f2da4d77006f7936e6bb72c
Loading