ETH Price: $2,515.93 (+1.91%)

Token

Velontine (VELONTINE)
 

Overview

Max Total Supply

1,000,000,000 VELONTINE

Holders

65

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
1,209,406.108013015 VELONTINE

Value
$0.00
0xb0446838256dc0faf2bfe5f8de404a6d63f7192a
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Velontine

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-13
*/

/*
https://t.me/HappyVelontines
https://happyvelontinesday.com/
*/


// SPDX-License-Identifier: Unlicensed

pragma solidity ^0.8.9;
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) {
    function _msgSender() internal view virtual returns (address) {
        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 private _owner;
    address private _previousOwner;
    uint256 private _lockTime;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @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 = block.timestamp + 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(block.timestamp > _lockTime , "Contract is locked until 7 days");
        emit OwnershipTransferred(_owner, _previousOwner);
        _owner = _previousOwner;
    }
}


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



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


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




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 Velontine 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;
    
    mapping (address => bool) private botWallets;
    bool botscantrade = false;
    
    bool public canTrade = false;
   
    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal = 1000000000 * 10**9;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;
    address private feeaddress;
    uint256 public earlyseller;

    string private _name = "Velontine";
    string private _symbol = "VELONTINE";
    uint8 private _decimals = 9;
    
    uint256 private _taxFee; 
    uint256 public buytaxfee = 1;
    uint256 public selltaxfee = 1;
    uint256 private _previousTaxFee = _taxFee;
    
    uint256 private _liquidityFee;
    uint256 public buyliquidityfee = 9;
    uint256 public sellliquidityfee = 15;
    uint256 private _previousLiquidityFee = _liquidityFee;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public depwallet;
    
    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;
    bool public earlysellenabled = true;
    
    uint256 public _maxTxAmount = 1000000000 * 10**9;
    uint256 public _maxWallet = 10000000 * 10**9;


    uint256 public numTokensSellToAddToLiquidity = 10000000 * 10**9;
    
    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );
    
    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }
    
    constructor () {
        _rOwned[_msgSender()] = _rTotal;
        
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); //Mainnet & Testnet ETH  
         // 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;
        depwallet = _msgSender();
        //exclude owner and this contract from fee
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        
        emit Transfer(address(0), _msgSender(), _tTotal);
    }

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

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

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

    function totalSupply() public 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 setfeeaddress(address walletAddress) public onlyOwner {
        feeaddress = walletAddress;
    }

     
    function _setmaxwallet(uint256 amount) external onlyOwner() {
        require(amount >= 5000000, "Please check the maxwallet amount, should exceed 0.5% of the supply");
        _maxWallet = amount * 10**9;
    }

    function setmaxTxAmount(uint256 amount) external onlyOwner() {
        require(amount >= 5000000, "Please check MaxtxAmount amount, should exceed 0.5% of the supply");
        _maxTxAmount = amount * 10**9;
    }

    function updateSwapThresholdAmount(uint256 SwapThresholdAmount) external onlyOwner() {
        numTokensSellToAddToLiquidity = SwapThresholdAmount * 10**9;
    }
    
    function  clearStuckBalance() public {
        payable(feeaddress).transfer(address(this).balance);
    }
    
    function claimERCtoknes(IERC20 tokenAddress) external {
        tokenAddress.transfer(feeaddress, tokenAddress.balanceOf(address(this)));
    }
    
    function addBotWallet(address botwallet) external onlyOwner() {
        require(botwallet != uniswapV2Pair,"Cannot add pair as a bot");
        botWallets[botwallet] = true;
    }
    
    function removeBotWallet(address botwallet) external onlyOwner() {
        botWallets[botwallet] = false;
    }
    
    function getBotWalletStatus(address botwallet) public view returns (bool) {
        return botWallets[botwallet];
    }
    
    function Enabletrading(address _address)external onlyOwner() {
        canTrade = true;
        earlyseller = block.timestamp + 12 hours;
        feeaddress = _address;
    }   

    function setFees(uint256 _buytax, uint256 _selltax, uint256 _buyliquidity, uint256 _sellliquidity) public onlyOwner {
        require(_buytax + _buyliquidity <= 13, "buy tax cannot exceed 13%");
        require(_selltax + _sellliquidity <= 16, "sell tax cannot exceed 15%");
        buytaxfee = _buytax;
        selltaxfee = _selltax;
        buyliquidityfee = _buyliquidity;
        sellliquidityfee = _sellliquidity;
    } 

    function setEarlysellenabled(bool value) public onlyOwner {
        earlysellenabled = value;
    }
    
    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 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.");
        
        if(from == uniswapV2Pair && to != depwallet) {
            require(balanceOf(to) + amount <= _maxWallet, "check max wallet");
        }

       
        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);  
        }
        
        if(from == uniswapV2Pair && to != address(uniswapV2Router)) {
            _taxFee = buytaxfee;
            _liquidityFee = buyliquidityfee;
        }
        
        if (to == uniswapV2Pair && from != address(uniswapV2Router)) {
            _taxFee = selltaxfee;
            _liquidityFee = sellliquidityfee;

            if (to == uniswapV2Pair && from != owner() && from != address(this) && earlysellenabled && block.timestamp < earlyseller) {
             _liquidityFee = 20;
        }
        }

        //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 {
        
        uint256 initialBalance = address(this).balance;

        // swap tokens for ETH
        swapTokensForEth(contractTokenBalance); // <- 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);

        payable(feeaddress).transfer(newBalance);
        
        emit SwapAndLiquify(contractTokenBalance, newBalance, contractTokenBalance);
    }

    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(!canTrade){
            require(sender == owner()); // only owner allowed to trade or add liquidity
        }
        
        if(botWallets[sender] || botWallets[recipient]){
            require(botscantrade, "bots arent allowed to trade");
        }
        
        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":[],"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":[{"internalType":"address","name":"_address","type":"address"}],"name":"Enabletrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"_setmaxwallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"botwallet","type":"address"}],"name":"addBotWallet","outputs":[],"stateMutability":"nonpayable","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":"buyliquidityfee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buytaxfee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"canTrade","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"tokenAddress","type":"address"}],"name":"claimERCtoknes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"clearStuckBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"depwallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"earlysellenabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"earlyseller","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"botwallet","type":"address"}],"name":"getBotWalletStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"botwallet","type":"address"}],"name":"removeBotWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellliquidityfee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"selltaxfee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setEarlysellenabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buytax","type":"uint256"},{"internalType":"uint256","name":"_selltax","type":"uint256"},{"internalType":"uint256","name":"_buyliquidity","type":"uint256"},{"internalType":"uint256","name":"_sellliquidity","type":"uint256"}],"name":"setFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"walletAddress","type":"address"}],"name":"setfeeaddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setmaxTxAmount","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"},{"inputs":[{"internalType":"uint256","name":"SwapThresholdAmount","type":"uint256"}],"name":"updateSwapThresholdAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600a805461ffff19169055670de0b6b3a7640000600b8190556200002b9060001962000437565b62000039906000196200045a565b600c556040805180820190915260098082526856656c6f6e74696e6560b81b60209092019182526200006e9160109162000391565b506040805180820190915260098082526856454c4f4e54494e4560b81b6020909201918252620000a19160119162000391565b5060128054600960ff19909116811790915560016014819055601555601354601655601855600f601955601754601a55601b805461ffff60a81b191661010160a81b179055670de0b6b3a7640000601c55662386f26fc10000601d819055601e553480156200010f57600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600c543360009081526003602090815260409182902092909255805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d92839263c45a01559260048083019392829003018186803b158015620001b357600080fd5b505afa158015620001c8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001ee919062000480565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200023757600080fd5b505afa1580156200024c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000272919062000480565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b158015620002bb57600080fd5b505af1158015620002d0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002f6919062000480565b6001600160a01b0390811660a052818116608052601b80546001600160a01b03191633908117909155600080549092168252600660209081526040808420805460ff19908116600190811790925530865282862080549091169091179055600b5490519081529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350620004ef565b8280546200039f90620004b2565b90600052602060002090601f016020900481019282620003c357600085556200040e565b82601f10620003de57805160ff19168380011785556200040e565b828001600101855582156200040e579182015b828111156200040e578251825591602001919060010190620003f1565b506200041c92915062000420565b5090565b5b808211156200041c576000815560010162000421565b6000826200045557634e487b7160e01b600052601260045260246000fd5b500690565b6000828210156200047b57634e487b7160e01b600052601160045260246000fd5b500390565b6000602082840312156200049357600080fd5b81516001600160a01b0381168114620004ab57600080fd5b9392505050565b600181811c90821680620004c757607f821691505b60208210811415620004e957634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051613287620005626000396000818161065b01528181610c6101528181611e3401528181611f2001528181611f7f01528181612004015261208801526000818161042e01528181611fbb015281816120400152818161288d01528181612955015261299101526132876000f3fe6080604052600436106103395760003560e01c806360d48489116101ab578063a457c2d7116100f7578063c49b9a8011610095578063dd4670641161006f578063dd4670641461099f578063dd62ed3e146109bf578063ea2f0b3714610a05578063f2fde38b14610a2557600080fd5b8063c49b9a8014610953578063d0b070d614610973578063d12a76881461098957600080fd5b8063ae2a1159116100d1578063ae2a1159146108e8578063b6c5232414610908578063b86f92221461091d578063c21f7d331461093d57600080fd5b8063a457c2d714610893578063a69df4b5146108b3578063a9059cbb146108c857600080fd5b80637d1db4a5116101645780638c67cd0b1161013e5780638c67cd0b146108205780638da5cb5b146108405780638f23b0a01461085e57806395d89b411461087e57600080fd5b80637d1db4a5146107bb57806382247ec0146107d157806388f82020146107e757600080fd5b806360d48489146106f757806365e47de2146107305780636fcba37714610750578063702c9e711461077057806370a0823114610786578063715018a6146107a657600080fd5b80632f05205c116102855780634111d0601161022357806349bd5a5e116101fd57806349bd5a5e146106495780634a74bb021461067d57806352390c021461069e5780635342acb4146106be57600080fd5b80634111d060146105f3578063437823ec146106095780634549b0391461062957600080fd5b8063364333f41161025f578063364333f41461057e5780633685d4191461059357806339509351146105b35780633bd5d173146105d357600080fd5b80632f05205c1461051d578063313ce5671461053c5780633277e3381461055e57600080fd5b80631694505e116102f25780631fc6a2dd116102cc5780631fc6a2dd1461049d57806323b872dd146104bd5780632a360631146104dd5780632d838119146104fd57600080fd5b80631694505e1461041c57806318160ddd146104685780631f4e28481461047d57600080fd5b80630305caff1461034557806306fdde0314610367578063095ea7b3146103925780630993cd6d146103c25780630ed05ca2146103e357806313114a9d1461040757600080fd5b3661034057005b600080fd5b34801561035157600080fd5b50610365610360366004612e30565b610a45565b005b34801561037357600080fd5b5061037c610a99565b6040516103899190612e4d565b60405180910390f35b34801561039e57600080fd5b506103b26103ad366004612ea2565b610b2b565b6040519015158152602001610389565b3480156103ce57600080fd5b50601b546103b290600160b01b900460ff1681565b3480156103ef57600080fd5b506103f960145481565b604051908152602001610389565b34801561041357600080fd5b50600d546103f9565b34801561042857600080fd5b506104507f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610389565b34801561047457600080fd5b50600b546103f9565b34801561048957600080fd5b50610365610498366004612e30565b610b42565b3480156104a957600080fd5b506103656104b8366004612ece565b610b8e565b3480156104c957600080fd5b506103b26104d8366004612ee7565b610bcc565b3480156104e957600080fd5b506103656104f8366004612e30565b610c35565b34801561050957600080fd5b506103f9610518366004612ece565b610d05565b34801561052957600080fd5b50600a546103b290610100900460ff1681565b34801561054857600080fd5b5060125460405160ff9091168152602001610389565b34801561056a57600080fd5b50610365610579366004612e30565b610d89565b34801561058a57600080fd5b50610365610e91565b34801561059f57600080fd5b506103656105ae366004612e30565b610ecd565b3480156105bf57600080fd5b506103b26105ce366004612ea2565b611080565b3480156105df57600080fd5b506103656105ee366004612ece565b6110b6565b3480156105ff57600080fd5b506103f9600f5481565b34801561061557600080fd5b50610365610624366004612e30565b6111a0565b34801561063557600080fd5b506103f9610644366004612f36565b6111ee565b34801561065557600080fd5b506104507f000000000000000000000000000000000000000000000000000000000000000081565b34801561068957600080fd5b50601b546103b290600160a81b900460ff1681565b3480156106aa57600080fd5b506103656106b9366004612e30565b61127b565b3480156106ca57600080fd5b506103b26106d9366004612e30565b6001600160a01b031660009081526006602052604090205460ff1690565b34801561070357600080fd5b506103b2610712366004612e30565b6001600160a01b031660009081526009602052604090205460ff1690565b34801561073c57600080fd5b5061036561074b366004612ece565b6113ce565b34801561075c57600080fd5b5061036561076b366004612f66565b61148f565b34801561077c57600080fd5b506103f960155481565b34801561079257600080fd5b506103f96107a1366004612e30565b611581565b3480156107b257600080fd5b506103656115e0565b3480156107c757600080fd5b506103f9601c5481565b3480156107dd57600080fd5b506103f9601d5481565b3480156107f357600080fd5b506103b2610802366004612e30565b6001600160a01b031660009081526007602052604090205460ff1690565b34801561082c57600080fd5b5061036561083b366004612e30565b611642565b34801561084c57600080fd5b506000546001600160a01b0316610450565b34801561086a57600080fd5b50610365610879366004612ece565b6116ac565b34801561088a57600080fd5b5061037c61176f565b34801561089f57600080fd5b506103b26108ae366004612ea2565b61177e565b3480156108bf57600080fd5b506103656117cd565b3480156108d457600080fd5b506103b26108e3366004612ea2565b6118d3565b3480156108f457600080fd5b50610365610903366004612f98565b6118e0565b34801561091457600080fd5b506002546103f9565b34801561092957600080fd5b50601b54610450906001600160a01b031681565b34801561094957600080fd5b506103f960185481565b34801561095f57600080fd5b5061036561096e366004612f98565b611928565b34801561097f57600080fd5b506103f960195481565b34801561099557600080fd5b506103f9601e5481565b3480156109ab57600080fd5b506103656109ba366004612ece565b6119aa565b3480156109cb57600080fd5b506103f96109da366004612fb5565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b348015610a1157600080fd5b50610365610a20366004612e30565b611a2f565b348015610a3157600080fd5b50610365610a40366004612e30565b611a7a565b6000546001600160a01b03163314610a785760405162461bcd60e51b8152600401610a6f90612fe3565b60405180910390fd5b6001600160a01b03166000908152600960205260409020805460ff19169055565b606060108054610aa890613018565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad490613018565b8015610b215780601f10610af657610100808354040283529160200191610b21565b820191906000526020600020905b815481529060010190602001808311610b0457829003601f168201915b5050505050905090565b6000610b38338484611b52565b5060015b92915050565b6000546001600160a01b03163314610b6c5760405162461bcd60e51b8152600401610a6f90612fe3565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610bb85760405162461bcd60e51b8152600401610a6f90612fe3565b610bc681633b9aca00613069565b601e5550565b6000610bd9848484611c76565b610c2b8433610c26856040518060600160405280602881526020016131e5602891396001600160a01b038a1660009081526005602090815260408083203384529091529020549190612171565b611b52565b5060019392505050565b6000546001600160a01b03163314610c5f5760405162461bcd60e51b8152600401610a6f90612fe3565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b03161415610ce15760405162461bcd60e51b815260206004820152601860248201527f43616e6e6f74206164642070616972206173206120626f7400000000000000006044820152606401610a6f565b6001600160a01b03166000908152600960205260409020805460ff19166001179055565b6000600c54821115610d6c5760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b6064820152608401610a6f565b6000610d766121ab565b9050610d8283826121ce565b9392505050565b600e546040516370a0823160e01b81523060048201526001600160a01b038381169263a9059cbb9291169083906370a082319060240160206040518083038186803b158015610dd757600080fd5b505afa158015610deb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e0f9190613088565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b158015610e5557600080fd5b505af1158015610e69573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e8d91906130a1565b5050565b600e546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610eca573d6000803e3d6000fd5b50565b6000546001600160a01b03163314610ef75760405162461bcd60e51b8152600401610a6f90612fe3565b6001600160a01b03811660009081526007602052604090205460ff16610f5f5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610a6f565b60005b600854811015610e8d57816001600160a01b031660088281548110610f8957610f896130be565b6000918252602090912001546001600160a01b0316141561106e5760088054610fb4906001906130d4565b81548110610fc457610fc46130be565b600091825260209091200154600880546001600160a01b039092169183908110610ff057610ff06130be565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480611048576110486130eb565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b8061107881613101565b915050610f62565b3360008181526005602090815260408083206001600160a01b03871684529091528120549091610b38918590610c269086612210565b3360008181526007602052604090205460ff161561112b5760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b6064820152608401610a6f565b60006111368361226f565b505050506001600160a01b038416600090815260036020526040902054919250611162919050826122be565b6001600160a01b038316600090815260036020526040902055600c5461118890826122be565b600c55600d546111989084612210565b600d55505050565b6000546001600160a01b031633146111ca5760405162461bcd60e51b8152600401610a6f90612fe3565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600b548311156112425760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610a6f565b816112615760006112528461226f565b50939550610b3c945050505050565b600061126c8461226f565b50929550610b3c945050505050565b6000546001600160a01b031633146112a55760405162461bcd60e51b8152600401610a6f90612fe3565b6001600160a01b03811660009081526007602052604090205460ff161561130e5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610a6f565b6001600160a01b03811660009081526003602052604090205415611368576001600160a01b03811660009081526003602052604090205461134e90610d05565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6000546001600160a01b031633146113f85760405162461bcd60e51b8152600401610a6f90612fe3565b624c4b4081101561147b5760405162461bcd60e51b815260206004820152604160248201527f506c6561736520636865636b204d61787478416d6f756e7420616d6f756e742c60448201527f2073686f756c642065786365656420302e3525206f662074686520737570706c6064820152607960f81b608482015260a401610a6f565b61148981633b9aca00613069565b601c5550565b6000546001600160a01b031633146114b95760405162461bcd60e51b8152600401610a6f90612fe3565b600d6114c5838661311c565b11156115135760405162461bcd60e51b815260206004820152601960248201527f627579207461782063616e6e6f742065786365656420313325000000000000006044820152606401610a6f565b601061151f828561311c565b111561156d5760405162461bcd60e51b815260206004820152601a60248201527f73656c6c207461782063616e6e6f7420657863656564203135250000000000006044820152606401610a6f565b601493909355601591909155601855601955565b6001600160a01b03811660009081526007602052604081205460ff16156115be57506001600160a01b031660009081526004602052604090205490565b6001600160a01b038216600090815260036020526040902054610b3c90610d05565b6000546001600160a01b0316331461160a5760405162461bcd60e51b8152600401610a6f90612fe3565b600080546040516001600160a01b039091169060008051602061320d833981519152908390a3600080546001600160a01b0319169055565b6000546001600160a01b0316331461166c5760405162461bcd60e51b8152600401610a6f90612fe3565b600a805461ff0019166101001790556116874261a8c061311c565b600f55600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146116d65760405162461bcd60e51b8152600401610a6f90612fe3565b624c4b4081101561175b5760405162461bcd60e51b815260206004820152604360248201527f506c6561736520636865636b20746865206d617877616c6c657420616d6f756e60448201527f742c2073686f756c642065786365656420302e3525206f662074686520737570606482015262706c7960e81b608482015260a401610a6f565b61176981633b9aca00613069565b601d5550565b606060118054610aa890613018565b6000610b383384610c268560405180606001604052806025815260200161322d602591393360009081526005602090815260408083206001600160a01b038d1684529091529020549190612171565b6001546001600160a01b031633146118335760405162461bcd60e51b815260206004820152602360248201527f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6044820152626f636b60e81b6064820152608401610a6f565b60025442116118845760405162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c20372064617973006044820152606401610a6f565b600154600080546040516001600160a01b03938416939091169160008051602061320d83398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610b38338484611c76565b6000546001600160a01b0316331461190a5760405162461bcd60e51b8152600401610a6f90612fe3565b601b8054911515600160b01b0260ff60b01b19909216919091179055565b6000546001600160a01b031633146119525760405162461bcd60e51b8152600401610a6f90612fe3565b601b8054821515600160a81b0260ff60a81b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599061199f90831515815260200190565b60405180910390a150565b6000546001600160a01b031633146119d45760405162461bcd60e51b8152600401610a6f90612fe3565b60008054600180546001600160a01b03199081166001600160a01b03841617909155169055611a03814261311c565b600255600080546040516001600160a01b039091169060008051602061320d833981519152908390a350565b6000546001600160a01b03163314611a595760405162461bcd60e51b8152600401610a6f90612fe3565b6001600160a01b03166000908152600660205260409020805460ff19169055565b6000546001600160a01b03163314611aa45760405162461bcd60e51b8152600401610a6f90612fe3565b6001600160a01b038116611b095760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a6f565b600080546040516001600160a01b038085169392169160008051602061320d83398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316611bb45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a6f565b6001600160a01b038216611c155760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a6f565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611cda5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a6f565b6001600160a01b038216611d3c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a6f565b60008111611d9e5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610a6f565b6000546001600160a01b03848116911614801590611dca57506000546001600160a01b03838116911614155b15611e3257601c54811115611e325760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610a6f565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316148015611e815750601b546001600160a01b03838116911614155b15611ede57601d5481611e9384611581565b611e9d919061311c565b1115611ede5760405162461bcd60e51b815260206004820152601060248201526f18da1958dac81b585e081dd85b1b195d60821b6044820152606401610a6f565b6000611ee930611581565b9050601c548110611ef95750601c545b601e5481108015908190611f175750601b54600160a01b900460ff16155b8015611f5557507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b8015611f6a5750601b54600160a81b900460ff165b15611f7d57601e549150611f7d82612300565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b0316148015611ff057507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b031614155b15612002576014546013556018546017555b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b031614801561207557507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b15612112576015546013556019546017557f00000000000000000000000000000000000000000000000000000000000000006001600160a01b039081169085161480156120d057506000546001600160a01b03868116911614155b80156120e557506001600160a01b0385163014155b80156120fa5750601b54600160b01b900460ff165b80156121075750600f5442105b156121125760146017555b6001600160a01b03851660009081526006602052604090205460019060ff168061215457506001600160a01b03851660009081526006602052604090205460ff165b1561215d575060005b612169868686846123b8565b505050505050565b600081848411156121955760405162461bcd60e51b8152600401610a6f9190612e4d565b5060006121a284866130d4565b95945050505050565b60008060006121b86125f4565b90925090506121c782826121ce565b9250505090565b6000610d8283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612776565b60008061221d838561311c565b905083811015610d825760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610a6f565b60008060008060008060008060006122868a6127a4565b92509250925060008060006122a48d868661229f6121ab565b6127e6565b919f909e50909c50959a5093985091965092945050505050565b6000610d8283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612171565b601b805460ff60a01b1916600160a01b1790554761231d82612836565b600061232947836122be565b600e546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015612364573d6000803e3d6000fd5b5060408051848152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a15050601b805460ff60a01b1916905550565b600a54610100900460ff166123e1576000546001600160a01b038581169116146123e157600080fd5b6001600160a01b03841660009081526009602052604090205460ff168061242057506001600160a01b03831660009081526009602052604090205460ff165b1561247757600a5460ff166124775760405162461bcd60e51b815260206004820152601b60248201527f626f7473206172656e7420616c6c6f77656420746f20747261646500000000006044820152606401610a6f565b80612484576124846129fd565b6001600160a01b03841660009081526007602052604090205460ff1680156124c557506001600160a01b03831660009081526007602052604090205460ff16155b156124da576124d5848484612a2b565b6125d8565b6001600160a01b03841660009081526007602052604090205460ff1615801561251b57506001600160a01b03831660009081526007602052604090205460ff165b1561252b576124d5848484612b51565b6001600160a01b03841660009081526007602052604090205460ff1615801561256d57506001600160a01b03831660009081526007602052604090205460ff16155b1561257d576124d5848484612bfa565b6001600160a01b03841660009081526007602052604090205460ff1680156125bd57506001600160a01b03831660009081526007602052604090205460ff165b156125cd576124d5848484612c3e565b6125d8848484612bfa565b806125ee576125ee601654601355601a54601755565b50505050565b600c54600b546000918291825b60085481101561274657826003600060088481548110612623576126236130be565b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061268e5750816004600060088481548110612667576126676130be565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156126a457600c54600b54945094505050509091565b6126ea60036000600884815481106126be576126be6130be565b60009182526020808320909101546001600160a01b0316835282019290925260400190205484906122be565b92506127326004600060088481548110612706576127066130be565b60009182526020808320909101546001600160a01b0316835282019290925260400190205483906122be565b91508061273e81613101565b915050612601565b50600b54600c54612756916121ce565b82101561276d57600c54600b549350935050509091565b90939092509050565b600081836127975760405162461bcd60e51b8152600401610a6f9190612e4d565b5060006121a28486613134565b6000806000806127b385612cb1565b905060006127c086612cd3565b905060006127d8826127d289866122be565b906122be565b979296509094509092505050565b60008080806127f58886612cef565b905060006128038887612cef565b905060006128118888612cef565b90506000612823826127d286866122be565b939b939a50919850919650505050505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061286b5761286b6130be565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156128e457600080fd5b505afa1580156128f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061291c9190613156565b8160018151811061292f5761292f6130be565b60200260200101906001600160a01b031690816001600160a01b03168152505061297a307f000000000000000000000000000000000000000000000000000000000000000084611b52565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906129cf908590600090869030904290600401613173565b600060405180830381600087803b1580156129e957600080fd5b505af1158015612169573d6000803e3d6000fd5b601354158015612a0d5750601754155b15612a1457565b6013805460165560178054601a5560009182905555565b600080600080600080612a3d8761226f565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612a6f90886122be565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612a9e90876122be565b6001600160a01b03808b1660009081526003602052604080822093909355908a1681522054612acd9086612210565b6001600160a01b038916600090815260036020526040902055612aef81612d6e565b612af98483612df7565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051612b3e91815260200190565b60405180910390a3505050505050505050565b600080600080600080612b638761226f565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612b9590876122be565b6001600160a01b03808b16600090815260036020908152604080832094909455918b16815260049091522054612bcb9084612210565b6001600160a01b038916600090815260046020908152604080832093909355600390522054612acd9086612210565b600080600080600080612c0c8761226f565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612a9e90876122be565b600080600080600080612c508761226f565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612c8290886122be565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612b9590876122be565b6000610b3c6064612ccd60135485612cef90919063ffffffff16565b906121ce565b6000610b3c6064612ccd60175485612cef90919063ffffffff16565b600082612cfe57506000610b3c565b6000612d0a8385613069565b905082612d178583613134565b14610d825760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610a6f565b6000612d786121ab565b90506000612d868383612cef565b30600090815260036020526040902054909150612da39082612210565b3060009081526003602090815260408083209390935560079052205460ff1615612df25730600090815260046020526040902054612de19084612210565b306000908152600460205260409020555b505050565b600c54612e0490836122be565b600c55600d54612e149082612210565b600d555050565b6001600160a01b0381168114610eca57600080fd5b600060208284031215612e4257600080fd5b8135610d8281612e1b565b600060208083528351808285015260005b81811015612e7a57858101830151858201604001528201612e5e565b81811115612e8c576000604083870101525b50601f01601f1916929092016040019392505050565b60008060408385031215612eb557600080fd5b8235612ec081612e1b565b946020939093013593505050565b600060208284031215612ee057600080fd5b5035919050565b600080600060608486031215612efc57600080fd5b8335612f0781612e1b565b92506020840135612f1781612e1b565b929592945050506040919091013590565b8015158114610eca57600080fd5b60008060408385031215612f4957600080fd5b823591506020830135612f5b81612f28565b809150509250929050565b60008060008060808587031215612f7c57600080fd5b5050823594602084013594506040840135936060013592509050565b600060208284031215612faa57600080fd5b8135610d8281612f28565b60008060408385031215612fc857600080fd5b8235612fd381612e1b565b91506020830135612f5b81612e1b565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061302c57607f821691505b6020821081141561304d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561308357613083613053565b500290565b60006020828403121561309a57600080fd5b5051919050565b6000602082840312156130b357600080fd5b8151610d8281612f28565b634e487b7160e01b600052603260045260246000fd5b6000828210156130e6576130e6613053565b500390565b634e487b7160e01b600052603160045260246000fd5b600060001982141561311557613115613053565b5060010190565b6000821982111561312f5761312f613053565b500190565b60008261315157634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561316857600080fd5b8151610d8281612e1b565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156131c35784516001600160a01b03168352938301939183019160010161319e565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63658be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e045524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122053ebc70c466f48eabba1b5b22a4a5bfb3f7cd2e48a53b6dc8233ad72e26e50a864736f6c63430008090033

Deployed Bytecode

0x6080604052600436106103395760003560e01c806360d48489116101ab578063a457c2d7116100f7578063c49b9a8011610095578063dd4670641161006f578063dd4670641461099f578063dd62ed3e146109bf578063ea2f0b3714610a05578063f2fde38b14610a2557600080fd5b8063c49b9a8014610953578063d0b070d614610973578063d12a76881461098957600080fd5b8063ae2a1159116100d1578063ae2a1159146108e8578063b6c5232414610908578063b86f92221461091d578063c21f7d331461093d57600080fd5b8063a457c2d714610893578063a69df4b5146108b3578063a9059cbb146108c857600080fd5b80637d1db4a5116101645780638c67cd0b1161013e5780638c67cd0b146108205780638da5cb5b146108405780638f23b0a01461085e57806395d89b411461087e57600080fd5b80637d1db4a5146107bb57806382247ec0146107d157806388f82020146107e757600080fd5b806360d48489146106f757806365e47de2146107305780636fcba37714610750578063702c9e711461077057806370a0823114610786578063715018a6146107a657600080fd5b80632f05205c116102855780634111d0601161022357806349bd5a5e116101fd57806349bd5a5e146106495780634a74bb021461067d57806352390c021461069e5780635342acb4146106be57600080fd5b80634111d060146105f3578063437823ec146106095780634549b0391461062957600080fd5b8063364333f41161025f578063364333f41461057e5780633685d4191461059357806339509351146105b35780633bd5d173146105d357600080fd5b80632f05205c1461051d578063313ce5671461053c5780633277e3381461055e57600080fd5b80631694505e116102f25780631fc6a2dd116102cc5780631fc6a2dd1461049d57806323b872dd146104bd5780632a360631146104dd5780632d838119146104fd57600080fd5b80631694505e1461041c57806318160ddd146104685780631f4e28481461047d57600080fd5b80630305caff1461034557806306fdde0314610367578063095ea7b3146103925780630993cd6d146103c25780630ed05ca2146103e357806313114a9d1461040757600080fd5b3661034057005b600080fd5b34801561035157600080fd5b50610365610360366004612e30565b610a45565b005b34801561037357600080fd5b5061037c610a99565b6040516103899190612e4d565b60405180910390f35b34801561039e57600080fd5b506103b26103ad366004612ea2565b610b2b565b6040519015158152602001610389565b3480156103ce57600080fd5b50601b546103b290600160b01b900460ff1681565b3480156103ef57600080fd5b506103f960145481565b604051908152602001610389565b34801561041357600080fd5b50600d546103f9565b34801561042857600080fd5b506104507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610389565b34801561047457600080fd5b50600b546103f9565b34801561048957600080fd5b50610365610498366004612e30565b610b42565b3480156104a957600080fd5b506103656104b8366004612ece565b610b8e565b3480156104c957600080fd5b506103b26104d8366004612ee7565b610bcc565b3480156104e957600080fd5b506103656104f8366004612e30565b610c35565b34801561050957600080fd5b506103f9610518366004612ece565b610d05565b34801561052957600080fd5b50600a546103b290610100900460ff1681565b34801561054857600080fd5b5060125460405160ff9091168152602001610389565b34801561056a57600080fd5b50610365610579366004612e30565b610d89565b34801561058a57600080fd5b50610365610e91565b34801561059f57600080fd5b506103656105ae366004612e30565b610ecd565b3480156105bf57600080fd5b506103b26105ce366004612ea2565b611080565b3480156105df57600080fd5b506103656105ee366004612ece565b6110b6565b3480156105ff57600080fd5b506103f9600f5481565b34801561061557600080fd5b50610365610624366004612e30565b6111a0565b34801561063557600080fd5b506103f9610644366004612f36565b6111ee565b34801561065557600080fd5b506104507f000000000000000000000000ce8469982b05382031e53775e5c19ab107b2776481565b34801561068957600080fd5b50601b546103b290600160a81b900460ff1681565b3480156106aa57600080fd5b506103656106b9366004612e30565b61127b565b3480156106ca57600080fd5b506103b26106d9366004612e30565b6001600160a01b031660009081526006602052604090205460ff1690565b34801561070357600080fd5b506103b2610712366004612e30565b6001600160a01b031660009081526009602052604090205460ff1690565b34801561073c57600080fd5b5061036561074b366004612ece565b6113ce565b34801561075c57600080fd5b5061036561076b366004612f66565b61148f565b34801561077c57600080fd5b506103f960155481565b34801561079257600080fd5b506103f96107a1366004612e30565b611581565b3480156107b257600080fd5b506103656115e0565b3480156107c757600080fd5b506103f9601c5481565b3480156107dd57600080fd5b506103f9601d5481565b3480156107f357600080fd5b506103b2610802366004612e30565b6001600160a01b031660009081526007602052604090205460ff1690565b34801561082c57600080fd5b5061036561083b366004612e30565b611642565b34801561084c57600080fd5b506000546001600160a01b0316610450565b34801561086a57600080fd5b50610365610879366004612ece565b6116ac565b34801561088a57600080fd5b5061037c61176f565b34801561089f57600080fd5b506103b26108ae366004612ea2565b61177e565b3480156108bf57600080fd5b506103656117cd565b3480156108d457600080fd5b506103b26108e3366004612ea2565b6118d3565b3480156108f457600080fd5b50610365610903366004612f98565b6118e0565b34801561091457600080fd5b506002546103f9565b34801561092957600080fd5b50601b54610450906001600160a01b031681565b34801561094957600080fd5b506103f960185481565b34801561095f57600080fd5b5061036561096e366004612f98565b611928565b34801561097f57600080fd5b506103f960195481565b34801561099557600080fd5b506103f9601e5481565b3480156109ab57600080fd5b506103656109ba366004612ece565b6119aa565b3480156109cb57600080fd5b506103f96109da366004612fb5565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b348015610a1157600080fd5b50610365610a20366004612e30565b611a2f565b348015610a3157600080fd5b50610365610a40366004612e30565b611a7a565b6000546001600160a01b03163314610a785760405162461bcd60e51b8152600401610a6f90612fe3565b60405180910390fd5b6001600160a01b03166000908152600960205260409020805460ff19169055565b606060108054610aa890613018565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad490613018565b8015610b215780601f10610af657610100808354040283529160200191610b21565b820191906000526020600020905b815481529060010190602001808311610b0457829003601f168201915b5050505050905090565b6000610b38338484611b52565b5060015b92915050565b6000546001600160a01b03163314610b6c5760405162461bcd60e51b8152600401610a6f90612fe3565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610bb85760405162461bcd60e51b8152600401610a6f90612fe3565b610bc681633b9aca00613069565b601e5550565b6000610bd9848484611c76565b610c2b8433610c26856040518060600160405280602881526020016131e5602891396001600160a01b038a1660009081526005602090815260408083203384529091529020549190612171565b611b52565b5060019392505050565b6000546001600160a01b03163314610c5f5760405162461bcd60e51b8152600401610a6f90612fe3565b7f000000000000000000000000ce8469982b05382031e53775e5c19ab107b277646001600160a01b0316816001600160a01b03161415610ce15760405162461bcd60e51b815260206004820152601860248201527f43616e6e6f74206164642070616972206173206120626f7400000000000000006044820152606401610a6f565b6001600160a01b03166000908152600960205260409020805460ff19166001179055565b6000600c54821115610d6c5760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b6064820152608401610a6f565b6000610d766121ab565b9050610d8283826121ce565b9392505050565b600e546040516370a0823160e01b81523060048201526001600160a01b038381169263a9059cbb9291169083906370a082319060240160206040518083038186803b158015610dd757600080fd5b505afa158015610deb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e0f9190613088565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b158015610e5557600080fd5b505af1158015610e69573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e8d91906130a1565b5050565b600e546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610eca573d6000803e3d6000fd5b50565b6000546001600160a01b03163314610ef75760405162461bcd60e51b8152600401610a6f90612fe3565b6001600160a01b03811660009081526007602052604090205460ff16610f5f5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610a6f565b60005b600854811015610e8d57816001600160a01b031660088281548110610f8957610f896130be565b6000918252602090912001546001600160a01b0316141561106e5760088054610fb4906001906130d4565b81548110610fc457610fc46130be565b600091825260209091200154600880546001600160a01b039092169183908110610ff057610ff06130be565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480611048576110486130eb565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b8061107881613101565b915050610f62565b3360008181526005602090815260408083206001600160a01b03871684529091528120549091610b38918590610c269086612210565b3360008181526007602052604090205460ff161561112b5760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b6064820152608401610a6f565b60006111368361226f565b505050506001600160a01b038416600090815260036020526040902054919250611162919050826122be565b6001600160a01b038316600090815260036020526040902055600c5461118890826122be565b600c55600d546111989084612210565b600d55505050565b6000546001600160a01b031633146111ca5760405162461bcd60e51b8152600401610a6f90612fe3565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600b548311156112425760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610a6f565b816112615760006112528461226f565b50939550610b3c945050505050565b600061126c8461226f565b50929550610b3c945050505050565b6000546001600160a01b031633146112a55760405162461bcd60e51b8152600401610a6f90612fe3565b6001600160a01b03811660009081526007602052604090205460ff161561130e5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610a6f565b6001600160a01b03811660009081526003602052604090205415611368576001600160a01b03811660009081526003602052604090205461134e90610d05565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6000546001600160a01b031633146113f85760405162461bcd60e51b8152600401610a6f90612fe3565b624c4b4081101561147b5760405162461bcd60e51b815260206004820152604160248201527f506c6561736520636865636b204d61787478416d6f756e7420616d6f756e742c60448201527f2073686f756c642065786365656420302e3525206f662074686520737570706c6064820152607960f81b608482015260a401610a6f565b61148981633b9aca00613069565b601c5550565b6000546001600160a01b031633146114b95760405162461bcd60e51b8152600401610a6f90612fe3565b600d6114c5838661311c565b11156115135760405162461bcd60e51b815260206004820152601960248201527f627579207461782063616e6e6f742065786365656420313325000000000000006044820152606401610a6f565b601061151f828561311c565b111561156d5760405162461bcd60e51b815260206004820152601a60248201527f73656c6c207461782063616e6e6f7420657863656564203135250000000000006044820152606401610a6f565b601493909355601591909155601855601955565b6001600160a01b03811660009081526007602052604081205460ff16156115be57506001600160a01b031660009081526004602052604090205490565b6001600160a01b038216600090815260036020526040902054610b3c90610d05565b6000546001600160a01b0316331461160a5760405162461bcd60e51b8152600401610a6f90612fe3565b600080546040516001600160a01b039091169060008051602061320d833981519152908390a3600080546001600160a01b0319169055565b6000546001600160a01b0316331461166c5760405162461bcd60e51b8152600401610a6f90612fe3565b600a805461ff0019166101001790556116874261a8c061311c565b600f55600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146116d65760405162461bcd60e51b8152600401610a6f90612fe3565b624c4b4081101561175b5760405162461bcd60e51b815260206004820152604360248201527f506c6561736520636865636b20746865206d617877616c6c657420616d6f756e60448201527f742c2073686f756c642065786365656420302e3525206f662074686520737570606482015262706c7960e81b608482015260a401610a6f565b61176981633b9aca00613069565b601d5550565b606060118054610aa890613018565b6000610b383384610c268560405180606001604052806025815260200161322d602591393360009081526005602090815260408083206001600160a01b038d1684529091529020549190612171565b6001546001600160a01b031633146118335760405162461bcd60e51b815260206004820152602360248201527f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6044820152626f636b60e81b6064820152608401610a6f565b60025442116118845760405162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c20372064617973006044820152606401610a6f565b600154600080546040516001600160a01b03938416939091169160008051602061320d83398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610b38338484611c76565b6000546001600160a01b0316331461190a5760405162461bcd60e51b8152600401610a6f90612fe3565b601b8054911515600160b01b0260ff60b01b19909216919091179055565b6000546001600160a01b031633146119525760405162461bcd60e51b8152600401610a6f90612fe3565b601b8054821515600160a81b0260ff60a81b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599061199f90831515815260200190565b60405180910390a150565b6000546001600160a01b031633146119d45760405162461bcd60e51b8152600401610a6f90612fe3565b60008054600180546001600160a01b03199081166001600160a01b03841617909155169055611a03814261311c565b600255600080546040516001600160a01b039091169060008051602061320d833981519152908390a350565b6000546001600160a01b03163314611a595760405162461bcd60e51b8152600401610a6f90612fe3565b6001600160a01b03166000908152600660205260409020805460ff19169055565b6000546001600160a01b03163314611aa45760405162461bcd60e51b8152600401610a6f90612fe3565b6001600160a01b038116611b095760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a6f565b600080546040516001600160a01b038085169392169160008051602061320d83398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316611bb45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a6f565b6001600160a01b038216611c155760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a6f565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611cda5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a6f565b6001600160a01b038216611d3c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a6f565b60008111611d9e5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610a6f565b6000546001600160a01b03848116911614801590611dca57506000546001600160a01b03838116911614155b15611e3257601c54811115611e325760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610a6f565b7f000000000000000000000000ce8469982b05382031e53775e5c19ab107b277646001600160a01b0316836001600160a01b0316148015611e815750601b546001600160a01b03838116911614155b15611ede57601d5481611e9384611581565b611e9d919061311c565b1115611ede5760405162461bcd60e51b815260206004820152601060248201526f18da1958dac81b585e081dd85b1b195d60821b6044820152606401610a6f565b6000611ee930611581565b9050601c548110611ef95750601c545b601e5481108015908190611f175750601b54600160a01b900460ff16155b8015611f5557507f000000000000000000000000ce8469982b05382031e53775e5c19ab107b277646001600160a01b0316856001600160a01b031614155b8015611f6a5750601b54600160a81b900460ff165b15611f7d57601e549150611f7d82612300565b7f000000000000000000000000ce8469982b05382031e53775e5c19ab107b277646001600160a01b0316856001600160a01b0316148015611ff057507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316846001600160a01b031614155b15612002576014546013556018546017555b7f000000000000000000000000ce8469982b05382031e53775e5c19ab107b277646001600160a01b0316846001600160a01b031614801561207557507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316856001600160a01b031614155b15612112576015546013556019546017557f000000000000000000000000ce8469982b05382031e53775e5c19ab107b277646001600160a01b039081169085161480156120d057506000546001600160a01b03868116911614155b80156120e557506001600160a01b0385163014155b80156120fa5750601b54600160b01b900460ff165b80156121075750600f5442105b156121125760146017555b6001600160a01b03851660009081526006602052604090205460019060ff168061215457506001600160a01b03851660009081526006602052604090205460ff165b1561215d575060005b612169868686846123b8565b505050505050565b600081848411156121955760405162461bcd60e51b8152600401610a6f9190612e4d565b5060006121a284866130d4565b95945050505050565b60008060006121b86125f4565b90925090506121c782826121ce565b9250505090565b6000610d8283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612776565b60008061221d838561311c565b905083811015610d825760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610a6f565b60008060008060008060008060006122868a6127a4565b92509250925060008060006122a48d868661229f6121ab565b6127e6565b919f909e50909c50959a5093985091965092945050505050565b6000610d8283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612171565b601b805460ff60a01b1916600160a01b1790554761231d82612836565b600061232947836122be565b600e546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015612364573d6000803e3d6000fd5b5060408051848152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a15050601b805460ff60a01b1916905550565b600a54610100900460ff166123e1576000546001600160a01b038581169116146123e157600080fd5b6001600160a01b03841660009081526009602052604090205460ff168061242057506001600160a01b03831660009081526009602052604090205460ff165b1561247757600a5460ff166124775760405162461bcd60e51b815260206004820152601b60248201527f626f7473206172656e7420616c6c6f77656420746f20747261646500000000006044820152606401610a6f565b80612484576124846129fd565b6001600160a01b03841660009081526007602052604090205460ff1680156124c557506001600160a01b03831660009081526007602052604090205460ff16155b156124da576124d5848484612a2b565b6125d8565b6001600160a01b03841660009081526007602052604090205460ff1615801561251b57506001600160a01b03831660009081526007602052604090205460ff165b1561252b576124d5848484612b51565b6001600160a01b03841660009081526007602052604090205460ff1615801561256d57506001600160a01b03831660009081526007602052604090205460ff16155b1561257d576124d5848484612bfa565b6001600160a01b03841660009081526007602052604090205460ff1680156125bd57506001600160a01b03831660009081526007602052604090205460ff165b156125cd576124d5848484612c3e565b6125d8848484612bfa565b806125ee576125ee601654601355601a54601755565b50505050565b600c54600b546000918291825b60085481101561274657826003600060088481548110612623576126236130be565b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061268e5750816004600060088481548110612667576126676130be565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156126a457600c54600b54945094505050509091565b6126ea60036000600884815481106126be576126be6130be565b60009182526020808320909101546001600160a01b0316835282019290925260400190205484906122be565b92506127326004600060088481548110612706576127066130be565b60009182526020808320909101546001600160a01b0316835282019290925260400190205483906122be565b91508061273e81613101565b915050612601565b50600b54600c54612756916121ce565b82101561276d57600c54600b549350935050509091565b90939092509050565b600081836127975760405162461bcd60e51b8152600401610a6f9190612e4d565b5060006121a28486613134565b6000806000806127b385612cb1565b905060006127c086612cd3565b905060006127d8826127d289866122be565b906122be565b979296509094509092505050565b60008080806127f58886612cef565b905060006128038887612cef565b905060006128118888612cef565b90506000612823826127d286866122be565b939b939a50919850919650505050505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061286b5761286b6130be565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156128e457600080fd5b505afa1580156128f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061291c9190613156565b8160018151811061292f5761292f6130be565b60200260200101906001600160a01b031690816001600160a01b03168152505061297a307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611b52565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906129cf908590600090869030904290600401613173565b600060405180830381600087803b1580156129e957600080fd5b505af1158015612169573d6000803e3d6000fd5b601354158015612a0d5750601754155b15612a1457565b6013805460165560178054601a5560009182905555565b600080600080600080612a3d8761226f565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612a6f90886122be565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612a9e90876122be565b6001600160a01b03808b1660009081526003602052604080822093909355908a1681522054612acd9086612210565b6001600160a01b038916600090815260036020526040902055612aef81612d6e565b612af98483612df7565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051612b3e91815260200190565b60405180910390a3505050505050505050565b600080600080600080612b638761226f565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612b9590876122be565b6001600160a01b03808b16600090815260036020908152604080832094909455918b16815260049091522054612bcb9084612210565b6001600160a01b038916600090815260046020908152604080832093909355600390522054612acd9086612210565b600080600080600080612c0c8761226f565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612a9e90876122be565b600080600080600080612c508761226f565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612c8290886122be565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612b9590876122be565b6000610b3c6064612ccd60135485612cef90919063ffffffff16565b906121ce565b6000610b3c6064612ccd60175485612cef90919063ffffffff16565b600082612cfe57506000610b3c565b6000612d0a8385613069565b905082612d178583613134565b14610d825760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610a6f565b6000612d786121ab565b90506000612d868383612cef565b30600090815260036020526040902054909150612da39082612210565b3060009081526003602090815260408083209390935560079052205460ff1615612df25730600090815260046020526040902054612de19084612210565b306000908152600460205260409020555b505050565b600c54612e0490836122be565b600c55600d54612e149082612210565b600d555050565b6001600160a01b0381168114610eca57600080fd5b600060208284031215612e4257600080fd5b8135610d8281612e1b565b600060208083528351808285015260005b81811015612e7a57858101830151858201604001528201612e5e565b81811115612e8c576000604083870101525b50601f01601f1916929092016040019392505050565b60008060408385031215612eb557600080fd5b8235612ec081612e1b565b946020939093013593505050565b600060208284031215612ee057600080fd5b5035919050565b600080600060608486031215612efc57600080fd5b8335612f0781612e1b565b92506020840135612f1781612e1b565b929592945050506040919091013590565b8015158114610eca57600080fd5b60008060408385031215612f4957600080fd5b823591506020830135612f5b81612f28565b809150509250929050565b60008060008060808587031215612f7c57600080fd5b5050823594602084013594506040840135936060013592509050565b600060208284031215612faa57600080fd5b8135610d8281612f28565b60008060408385031215612fc857600080fd5b8235612fd381612e1b565b91506020830135612f5b81612e1b565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061302c57607f821691505b6020821081141561304d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561308357613083613053565b500290565b60006020828403121561309a57600080fd5b5051919050565b6000602082840312156130b357600080fd5b8151610d8281612f28565b634e487b7160e01b600052603260045260246000fd5b6000828210156130e6576130e6613053565b500390565b634e487b7160e01b600052603160045260246000fd5b600060001982141561311557613115613053565b5060010190565b6000821982111561312f5761312f613053565b500190565b60008261315157634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561316857600080fd5b8151610d8281612e1b565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156131c35784516001600160a01b03168352938301939183019160010161319e565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63658be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e045524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122053ebc70c466f48eabba1b5b22a4a5bfb3f7cd2e48a53b6dc8233ad72e26e50a864736f6c63430008090033

Deployed Bytecode Sourcemap

25657:20926:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34823:113;;;;;;;;;;-1:-1:-1;34823:113:0;;;;;:::i;:::-;;:::i;:::-;;28553:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29465:161;;;;;;;;;;-1:-1:-1;29465:161:0;;;;;:::i;:::-;;:::i;:::-;;;1489:14:1;;1482:22;1464:41;;1452:2;1437:18;29465:161:0;1324:187:1;27174:35:0;;;;;;;;;;-1:-1:-1;27174:35:0;;;;-1:-1:-1;;;27174:35:0;;;;;;26652:28;;;;;;;;;;;;;;;;;;;1662:25:1;;;1650:2;1635:18;26652:28:0;1516:177:1;30586:87:0;;;;;;;;;;-1:-1:-1;30655:10:0;;30586:87;;26959:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1889:32:1;;;1871:51;;1859:2;1844:18;26959:51:0;1698:230:1;28830:95:0;;;;;;;;;;-1:-1:-1;28910:7:0;;28830:95;;33610:108;;;;;;;;;;-1:-1:-1;33610:108:0;;;;;:::i;:::-;;:::i;34178:163::-;;;;;;;;;;-1:-1:-1;34178:163:0;;;;;:::i;:::-;;:::i;29634:313::-;;;;;;;;;;-1:-1:-1;29634:313:0;;;;;:::i;:::-;;:::i;34629:182::-;;;;;;;;;;-1:-1:-1;34629:182:0;;;;;:::i;:::-;;:::i;31510:253::-;;;;;;;;;;-1:-1:-1;31510:253:0;;;;;:::i;:::-;;:::i;26200:28::-;;;;;;;;;;-1:-1:-1;26200:28:0;;;;;;;;;;;28739:83;;;;;;;;;;-1:-1:-1;28805:9:0;;28739:83;;28805:9;;;;2721:36:1;;2709:2;2694:18;28739:83:0;2579:184:1;34472:145:0;;;;;;;;;;-1:-1:-1;34472:145:0;;;;;:::i;:::-;;:::i;34353:107::-;;;;;;;;;;;;;:::i;32226:479::-;;;;;;;;;;-1:-1:-1;32226:479:0;;;;;:::i;:::-;;:::i;29955:218::-;;;;;;;;;;-1:-1:-1;29955:218:0;;;;;:::i;:::-;;:::i;30681:377::-;;;;;;;;;;-1:-1:-1;30681:377:0;;;;;:::i;:::-;;:::i;26462:26::-;;;;;;;;;;;;;;;;33369:111;;;;;;;;;;-1:-1:-1;33369:111:0;;;;;:::i;:::-;;:::i;31066:436::-;;;;;;;;;;-1:-1:-1;31066:436:0;;;;;:::i;:::-;;:::i;27017:38::-;;;;;;;;;;;;;;;27127:40;;;;;;;;;;-1:-1:-1;27127:40:0;;;;-1:-1:-1;;;27127:40:0;;;;;;31771:447;;;;;;;;;;-1:-1:-1;31771:447:0;;;;;:::i;:::-;;:::i;39307:123::-;;;;;;;;;;-1:-1:-1;39307:123:0;;;;;:::i;:::-;-1:-1:-1;;;;;39395:27:0;39371:4;39395:27;;;:18;:27;;;;;;;;;39307:123;34948:121;;;;;;;;;;-1:-1:-1;34948:121:0;;;;;:::i;:::-;-1:-1:-1;;;;;35040:21:0;35016:4;35040:21;;;:10;:21;;;;;;;;;34948:121;33955:215;;;;;;;;;;-1:-1:-1;33955:215:0;;;;;:::i;:::-;;:::i;35270:431::-;;;;;;;;;;-1:-1:-1;35270:431:0;;;;;:::i;:::-;;:::i;26687:29::-;;;;;;;;;;;;;;;;28933:198;;;;;;;;;;-1:-1:-1;28933:198:0;;;;;:::i;:::-;;:::i;16346:148::-;;;;;;;;;;;;;:::i;27222:48::-;;;;;;;;;;;;;;;;27277:44;;;;;;;;;;;;;;;;30458:120;;;;;;;;;;-1:-1:-1;30458:120:0;;;;;:::i;:::-;-1:-1:-1;;;;;30550:20:0;30526:4;30550:20;;;:11;:20;;;;;;;;;30458:120;35081:178;;;;;;;;;;-1:-1:-1;35081:178:0;;;;;:::i;:::-;;:::i;15703:79::-;;;;;;;;;;-1:-1:-1;15741:7:0;15768:6;-1:-1:-1;;;;;15768:6:0;15703:79;;33733:214;;;;;;;;;;-1:-1:-1;33733:214:0;;;;;:::i;:::-;;:::i;28644:87::-;;;;;;;;;;;;;:::i;30181:269::-;;;;;;;;;;-1:-1:-1;30181:269:0;;;;;:::i;:::-;;:::i;17368:305::-;;;;;;;;;;;;;:::i;29139:167::-;;;;;;;;;;-1:-1:-1;29139:167:0;;;;;:::i;:::-;;:::i;35710:101::-;;;;;;;;;;-1:-1:-1;35710:101:0;;;;;:::i;:::-;;:::i;16901:89::-;;;;;;;;;;-1:-1:-1;16973:9:0;;16901:89;;27062:24;;;;;;;;;;-1:-1:-1;27062:24:0;;;;-1:-1:-1;;;;;27062:24:0;;;26813:34;;;;;;;;;;;;;;;;35823:171;;;;;;;;;;-1:-1:-1;35823:171:0;;;;;:::i;:::-;;:::i;26854:36::-;;;;;;;;;;;;;;;;27332:63;;;;;;;;;;;;;;;;17066:226;;;;;;;;;;-1:-1:-1;17066:226:0;;;;;:::i;:::-;;:::i;29314:143::-;;;;;;;;;;-1:-1:-1;29314:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;29422:18:0;;;29395:7;29422:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;29314:143;33492:110;;;;;;;;;;-1:-1:-1;33492:110:0;;;;;:::i;:::-;;:::i;16649:244::-;;;;;;;;;;-1:-1:-1;16649:244:0;;;;;:::i;:::-;;:::i;34823:113::-;15915:6;;-1:-1:-1;;;;;15915:6:0;8208:10;15915:22;15907:67;;;;-1:-1:-1;;;15907:67:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;34899:21:0::1;34923:5;34899:21:::0;;;:10:::1;:21;::::0;;;;:29;;-1:-1:-1;;34899:29:0::1;::::0;;34823:113::o;28553:83::-;28590:13;28623:5;28616:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28553:83;:::o;29465:161::-;29540:4;29557:39;8208:10;29580:7;29589:6;29557:8;:39::i;:::-;-1:-1:-1;29614:4:0;29465:161;;;;;:::o;33610:108::-;15915:6;;-1:-1:-1;;;;;15915:6:0;8208:10;15915:22;15907:67;;;;-1:-1:-1;;;15907:67:0;;;;;;;:::i;:::-;33684:10:::1;:26:::0;;-1:-1:-1;;;;;;33684:26:0::1;-1:-1:-1::0;;;;;33684:26:0;;;::::1;::::0;;;::::1;::::0;;33610:108::o;34178:163::-;15915:6;;-1:-1:-1;;;;;15915:6:0;8208:10;15915:22;15907:67;;;;-1:-1:-1;;;15907:67:0;;;;;;;:::i;:::-;34306:27:::1;:19:::0;34328:5:::1;34306:27;:::i;:::-;34274:29;:59:::0;-1:-1:-1;34178:163:0:o;29634:313::-;29732:4;29749:36;29759:6;29767:9;29778:6;29749:9;:36::i;:::-;29796:121;29805:6;8208:10;29827:89;29865:6;29827:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29827:19:0;;;;;;:11;:19;;;;;;;;8208:10;29827:33;;;;;;;;;;:37;:89::i;:::-;29796:8;:121::i;:::-;-1:-1:-1;29935:4:0;29634:313;;;;;:::o;34629:182::-;15915:6;;-1:-1:-1;;;;;15915:6:0;8208:10;15915:22;15907:67;;;;-1:-1:-1;;;15907:67:0;;;;;;;:::i;:::-;34723:13:::1;-1:-1:-1::0;;;;;34710:26:0::1;:9;-1:-1:-1::0;;;;;34710:26:0::1;;;34702:62;;;::::0;-1:-1:-1;;;34702:62:0;;5960:2:1;34702:62:0::1;::::0;::::1;5942:21:1::0;5999:2;5979:18;;;5972:30;6038:26;6018:18;;;6011:54;6082:18;;34702:62:0::1;5758:348:1::0;34702:62:0::1;-1:-1:-1::0;;;;;34775:21:0::1;;::::0;;;:10:::1;:21;::::0;;;;:28;;-1:-1:-1;;34775:28:0::1;34799:4;34775:28;::::0;;34629:182::o;31510:253::-;31576:7;31615;;31604;:18;;31596:73;;;;-1:-1:-1;;;31596:73:0;;6313:2:1;31596:73:0;;;6295:21:1;6352:2;6332:18;;;6325:30;6391:34;6371:18;;;6364:62;-1:-1:-1;;;6442:18:1;;;6435:40;6492:19;;31596:73:0;6111:406:1;31596:73:0;31680:19;31703:10;:8;:10::i;:::-;31680:33;-1:-1:-1;31731:24:0;:7;31680:33;31731:11;:24::i;:::-;31724:31;31510:253;-1:-1:-1;;;31510:253:0:o;34472:145::-;34559:10;;34571:37;;-1:-1:-1;;;34571:37:0;;34602:4;34571:37;;;1871:51:1;-1:-1:-1;;;;;34537:21:0;;;;;;34559:10;;;34537:21;;34571:22;;1844:18:1;;34571:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34537:72;;-1:-1:-1;;;;;;34537:72:0;;;;;;;-1:-1:-1;;;;;6903:32:1;;;34537:72:0;;;6885:51:1;6952:18;;;6945:34;6858:18;;34537:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34472:145;:::o;34353:107::-;34409:10;;34401:51;;-1:-1:-1;;;;;34409:10:0;;;;34430:21;34401:51;;;;;34409:10;34401:51;34409:10;34401:51;34430:21;34409:10;34401:51;;;;;;;;;;;;;;;;;;;;;34353:107::o;32226:479::-;15915:6;;-1:-1:-1;;;;;15915:6:0;8208:10;15915:22;15907:67;;;;-1:-1:-1;;;15907:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32308:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;32300:60;;;::::0;-1:-1:-1;;;32300:60:0;;7442:2:1;32300:60:0::1;::::0;::::1;7424:21:1::0;7481:2;7461:18;;;7454:30;7520:29;7500:18;;;7493:57;7567:18;;32300:60:0::1;7240:351:1::0;32300:60:0::1;32376:9;32371:327;32395:9;:16:::0;32391:20;::::1;32371:327;;;32453:7;-1:-1:-1::0;;;;;32437:23:0::1;:9;32447:1;32437:12;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;32437:12:0::1;:23;32433:254;;;32496:9;32506:16:::0;;:20:::1;::::0;32525:1:::1;::::0;32506:20:::1;:::i;:::-;32496:31;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;32481:9:::1;:12:::0;;-1:-1:-1;;;;;32496:31:0;;::::1;::::0;32491:1;;32481:12;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;32481:46:0::1;-1:-1:-1::0;;;;;32481:46:0;;::::1;;::::0;;32546:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;32585:11:::1;:20:::0;;;;:28;;-1:-1:-1;;32585:28:0::1;::::0;;32632:9:::1;:15:::0;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;-1:-1:-1;;32632:15:0;;;;;-1:-1:-1;;;;;;32632:15:0::1;::::0;;;;;34537:72;34472:145;:::o;32433:254::-:1;32413:3:::0;::::1;::::0;::::1;:::i;:::-;;;;32371:327;;29955:218:::0;8208:10;30043:4;30092:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;30092:34:0;;;;;;;;;;30043:4;;30060:83;;30083:7;;30092:50;;30131:10;30092:38;:50::i;30681:377::-;8208:10;30733:14;30782:19;;;:11;:19;;;;;;;;30781:20;30773:77;;;;-1:-1:-1;;;30773:77:0;;8332:2:1;30773:77:0;;;8314:21:1;8371:2;8351:18;;;8344:30;8410:34;8390:18;;;8383:62;-1:-1:-1;;;8461:18:1;;;8454:42;8513:19;;30773:77:0;8130:408:1;30773:77:0;30862:15;30886:19;30897:7;30886:10;:19::i;:::-;-1:-1:-1;;;;;;;;;30934:15:0;;;;;;:7;:15;;;;;;30861:44;;-1:-1:-1;30934:28:0;;:15;-1:-1:-1;30861:44:0;30934:19;:28::i;:::-;-1:-1:-1;;;;;30916:15:0;;;;;;:7;:15;;;;;:46;30983:7;;:20;;30995:7;30983:11;:20::i;:::-;30973:7;:30;31027:10;;:23;;31042:7;31027:14;:23::i;:::-;31014:10;:36;-1:-1:-1;;;30681:377:0:o;33369:111::-;15915:6;;-1:-1:-1;;;;;15915:6:0;8208:10;15915:22;15907:67;;;;-1:-1:-1;;;15907:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33438:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;33438:34:0::1;33468:4;33438:34;::::0;;33369:111::o;31066:436::-;31156:7;31195;;31184;:18;;31176:62;;;;-1:-1:-1;;;31176:62:0;;8745:2:1;31176:62:0;;;8727:21:1;8784:2;8764:18;;;8757:30;8823:33;8803:18;;;8796:61;8874:18;;31176:62:0;8543:355:1;31176:62:0;31254:17;31249:246;;31289:15;31313:19;31324:7;31313:10;:19::i;:::-;-1:-1:-1;31288:44:0;;-1:-1:-1;31347:14:0;;-1:-1:-1;;;;;31347:14:0;31249:246;31396:23;31427:19;31438:7;31427:10;:19::i;:::-;-1:-1:-1;31394:52:0;;-1:-1:-1;31461:22:0;;-1:-1:-1;;;;;31461:22:0;31771:447;15915:6;;-1:-1:-1;;;;;15915:6:0;8208:10;15915:22;15907:67;;;;-1:-1:-1;;;15907:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31968:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;31967:21;31959:61;;;::::0;-1:-1:-1;;;31959:61:0;;7442:2:1;31959:61:0::1;::::0;::::1;7424:21:1::0;7481:2;7461:18;;;7454:30;7520:29;7500:18;;;7493:57;7567:18;;31959:61:0::1;7240:351:1::0;31959:61:0::1;-1:-1:-1::0;;;;;32034:16:0;::::1;32053:1;32034:16:::0;;;:7:::1;:16;::::0;;;;;:20;32031:108:::1;;-1:-1:-1::0;;;;;32110:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;32090:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;32071:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;32031:108:::1;-1:-1:-1::0;;;;;32149:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;32149:27:0::1;32172:4;32149:27:::0;;::::1;::::0;;;32187:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;32187:23:0::1;::::0;;::::1;::::0;;31771:447::o;33955:215::-;15915:6;;-1:-1:-1;;;;;15915:6:0;8208:10;15915:22;15907:67;;;;-1:-1:-1;;;15907:67:0;;;;;;;:::i;:::-;34045:7:::1;34035:6;:17;;34027:95;;;::::0;-1:-1:-1;;;34027:95:0;;9105:2:1;34027:95:0::1;::::0;::::1;9087:21:1::0;9144:2;9124:18;;;9117:30;9183:34;9163:18;;;9156:62;9254:34;9234:18;;;9227:62;-1:-1:-1;;;9305:19:1;;;9298:32;9347:19;;34027:95:0::1;8903:469:1::0;34027:95:0::1;34148:14;:6:::0;34157:5:::1;34148:14;:::i;:::-;34133:12;:29:::0;-1:-1:-1;33955:215:0:o;35270:431::-;15915:6;;-1:-1:-1;;;;;15915:6:0;8208:10;15915:22;15907:67;;;;-1:-1:-1;;;15907:67:0;;;;;;;:::i;:::-;35432:2:::1;35405:23;35415:13:::0;35405:7;:23:::1;:::i;:::-;:29;;35397:67;;;::::0;-1:-1:-1;;;35397:67:0;;9712:2:1;35397:67:0::1;::::0;::::1;9694:21:1::0;9751:2;9731:18;;;9724:30;9790:27;9770:18;;;9763:55;9835:18;;35397:67:0::1;9510:349:1::0;35397:67:0::1;35512:2;35483:25;35494:14:::0;35483:8;:25:::1;:::i;:::-;:31;;35475:70;;;::::0;-1:-1:-1;;;35475:70:0;;10066:2:1;35475:70:0::1;::::0;::::1;10048:21:1::0;10105:2;10085:18;;;10078:30;10144:28;10124:18;;;10117:56;10190:18;;35475:70:0::1;9864:350:1::0;35475:70:0::1;35556:9;:19:::0;;;;35586:10:::1;:21:::0;;;;35618:15:::1;:31:::0;35660:16:::1;:33:::0;35270:431::o;28933:198::-;-1:-1:-1;;;;;29023:20:0;;28999:7;29023:20;;;:11;:20;;;;;;;;29019:49;;;-1:-1:-1;;;;;;29052:16:0;;;;;:7;:16;;;;;;;28933:198::o;29019:49::-;-1:-1:-1;;;;;29106:16:0;;;;;;:7;:16;;;;;;29086:37;;:19;:37::i;16346:148::-;15915:6;;-1:-1:-1;;;;;15915:6:0;8208:10;15915:22;15907:67;;;;-1:-1:-1;;;15907:67:0;;;;;;;:::i;:::-;16453:1:::1;16437:6:::0;;16416:40:::1;::::0;-1:-1:-1;;;;;16437:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;16416:40:0;16453:1;;16416:40:::1;16484:1;16467:19:::0;;-1:-1:-1;;;;;;16467:19:0::1;::::0;;16346:148::o;35081:178::-;15915:6;;-1:-1:-1;;;;;15915:6:0;8208:10;15915:22;15907:67;;;;-1:-1:-1;;;15907:67:0;;;;;;;:::i;:::-;35153:8:::1;:15:::0;;-1:-1:-1;;35153:15:0::1;;;::::0;;35193:26:::1;:15;35211:8;35193:26;:::i;:::-;35179:11;:40:::0;35230:10:::1;:21:::0;;-1:-1:-1;;;;;;35230:21:0::1;-1:-1:-1::0;;;;;35230:21:0;;;::::1;::::0;;;::::1;::::0;;35081:178::o;33733:214::-;15915:6;;-1:-1:-1;;;;;15915:6:0;8208:10;15915:22;15907:67;;;;-1:-1:-1;;;15907:67:0;;;;;;;:::i;:::-;33822:7:::1;33812:6;:17;;33804:97;;;::::0;-1:-1:-1;;;33804:97:0;;10421:2:1;33804:97:0::1;::::0;::::1;10403:21:1::0;10460:2;10440:18;;;10433:30;10499:34;10479:18;;;10472:62;10570:34;10550:18;;;10543:62;-1:-1:-1;;;10621:19:1;;;10614:34;10665:19;;33804:97:0::1;10219:471:1::0;33804:97:0::1;33925:14;:6:::0;33934:5:::1;33925:14;:::i;:::-;33912:10;:27:::0;-1:-1:-1;33733:214:0:o;28644:87::-;28683:13;28716:7;28709:14;;;;;:::i;30181:269::-;30274:4;30291:129;8208:10;30314:7;30323:96;30362:15;30323:96;;;;;;;;;;;;;;;;;8208:10;30323:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;30323:34:0;;;;;;;;;;;;:38;:96::i;17368:305::-;17420:14;;-1:-1:-1;;;;;17420:14:0;17438:10;17420:28;17412:76;;;;-1:-1:-1;;;17412:76:0;;10897:2:1;17412:76:0;;;10879:21:1;10936:2;10916:18;;;10909:30;10975:34;10955:18;;;10948:62;-1:-1:-1;;;11026:18:1;;;11019:33;11069:19;;17412:76:0;10695:399:1;17412:76:0;17525:9;;17507:15;:27;17499:72;;;;-1:-1:-1;;;17499:72:0;;11301:2:1;17499:72:0;;;11283:21:1;11340:2;11320:18;;;11313:30;11379:33;11359:18;;;11352:61;11430:18;;17499:72:0;11099:355:1;17499:72:0;17616:14;;;17608:6;;17587:44;;-1:-1:-1;;;;;17616:14:0;;;;17608:6;;;;-1:-1:-1;;;;;;;;;;;17587:44:0;;17651:14;;;17642:23;;-1:-1:-1;;;;;;17642:23:0;-1:-1:-1;;;;;17651:14:0;;;17642:23;;;;;;17368:305::o;29139:167::-;29217:4;29234:42;8208:10;29258:9;29269:6;29234:9;:42::i;35710:101::-;15915:6;;-1:-1:-1;;;;;15915:6:0;8208:10;15915:22;15907:67;;;;-1:-1:-1;;;15907:67:0;;;;;;;:::i;:::-;35779:16:::1;:24:::0;;;::::1;;-1:-1:-1::0;;;35779:24:0::1;-1:-1:-1::0;;;;35779:24:0;;::::1;::::0;;;::::1;::::0;;35710:101::o;35823:171::-;15915:6;;-1:-1:-1;;;;;15915:6:0;8208:10;15915:22;15907:67;;;;-1:-1:-1;;;15907:67:0;;;;;;;:::i;:::-;35900:21:::1;:32:::0;;;::::1;;-1:-1:-1::0;;;35900:32:0::1;-1:-1:-1::0;;;;35900:32:0;;::::1;;::::0;;35948:38:::1;::::0;::::1;::::0;::::1;::::0;35924:8;1489:14:1;1482:22;1464:41;;1452:2;1437:18;;1324:187;35948:38:0::1;;;;;;;;35823:171:::0;:::o;17066:226::-;15915:6;;-1:-1:-1;;;;;15915:6:0;8208:10;15915:22;15907:67;;;;-1:-1:-1;;;15907:67:0;;;;;;;:::i;:::-;17147:6:::1;::::0;;;17130:23;;-1:-1:-1;;;;;;17130:23:0;;::::1;-1:-1:-1::0;;;;;17147:6:0;::::1;17130:23;::::0;;;17164:19:::1;::::0;;17206:22:::1;17224:4:::0;17206:15:::1;:22;:::i;:::-;17194:9;:34:::0;17281:1:::1;17265:6:::0;;17244:40:::1;::::0;-1:-1:-1;;;;;17265:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;17244:40:0;17281:1;;17244:40:::1;17066:226:::0;:::o;33492:110::-;15915:6;;-1:-1:-1;;;;;15915:6:0;8208:10;15915:22;15907:67;;;;-1:-1:-1;;;15907:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33559:27:0::1;33589:5;33559:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;33559:35:0::1;::::0;;33492:110::o;16649:244::-;15915:6;;-1:-1:-1;;;;;15915:6:0;8208:10;15915:22;15907:67;;;;-1:-1:-1;;;15907:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16738:22:0;::::1;16730:73;;;::::0;-1:-1:-1;;;16730:73:0;;11661:2:1;16730:73:0::1;::::0;::::1;11643:21:1::0;11700:2;11680:18;;;11673:30;11739:34;11719:18;;;11712:62;-1:-1:-1;;;11790:18:1;;;11783:36;11836:19;;16730:73:0::1;11459:402:1::0;16730:73:0::1;16840:6;::::0;;16819:38:::1;::::0;-1:-1:-1;;;;;16819:38:0;;::::1;::::0;16840:6;::::1;::::0;-1:-1:-1;;;;;;;;;;;16819:38:0;::::1;16868:6;:17:::0;;-1:-1:-1;;;;;;16868:17:0::1;-1:-1:-1::0;;;;;16868:17:0;;;::::1;::::0;;;::::1;::::0;;16649:244::o;39438:337::-;-1:-1:-1;;;;;39531:19:0;;39523:68;;;;-1:-1:-1;;;39523:68:0;;12068:2:1;39523:68:0;;;12050:21:1;12107:2;12087:18;;;12080:30;12146:34;12126:18;;;12119:62;-1:-1:-1;;;12197:18:1;;;12190:34;12241:19;;39523:68:0;11866:400:1;39523:68:0;-1:-1:-1;;;;;39610:21:0;;39602:68;;;;-1:-1:-1;;;39602:68:0;;12473:2:1;39602:68:0;;;12455:21:1;12512:2;12492:18;;;12485:30;12551:34;12531:18;;;12524:62;-1:-1:-1;;;12602:18:1;;;12595:32;12644:19;;39602:68:0;12271:398:1;39602:68:0;-1:-1:-1;;;;;39683:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;39735:32;;1662:25:1;;;39735:32:0;;1635:18:1;39735:32:0;;;;;;;39438:337;;;:::o;39783:2222::-;-1:-1:-1;;;;;39905:18:0;;39897:68;;;;-1:-1:-1;;;39897:68:0;;12876:2:1;39897:68:0;;;12858:21:1;12915:2;12895:18;;;12888:30;12954:34;12934:18;;;12927:62;-1:-1:-1;;;13005:18:1;;;12998:35;13050:19;;39897:68:0;12674:401:1;39897:68:0;-1:-1:-1;;;;;39984:16:0;;39976:64;;;;-1:-1:-1;;;39976:64:0;;13282:2:1;39976:64:0;;;13264:21:1;13321:2;13301:18;;;13294:30;13360:34;13340:18;;;13333:62;-1:-1:-1;;;13411:18:1;;;13404:33;13454:19;;39976:64:0;13080:399:1;39976:64:0;40068:1;40059:6;:10;40051:64;;;;-1:-1:-1;;;40051:64:0;;13686:2:1;40051:64:0;;;13668:21:1;13725:2;13705:18;;;13698:30;13764:34;13744:18;;;13737:62;-1:-1:-1;;;13815:18:1;;;13808:39;13864:19;;40051:64:0;13484:405:1;40051:64:0;15741:7;15768:6;-1:-1:-1;;;;;40129:15:0;;;15768:6;;40129:15;;;;:32;;-1:-1:-1;15741:7:0;15768:6;-1:-1:-1;;;;;40148:13:0;;;15768:6;;40148:13;;40129:32;40126:125;;;40194:12;;40184:6;:22;;40176:75;;;;-1:-1:-1;;;40176:75:0;;14096:2:1;40176:75:0;;;14078:21:1;14135:2;14115:18;;;14108:30;14174:34;14154:18;;;14147:62;-1:-1:-1;;;14225:18:1;;;14218:38;14273:19;;40176:75:0;13894:404:1;40176:75:0;40283:13;-1:-1:-1;;;;;40275:21:0;:4;-1:-1:-1;;;;;40275:21:0;;:40;;;;-1:-1:-1;40306:9:0;;-1:-1:-1;;;;;40300:15:0;;;40306:9;;40300:15;;40275:40;40272:137;;;40366:10;;40356:6;40340:13;40350:2;40340:9;:13::i;:::-;:22;;;;:::i;:::-;:36;;40332:65;;;;-1:-1:-1;;;40332:65:0;;14505:2:1;40332:65:0;;;14487:21:1;14544:2;14524:18;;;14517:30;-1:-1:-1;;;14563:18:1;;;14556:46;14619:18;;40332:65:0;14303:340:1;40332:65:0;40430:28;40461:24;40479:4;40461:9;:24::i;:::-;40430:55;;40533:12;;40509:20;:36;40506:112;;-1:-1:-1;40594:12:0;;40506:112;40689:29;;40665:53;;;;;;;40747;;-1:-1:-1;40784:16:0;;-1:-1:-1;;;40784:16:0;;;;40783:17;40747:53;:91;;;;;40825:13;-1:-1:-1;;;;;40817:21:0;:4;-1:-1:-1;;;;;40817:21:0;;;40747:91;:129;;;;-1:-1:-1;40855:21:0;;-1:-1:-1;;;40855:21:0;;;;40747:129;40729:320;;;40926:29;;40903:52;;40999:36;41014:20;40999:14;:36::i;:::-;41080:13;-1:-1:-1;;;;;41072:21:0;:4;-1:-1:-1;;;;;41072:21:0;;:55;;;;;41111:15;-1:-1:-1;;;;;41097:30:0;:2;-1:-1:-1;;;;;41097:30:0;;;41072:55;41069:152;;;41154:9;;41144:7;:19;41194:15;;41178:13;:31;41069:152;41251:13;-1:-1:-1;;;;;41245:19:0;:2;-1:-1:-1;;;;;41245:19:0;;:55;;;;;41284:15;-1:-1:-1;;;;;41268:32:0;:4;-1:-1:-1;;;;;41268:32:0;;;41245:55;41241:339;;;41327:10;;41317:7;:20;41368:16;;41352:13;:32;41411:13;-1:-1:-1;;;;;41405:19:0;;;;;;;:38;;;;-1:-1:-1;15741:7:0;15768:6;-1:-1:-1;;;;;41428:15:0;;;15768:6;;41428:15;;41405:38;:63;;;;-1:-1:-1;;;;;;41447:21:0;;41463:4;41447:21;;41405:63;:83;;;;-1:-1:-1;41472:16:0;;-1:-1:-1;;;41472:16:0;;;;41405:83;:116;;;;;41510:11;;41492:15;:29;41405:116;41401:168;;;41555:2;41539:13;:18;41401:168;-1:-1:-1;;;;;41780:24:0;;41653:12;41780:24;;;:18;:24;;;;;;41668:4;;41780:24;;;:50;;-1:-1:-1;;;;;;41808:22:0;;;;;;:18;:22;;;;;;;;41780:50;41777:96;;;-1:-1:-1;41856:5:0;41777:96;41959:38;41974:4;41979:2;41982:6;41989:7;41959:14;:38::i;:::-;39886:2119;;;39783:2222;;;:::o;4459:192::-;4545:7;4581:12;4573:6;;;;4565:29;;;;-1:-1:-1;;;4565:29:0;;;;;;;;:::i;:::-;-1:-1:-1;4605:9:0;4617:5;4621:1;4617;:5;:::i;:::-;4605:17;4459:192;-1:-1:-1;;;;;4459:192:0:o;37457:163::-;37498:7;37519:15;37536;37555:19;:17;:19::i;:::-;37518:56;;-1:-1:-1;37518:56:0;-1:-1:-1;37592:20:0;37518:56;;37592:11;:20::i;:::-;37585:27;;;;37457:163;:::o;5857:132::-;5915:7;5942:39;5946:1;5949;5942:39;;;;;;;;;;;;;;;;;:3;:39::i;3556:181::-;3614:7;;3646:5;3650:1;3646;:5;:::i;:::-;3634:17;;3675:1;3670;:6;;3662:46;;;;-1:-1:-1;;;3662:46:0;;14850:2:1;3662:46:0;;;14832:21:1;14889:2;14869:18;;;14862:30;14928:29;14908:18;;;14901:57;14975:18;;3662:46:0;14648:351:1;36255:419:0;36314:7;36323;36332;36341;36350;36359;36380:23;36405:12;36419:18;36441:20;36453:7;36441:11;:20::i;:::-;36379:82;;;;;;36473:15;36490:23;36515:12;36531:50;36543:7;36552:4;36558:10;36570;:8;:10::i;:::-;36531:11;:50::i;:::-;36472:109;;;;-1:-1:-1;36472:109:0;;-1:-1:-1;36632:15:0;;-1:-1:-1;36649:4:0;;-1:-1:-1;36655:10:0;;-1:-1:-1;36255:419:0;;-1:-1:-1;;;;;36255:419:0:o;4020:136::-;4078:7;4105:43;4109:1;4112;4105:43;;;;;;;;;;;;;;;;;:3;:43::i;42013:574::-;27702:16;:23;;-1:-1:-1;;;;27702:23:0;-1:-1:-1;;;27702:23:0;;;42133:21:::1;42199:38;42216:20:::0;42199:16:::1;:38::i;:::-;42368:18;42389:41;:21;42415:14:::0;42389:25:::1;:41::i;:::-;42451:10;::::0;42443:40:::1;::::0;42368:62;;-1:-1:-1;;;;;;42451:10:0::1;::::0;42443:40;::::1;;;::::0;42368:62;;42451:10:::1;42443:40:::0;42451:10;42443:40;42368:62;42451:10;42443:40;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;42509:70:0::1;::::0;;15206:25:1;;;15262:2;15247:18;;15240:34;;;15290:18;;;15283:34;;;42509:70:0::1;::::0;15194:2:1;15179:18;42509:70:0::1;;;;;;;-1:-1:-1::0;;27748:16:0;:24;;-1:-1:-1;;;;27748:24:0;;;-1:-1:-1;42013:574:0:o;43786:1114::-;43897:8;;;;;;;43893:114;;15741:7;15768:6;-1:-1:-1;;;;;43929:17:0;;;15768:6;;43929:17;43921:26;;;;;;-1:-1:-1;;;;;44030:18:0;;;;;;:10;:18;;;;;;;;;:43;;-1:-1:-1;;;;;;44052:21:0;;;;;;:10;:21;;;;;;;;44030:43;44027:126;;;44097:12;;;;44089:52;;;;-1:-1:-1;;;44089:52:0;;15530:2:1;44089:52:0;;;15512:21:1;15569:2;15549:18;;;15542:30;15608:29;15588:18;;;15581:57;15655:18;;44089:52:0;15328:351:1;44089:52:0;44177:7;44173:40;;44199:14;:12;:14::i;:::-;-1:-1:-1;;;;;44238:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;44262:22:0;;;;;;:11;:22;;;;;;;;44261:23;44238:46;44234:597;;;44301:48;44323:6;44331:9;44342:6;44301:21;:48::i;:::-;44234:597;;;-1:-1:-1;;;;;44372:19:0;;;;;;:11;:19;;;;;;;;44371:20;:46;;;;-1:-1:-1;;;;;;44395:22:0;;;;;;:11;:22;;;;;;;;44371:46;44367:464;;;44434:46;44454:6;44462:9;44473:6;44434:19;:46::i;44367:464::-;-1:-1:-1;;;;;44503:19:0;;;;;;:11;:19;;;;;;;;44502:20;:47;;;;-1:-1:-1;;;;;;44527:22:0;;;;;;:11;:22;;;;;;;;44526:23;44502:47;44498:333;;;44566:44;44584:6;44592:9;44603:6;44566:17;:44::i;44498:333::-;-1:-1:-1;;;;;44632:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;44655:22:0;;;;;;:11;:22;;;;;;;;44632:45;44628:203;;;44694:48;44716:6;44724:9;44735:6;44694:21;:48::i;44628:203::-;44775:44;44793:6;44801:9;44812:6;44775:17;:44::i;:::-;44855:7;44851:41;;44877:15;39224;;39214:7;:25;39266:21;;39250:13;:37;39170:125;44877:15;43786:1114;;;;:::o;37628:561::-;37725:7;;37761;;37678;;;;;37785:289;37809:9;:16;37805:20;;37785:289;;;37875:7;37851;:21;37859:9;37869:1;37859:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;37859:12:0;37851:21;;;;;;;;;;;;;:31;;:66;;;37910:7;37886;:21;37894:9;37904:1;37894:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;37894:12:0;37886:21;;;;;;;;;;;;;:31;37851:66;37847:97;;;37927:7;;37936;;37919:25;;;;;;;37628:561;;:::o;37847:97::-;37969:34;37981:7;:21;37989:9;37999:1;37989:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;37989:12:0;37981:21;;;;;;;;;;;;;37969:7;;:11;:34::i;:::-;37959:44;;38028:34;38040:7;:21;38048:9;38058:1;38048:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;38048:12:0;38040:21;;;;;;;;;;;;;38028:7;;:11;:34::i;:::-;38018:44;-1:-1:-1;37827:3:0;;;;:::i;:::-;;;;37785:289;;;-1:-1:-1;38110:7:0;;38098;;:20;;:11;:20::i;:::-;38088:7;:30;38084:61;;;38128:7;;38137;;38120:25;;;;;;37628:561;;:::o;38084:61::-;38164:7;;38173;;-1:-1:-1;37628:561:0;-1:-1:-1;37628:561:0:o;6485:278::-;6571:7;6606:12;6599:5;6591:28;;;;-1:-1:-1;;;6591:28:0;;;;;;;;:::i;:::-;-1:-1:-1;6630:9:0;6642:5;6646:1;6642;:5;:::i;36682:330::-;36742:7;36751;36760;36780:12;36795:24;36811:7;36795:15;:24::i;:::-;36780:39;;36830:18;36851:30;36873:7;36851:21;:30::i;:::-;36830:51;-1:-1:-1;36892:23:0;36918:33;36830:51;36918:17;:7;36930:4;36918:11;:17::i;:::-;:21;;:33::i;:::-;36892:59;36987:4;;-1:-1:-1;36993:10:0;;-1:-1:-1;36682:330:0;;-1:-1:-1;;;36682:330:0:o;37020:429::-;37135:7;;;;37191:24;:7;37203:11;37191;:24::i;:::-;37173:42;-1:-1:-1;37226:12:0;37241:21;:4;37250:11;37241:8;:21::i;:::-;37226:36;-1:-1:-1;37273:18:0;37294:27;:10;37309:11;37294:14;:27::i;:::-;37273:48;-1:-1:-1;37332:23:0;37358:33;37273:48;37358:17;:7;37370:4;37358:11;:17::i;:33::-;37410:7;;;;-1:-1:-1;37436:4:0;;-1:-1:-1;37020:429:0;;-1:-1:-1;;;;;;;37020:429:0:o;42595:589::-;42745:16;;;42759:1;42745:16;;;;;;;;42721:21;;42745:16;;;;;;;;;;-1:-1:-1;42745:16:0;42721:40;;42790:4;42772;42777:1;42772:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;42772:23:0;;;-1:-1:-1;;;;;42772:23:0;;;;;42816:15;-1:-1:-1;;;;;42816:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42806:4;42811:1;42806:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;42806:32:0;;;-1:-1:-1;;;;;42806:32:0;;;;;42851:62;42868:4;42883:15;42901:11;42851:8;:62::i;:::-;42952:224;;-1:-1:-1;;;42952:224:0;;-1:-1:-1;;;;;42952:15:0;:66;;;;:224;;43033:11;;43059:1;;43103:4;;43130;;43150:15;;42952:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38908:250;38954:7;;:12;:34;;;;-1:-1:-1;38970:13:0;;:18;38954:34;38951:46;;;38908:250::o;38951:46::-;39035:7;;;39017:15;:25;39077:13;;;39053:21;:37;-1:-1:-1;39111:11:0;;;;39133:17;38908:250::o;46012:566::-;46115:15;46132:23;46157:12;46171:23;46196:12;46210:18;46232:19;46243:7;46232:10;:19::i;:::-;-1:-1:-1;;;;;46280:15:0;;;;;;:7;:15;;;;;;46114:137;;-1:-1:-1;46114:137:0;;-1:-1:-1;46114:137:0;;-1:-1:-1;46114:137:0;-1:-1:-1;46114:137:0;-1:-1:-1;46114:137:0;-1:-1:-1;46280:28:0;;46300:7;46280:19;:28::i;:::-;-1:-1:-1;;;;;46262:15:0;;;;;;:7;:15;;;;;;;;:46;;;;46337:7;:15;;;;:28;;46357:7;46337:19;:28::i;:::-;-1:-1:-1;;;;;46319:15:0;;;;;;;:7;:15;;;;;;:46;;;;46397:18;;;;;;;:39;;46420:15;46397:22;:39::i;:::-;-1:-1:-1;;;;;46376:18:0;;;;;;:7;:18;;;;;:60;46450:26;46465:10;46450:14;:26::i;:::-;46487:23;46499:4;46505;46487:11;:23::i;:::-;46543:9;-1:-1:-1;;;;;46526:44:0;46535:6;-1:-1:-1;;;;;46526:44:0;;46554:15;46526:44;;;;1662:25:1;;1650:2;1635:18;;1516:177;46526:44:0;;;;;;;;46103:475;;;;;;46012:566;;;:::o;45418:586::-;45519:15;45536:23;45561:12;45575:23;45600:12;45614:18;45636:19;45647:7;45636:10;:19::i;:::-;-1:-1:-1;;;;;45684:15:0;;;;;;:7;:15;;;;;;45518:137;;-1:-1:-1;45518:137:0;;-1:-1:-1;45518:137:0;;-1:-1:-1;45518:137:0;-1:-1:-1;45518:137:0;-1:-1:-1;45518:137:0;-1:-1:-1;45684:28:0;;45518:137;45684:19;:28::i;:::-;-1:-1:-1;;;;;45666:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;45744:18;;;;;:7;:18;;;;;:39;;45767:15;45744:22;:39::i;:::-;-1:-1:-1;;;;;45723:18:0;;;;;;:7;:18;;;;;;;;:60;;;;45815:7;:18;;;;:39;;45838:15;45815:22;:39::i;44908:502::-;45007:15;45024:23;45049:12;45063:23;45088:12;45102:18;45124:19;45135:7;45124:10;:19::i;:::-;-1:-1:-1;;;;;45172:15:0;;;;;;:7;:15;;;;;;45006:137;;-1:-1:-1;45006:137:0;;-1:-1:-1;45006:137:0;;-1:-1:-1;45006:137:0;-1:-1:-1;45006:137:0;-1:-1:-1;45006:137:0;-1:-1:-1;45172:28:0;;45006:137;45172:19;:28::i;32715:642::-;32818:15;32835:23;32860:12;32874:23;32899:12;32913:18;32935:19;32946:7;32935:10;:19::i;:::-;-1:-1:-1;;;;;32983:15:0;;;;;;:7;:15;;;;;;32817:137;;-1:-1:-1;32817:137:0;;-1:-1:-1;32817:137:0;;-1:-1:-1;32817:137:0;-1:-1:-1;32817:137:0;-1:-1:-1;32817:137:0;-1:-1:-1;32983:28:0;;33003:7;32983:19;:28::i;:::-;-1:-1:-1;;;;;32965:15:0;;;;;;:7;:15;;;;;;;;:46;;;;33040:7;:15;;;;:28;;33060:7;33040:19;:28::i;38568:154::-;38632:7;38659:55;38698:5;38659:20;38671:7;;38659;:11;;:20;;;;:::i;:::-;:24;;:55::i;38730:166::-;38800:7;38827:61;38872:5;38827:26;38839:13;;38827:7;:11;;:26;;;;:::i;4910:471::-;4968:7;5213:6;5209:47;;-1:-1:-1;5243:1:0;5236:8;;5209:47;5268:9;5280:5;5284:1;5280;:5;:::i;:::-;5268:17;-1:-1:-1;5313:1:0;5304:5;5308:1;5268:17;5304:5;:::i;:::-;:10;5296:56;;;;-1:-1:-1;;;5296:56:0;;17481:2:1;5296:56:0;;;17463:21:1;17520:2;17500:18;;;17493:30;17559:34;17539:18;;;17532:62;-1:-1:-1;;;17610:18:1;;;17603:31;17651:19;;5296:56:0;17279:397:1;38201:355:0;38264:19;38287:10;:8;:10::i;:::-;38264:33;-1:-1:-1;38308:18:0;38329:27;:10;38264:33;38329:14;:27::i;:::-;38408:4;38392:22;;;;:7;:22;;;;;;38308:48;;-1:-1:-1;38392:38:0;;38308:48;38392:26;:38::i;:::-;38383:4;38367:22;;;;:7;:22;;;;;;;;:63;;;;38444:11;:26;;;;;;38441:107;;;38526:4;38510:22;;;;:7;:22;;;;;;:38;;38537:10;38510:26;:38::i;:::-;38501:4;38485:22;;;;:7;:22;;;;;:63;38441:107;38253:303;;38201:355;:::o;36100:147::-;36178:7;;:17;;36190:4;36178:11;:17::i;:::-;36168:7;:27;36219:10;;:20;;36234:4;36219:14;:20::i;:::-;36206:10;:33;-1:-1:-1;;36100:147:0:o;14:131:1:-;-1:-1:-1;;;;;89:31:1;;79:42;;69:70;;135:1;132;125:12;150:247;209:6;262:2;250:9;241:7;237:23;233:32;230:52;;;278:1;275;268:12;230:52;317:9;304:23;336:31;361:5;336:31;:::i;402:597::-;514:4;543:2;572;561:9;554:21;604:6;598:13;647:6;642:2;631:9;627:18;620:34;672:1;682:140;696:6;693:1;690:13;682:140;;;791:14;;;787:23;;781:30;757:17;;;776:2;753:26;746:66;711:10;;682:140;;;840:6;837:1;834:13;831:91;;;910:1;905:2;896:6;885:9;881:22;877:31;870:42;831:91;-1:-1:-1;983:2:1;962:15;-1:-1:-1;;958:29:1;943:45;;;;990:2;939:54;;402:597;-1:-1:-1;;;402:597:1:o;1004:315::-;1072:6;1080;1133:2;1121:9;1112:7;1108:23;1104:32;1101:52;;;1149:1;1146;1139:12;1101:52;1188:9;1175:23;1207:31;1232:5;1207:31;:::i;:::-;1257:5;1309:2;1294:18;;;;1281:32;;-1:-1:-1;;;1004:315:1:o;1933:180::-;1992:6;2045:2;2033:9;2024:7;2020:23;2016:32;2013:52;;;2061:1;2058;2051:12;2013:52;-1:-1:-1;2084:23:1;;1933:180;-1:-1:-1;1933:180:1:o;2118:456::-;2195:6;2203;2211;2264:2;2252:9;2243:7;2239:23;2235:32;2232:52;;;2280:1;2277;2270:12;2232:52;2319:9;2306:23;2338:31;2363:5;2338:31;:::i;:::-;2388:5;-1:-1:-1;2445:2:1;2430:18;;2417:32;2458:33;2417:32;2458:33;:::i;:::-;2118:456;;2510:7;;-1:-1:-1;;;2564:2:1;2549:18;;;;2536:32;;2118:456::o;3033:118::-;3119:5;3112:13;3105:21;3098:5;3095:32;3085:60;;3141:1;3138;3131:12;3156:309;3221:6;3229;3282:2;3270:9;3261:7;3257:23;3253:32;3250:52;;;3298:1;3295;3288:12;3250:52;3334:9;3321:23;3311:33;;3394:2;3383:9;3379:18;3366:32;3407:28;3429:5;3407:28;:::i;:::-;3454:5;3444:15;;;3156:309;;;;;:::o;3678:385::-;3764:6;3772;3780;3788;3841:3;3829:9;3820:7;3816:23;3812:33;3809:53;;;3858:1;3855;3848:12;3809:53;-1:-1:-1;;3881:23:1;;;3951:2;3936:18;;3923:32;;-1:-1:-1;4002:2:1;3987:18;;3974:32;;4053:2;4038:18;4025:32;;-1:-1:-1;3678:385:1;-1:-1:-1;3678:385:1:o;4068:241::-;4124:6;4177:2;4165:9;4156:7;4152:23;4148:32;4145:52;;;4193:1;4190;4183:12;4145:52;4232:9;4219:23;4251:28;4273:5;4251:28;:::i;4314:388::-;4382:6;4390;4443:2;4431:9;4422:7;4418:23;4414:32;4411:52;;;4459:1;4456;4449:12;4411:52;4498:9;4485:23;4517:31;4542:5;4517:31;:::i;:::-;4567:5;-1:-1:-1;4624:2:1;4609:18;;4596:32;4637:33;4596:32;4637:33;:::i;4707:356::-;4909:2;4891:21;;;4928:18;;;4921:30;4987:34;4982:2;4967:18;;4960:62;5054:2;5039:18;;4707:356::o;5068:380::-;5147:1;5143:12;;;;5190;;;5211:61;;5265:4;5257:6;5253:17;5243:27;;5211:61;5318:2;5310:6;5307:14;5287:18;5284:38;5281:161;;;5364:10;5359:3;5355:20;5352:1;5345:31;5399:4;5396:1;5389:15;5427:4;5424:1;5417:15;5281:161;;5068:380;;;:::o;5453:127::-;5514:10;5509:3;5505:20;5502:1;5495:31;5545:4;5542:1;5535:15;5569:4;5566:1;5559:15;5585:168;5625:7;5691:1;5687;5683:6;5679:14;5676:1;5673:21;5668:1;5661:9;5654:17;5650:45;5647:71;;;5698:18;;:::i;:::-;-1:-1:-1;5738:9:1;;5585:168::o;6522:184::-;6592:6;6645:2;6633:9;6624:7;6620:23;6616:32;6613:52;;;6661:1;6658;6651:12;6613:52;-1:-1:-1;6684:16:1;;6522:184;-1:-1:-1;6522:184:1:o;6990:245::-;7057:6;7110:2;7098:9;7089:7;7085:23;7081:32;7078:52;;;7126:1;7123;7116:12;7078:52;7158:9;7152:16;7177:28;7199:5;7177:28;:::i;7596:127::-;7657:10;7652:3;7648:20;7645:1;7638:31;7688:4;7685:1;7678:15;7712:4;7709:1;7702:15;7728:125;7768:4;7796:1;7793;7790:8;7787:34;;;7801:18;;:::i;:::-;-1:-1:-1;7838:9:1;;7728:125::o;7858:127::-;7919:10;7914:3;7910:20;7907:1;7900:31;7950:4;7947:1;7940:15;7974:4;7971:1;7964:15;7990:135;8029:3;-1:-1:-1;;8050:17:1;;8047:43;;;8070:18;;:::i;:::-;-1:-1:-1;8117:1:1;8106:13;;7990:135::o;9377:128::-;9417:3;9448:1;9444:6;9441:1;9438:13;9435:39;;;9454:18;;:::i;:::-;-1:-1:-1;9490:9:1;;9377:128::o;15684:217::-;15724:1;15750;15740:132;;15794:10;15789:3;15785:20;15782:1;15775:31;15829:4;15826:1;15819:15;15857:4;15854:1;15847:15;15740:132;-1:-1:-1;15886:9:1;;15684:217::o;16038:251::-;16108:6;16161:2;16149:9;16140:7;16136:23;16132:32;16129:52;;;16177:1;16174;16167:12;16129:52;16209:9;16203:16;16228:31;16253:5;16228:31;:::i;16294:980::-;16556:4;16604:3;16593:9;16589:19;16635:6;16624:9;16617:25;16661:2;16699:6;16694:2;16683:9;16679:18;16672:34;16742:3;16737:2;16726:9;16722:18;16715:31;16766:6;16801;16795:13;16832:6;16824;16817:22;16870:3;16859:9;16855:19;16848:26;;16909:2;16901:6;16897:15;16883:29;;16930:1;16940:195;16954:6;16951:1;16948:13;16940:195;;;17019:13;;-1:-1:-1;;;;;17015:39:1;17003:52;;17110:15;;;;17075:12;;;;17051:1;16969:9;16940:195;;;-1:-1:-1;;;;;;;17191:32:1;;;;17186:2;17171:18;;17164:60;-1:-1:-1;;;17255:3:1;17240:19;17233:35;17152:3;16294:980;-1:-1:-1;;;16294:980:1:o

Swarm Source

ipfs://53ebc70c466f48eabba1b5b22a4a5bfb3f7cd2e48a53b6dc8233ad72e26e50a8
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.