ETH Price: $3,354.09 (-0.83%)
Gas: 9 Gwei

Token

Volt Inu (VOLT)
 

Overview

Max Total Supply

69,000,000,000,000 VOLT

Holders

17,310 ( -0.006%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
331,002,983.827695266 VOLT

Value
$0.00
0x71fea781d256626ebc1a5096de69ee4f2230ddac
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:
VOLT

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-08
*/

/*
 
 VOLT INU - The supercharged Inu
 
 https://t.me/VoltInuOfficial
 
*/

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


}


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

interface IAirdrop {
    function airdrop(address recipient, uint256 amount) external;
}

contract VOLT 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 constant botscantrade = false;
    
    bool public canTrade = false;
   
    uint256 private constant MAX = ~uint256(0);
    uint256 private constant _tTotal = 69000000000000 * 10**9;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;
    address public marketingWallet;
	address public devWallet;
	address public burningAddress;	
	address private migrationWallet;	

    string private constant _name = "Volt Inu";
    string private constant _symbol = "VOLT";
    uint8 private constant _decimals = 9;
    
    uint256 public _taxFee = 1;
    uint256 private _previousTaxFee = _taxFee;
    
    uint256 public _liquidityFee = 12;
    uint256 private _previousLiquidityFee = _liquidityFee;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    
    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;
    
    uint256 public _maxTxAmount = 69000000000000 * 10**9;
    uint256 public numTokensSellToAddToLiquidity = 6900000000 * 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;
        
        //exclude owner and this contract from fee
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        
        emit Transfer(address(0), _msgSender(), _tTotal);
    }

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

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

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

    function totalSupply() external 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) external override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

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

    function transferFrom(address sender, address recipient, uint256 amount) external 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) external virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

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

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

    function totalFees() external view returns (uint256) {
        return _tFeeTotal;
    }
    
    function airdrop(address recipient, uint256 amount) external onlyOwner() {
        removeAllFee();
        _transfer(_msgSender(), recipient, amount * 10**9);
        restoreAllFee();
    }
    
    function airdropInternal(address recipient, uint256 amount) internal {
        removeAllFee();
        _transfer(_msgSender(), recipient, amount);
        restoreAllFee();
    }
    
    function airdropArray(address[] calldata newholders, uint256[] calldata amounts) external onlyOwner(){
        uint256 iterator = 0;
        require(newholders.length == amounts.length, "must be the same length");
        while(iterator < newholders.length){
            airdropInternal(newholders[iterator], amounts[iterator] * 10**9);
            iterator += 1;
        }
    }

    function deliver(uint256 tAmount) external {
        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) external 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) external 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) external onlyOwner {
        _isExcludedFromFee[account] = true;
    }
    
    function includeInFee(address account) external onlyOwner {
        _isExcludedFromFee[account] = false;
    }

    function setMarketingWallet(address walletAddress) external onlyOwner {
        marketingWallet = walletAddress;
    }

    function setDevWallet(address walletAddress) external onlyOwner {
        devWallet = walletAddress;
    }

    function setBurningAddress(address walletAddress) external onlyOwner {
        burningAddress = walletAddress;
    }


    function setSwapThresholdAmount(uint256 SwapThresholdAmount) external onlyOwner() {
        require(SwapThresholdAmount > 69000000, "Swap Threshold Amount cannot be less than 69 Million");
        numTokensSellToAddToLiquidity = SwapThresholdAmount * 10**9;
    }
    
    function claimTokens () external onlyOwner {
        // make sure we capture all BNB that may or may not be sent to this contract
        payable(devWallet).transfer(address(this).balance);
    }
    
    function claimOtherTokens(IERC20 tokenAddress, address walletaddress) external onlyOwner() {
        tokenAddress.transfer(walletaddress, tokenAddress.balanceOf(address(this)));
    }
    
    function clearStuckBalance (address payable walletaddress) external onlyOwner() {
        walletaddress.transfer(address(this).balance);
    }
    
    function addBotWallet(address botwallet) external onlyOwner() {
        botWallets[botwallet] = true;
    }
    
    function removeBotWallet(address botwallet) external onlyOwner() {
        botWallets[botwallet] = false;
    }
    
    function getBotWalletStatus(address botwallet) external view returns (bool) {
        return botWallets[botwallet];
    }
    
    function allowtrading()external onlyOwner() {
        canTrade = true;
    }

    function setMigrationWallet(address walletAddress) external onlyOwner {
        migrationWallet = walletAddress;
    }

    function setSwapAndLiquifyEnabled(bool _enabled) external 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) external view returns(bool) {
        return _isExcludedFromFee[account];
    }

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

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

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

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


    function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        // split the contract balance into liquidity, marketing, burn and treasury quotas
		
        uint256 convertQuota = contractTokenBalance.mul(3).div(4);
		uint256 burnQuota = contractTokenBalance.div(6);
        uint256 liquHalf = contractTokenBalance.sub(convertQuota).sub(burnQuota);

		// burning tokens
        _transferStandard(address(this), burningAddress, burnQuota);

        		
        // swap tokens for ETH
		
        swapTokensForEth(convertQuota); 

        // how much ETH did we just swap into?
        uint256 newBalance = address(this).balance;
        uint256 marketingshare = newBalance.mul(4).div(9);
        payable(marketingWallet).transfer(marketingshare);
		uint256 afterMarketBalance = newBalance.sub(marketingshare);
		uint256 treasshare = afterMarketBalance.mul(4).div(5);
		payable(devWallet).transfer(treasshare);
		uint256 afterDevBalance = afterMarketBalance.sub(treasshare);
		
        
        // add liquidity to uniswap
        addLiquidity(liquHalf, afterDevBalance);
        
        emit SwapAndLiquify(liquHalf, afterDevBalance, liquHalf);
    }

    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() || sender == migrationWallet); // 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":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"botwallet","type":"address"}],"name":"addBotWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"newholders","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"airdropArray","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":[],"name":"allowtrading","outputs":[],"stateMutability":"nonpayable","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":"burningAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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"},{"internalType":"address","name":"walletaddress","type":"address"}],"name":"claimOtherTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"walletaddress","type":"address"}],"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":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"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":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":[{"internalType":"address","name":"walletAddress","type":"address"}],"name":"setBurningAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"walletAddress","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"walletAddress","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"walletAddress","type":"address"}],"name":"setMigrationWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"SwapThresholdAmount","type":"uint256"}],"name":"setSwapThresholdAmount","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"},{"stateMutability":"payable","type":"receive"}]

60c0604052600a805460ff1916905562000026690e9c7f5bd655012000006000196200033b565b62000034906000196200035e565b600b5560016011819055601255600c60138190556014556015805461ff001916610100179055690e9c7f5bd65501200000601655675fc1b971363200006017553480156200008157600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600b543360009081526003602090815260409182902092909255805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d92839263c45a01559260048083019392829003018186803b1580156200012557600080fd5b505afa1580156200013a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000160919062000384565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620001a957600080fd5b505afa158015620001be573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001e4919062000384565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200022d57600080fd5b505af115801562000242573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000268919062000384565b6001600160a01b0390811660a0528116608052600160066000620002946000546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526006909252902080549091166001179055620002dc3390565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef690e9c7f5bd655012000006040516200032c91815260200190565b60405180910390a350620003b6565b6000826200035957634e487b7160e01b600052601260045260246000fd5b500690565b6000828210156200037f57634e487b7160e01b600052601160045260246000fd5b500390565b6000602082840312156200039757600080fd5b81516001600160a01b0381168114620003af57600080fd5b9392505050565b60805160a051612fef62000406600039600081816106090152611bba01526000818161039f01528181612639015281816127010152818161273d015281816127af01526127d60152612fef6000f3fe6080604052600436106102cd5760003560e01c806352390c02116101755780638da5cb5b116100dc578063a9ef40d611610095578063d4a3883f1161006f578063d4a3883f1461090c578063dd62ed3e1461092c578063ea2f0b3714610972578063f2fde38b1461099257600080fd5b8063a9ef40d6146108b6578063c49b9a80146108d6578063d12a7688146108f657600080fd5b80638da5cb5b146107f65780638ea5220f1461081457806395d89b4114610834578063a457c2d714610861578063a633423114610881578063a9059cbb1461089657600080fd5b8063715018a61161012e578063715018a61461073257806375f0a87414610747578063764d72bf146107675780637d1db4a51461078757806388f820201461079d5780638ba4cc3c146107d657600080fd5b806352390c021461064a5780635342acb41461066a5780635d098b38146106a357806360d48489146106c35780636bc87c3a146106fc57806370a082311461071257600080fd5b80632f05205c116102345780633bd5d173116101ed57806348112396116101c757806348112396146105c257806348c54b9d146105e257806349bd5a5e146105f75780634a74bb021461062b57600080fd5b80633bd5d17314610562578063437823ec146105825780634549b039146105a257600080fd5b80632f05205c146104b6578063313ce567146104d05780633685d419146104ec578063395093511461050c5780633ae7dc201461052c5780633b124fe71461054c57600080fd5b80631f53ac02116102865780631f53ac02146103f657806323b872dd1461041657806329e04b4a146104365780632a360631146104565780632a455592146104765780632d8381191461049657600080fd5b80630305caff146102d957806306fdde03146102fb578063095ea7b31461033e57806313114a9d1461036e5780631694505e1461038d57806318160ddd146103d957600080fd5b366102d457005b600080fd5b3480156102e557600080fd5b506102f96102f4366004612b3f565b6109b2565b005b34801561030757600080fd5b50604080518082019091526008815267566f6c7420496e7560c01b60208201525b6040516103359190612b5c565b60405180910390f35b34801561034a57600080fd5b5061035e610359366004612bb1565b610a06565b6040519015158152602001610335565b34801561037a57600080fd5b50600c545b604051908152602001610335565b34801561039957600080fd5b506103c17f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610335565b3480156103e557600080fd5b50690e9c7f5bd6550120000061037f565b34801561040257600080fd5b506102f9610411366004612b3f565b610a1d565b34801561042257600080fd5b5061035e610431366004612bdd565b610a69565b34801561044257600080fd5b506102f9610451366004612c1e565b610ad2565b34801561046257600080fd5b506102f9610471366004612b3f565b610b80565b34801561048257600080fd5b506102f9610491366004612b3f565b610bce565b3480156104a257600080fd5b5061037f6104b1366004612c1e565b610c1a565b3480156104c257600080fd5b50600a5461035e9060ff1681565b3480156104dc57600080fd5b5060405160098152602001610335565b3480156104f857600080fd5b506102f9610507366004612b3f565b610c9e565b34801561051857600080fd5b5061035e610527366004612bb1565b610e55565b34801561053857600080fd5b506102f9610547366004612c37565b610e8b565b34801561055857600080fd5b5061037f60115481565b34801561056e57600080fd5b506102f961057d366004612c1e565b610fb9565b34801561058e57600080fd5b506102f961059d366004612b3f565b6110a3565b3480156105ae57600080fd5b5061037f6105bd366004612c7e565b6110f1565b3480156105ce57600080fd5b50600f546103c1906001600160a01b031681565b3480156105ee57600080fd5b506102f9611186565b34801561060357600080fd5b506103c17f000000000000000000000000000000000000000000000000000000000000000081565b34801561063757600080fd5b5060155461035e90610100900460ff1681565b34801561065657600080fd5b506102f9610665366004612b3f565b6111ec565b34801561067657600080fd5b5061035e610685366004612b3f565b6001600160a01b031660009081526006602052604090205460ff1690565b3480156106af57600080fd5b506102f96106be366004612b3f565b61133f565b3480156106cf57600080fd5b5061035e6106de366004612b3f565b6001600160a01b031660009081526009602052604090205460ff1690565b34801561070857600080fd5b5061037f60135481565b34801561071e57600080fd5b5061037f61072d366004612b3f565b61138b565b34801561073e57600080fd5b506102f96113ea565b34801561075357600080fd5b50600d546103c1906001600160a01b031681565b34801561077357600080fd5b506102f9610782366004612b3f565b61145e565b34801561079357600080fd5b5061037f60165481565b3480156107a957600080fd5b5061035e6107b8366004612b3f565b6001600160a01b031660009081526007602052604090205460ff1690565b3480156107e257600080fd5b506102f96107f1366004612bb1565b6114bd565b34801561080257600080fd5b506000546001600160a01b03166103c1565b34801561082057600080fd5b50600e546103c1906001600160a01b031681565b34801561084057600080fd5b506040805180820190915260048152631593d31560e21b6020820152610328565b34801561086d57600080fd5b5061035e61087c366004612bb1565b611518565b34801561088d57600080fd5b506102f9611567565b3480156108a257600080fd5b5061035e6108b1366004612bb1565b6115a0565b3480156108c257600080fd5b506102f96108d1366004612b3f565b6115ad565b3480156108e257600080fd5b506102f96108f1366004612ca3565b6115f9565b34801561090257600080fd5b5061037f60175481565b34801561091857600080fd5b506102f9610927366004612d0c565b611677565b34801561093857600080fd5b5061037f610947366004612c37565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b34801561097e57600080fd5b506102f961098d366004612b3f565b61176a565b34801561099e57600080fd5b506102f96109ad366004612b3f565b6117b5565b6000546001600160a01b031633146109e55760405162461bcd60e51b81526004016109dc90612d78565b60405180910390fd5b6001600160a01b03166000908152600960205260409020805460ff19169055565b6000610a1333848461189f565b5060015b92915050565b6000546001600160a01b03163314610a475760405162461bcd60e51b81526004016109dc90612d78565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6000610a768484846119c3565b610ac88433610ac385604051806060016040528060288152602001612f6d602891396001600160a01b038a1660009081526005602090815260408083203384529091529020549190611c74565b61189f565b5060019392505050565b6000546001600160a01b03163314610afc5760405162461bcd60e51b81526004016109dc90612d78565b63041cdb408111610b6c5760405162461bcd60e51b815260206004820152603460248201527f53776170205468726573686f6c6420416d6f756e742063616e6e6f74206265206044820152733632b9b9903a3430b7101b1c9026b4b63634b7b760611b60648201526084016109dc565b610b7a81633b9aca00612dc3565b60175550565b6000546001600160a01b03163314610baa5760405162461bcd60e51b81526004016109dc90612d78565b6001600160a01b03166000908152600960205260409020805460ff19166001179055565b6000546001600160a01b03163314610bf85760405162461bcd60e51b81526004016109dc90612d78565b601080546001600160a01b0319166001600160a01b0392909216919091179055565b6000600b54821115610c815760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b60648201526084016109dc565b6000610c8b611cae565b9050610c978382611cd1565b9392505050565b6000546001600160a01b03163314610cc85760405162461bcd60e51b81526004016109dc90612d78565b6001600160a01b03811660009081526007602052604090205460ff16610d305760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c75646564000000000060448201526064016109dc565b60005b600854811015610e5157816001600160a01b031660088281548110610d5a57610d5a612de2565b6000918252602090912001546001600160a01b03161415610e3f5760088054610d8590600190612df8565b81548110610d9557610d95612de2565b600091825260209091200154600880546001600160a01b039092169183908110610dc157610dc1612de2565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610e1957610e19612e0f565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610e4981612e25565b915050610d33565b5050565b3360008181526005602090815260408083206001600160a01b03871684529091528120549091610a13918590610ac39086611d13565b6000546001600160a01b03163314610eb55760405162461bcd60e51b81526004016109dc90612d78565b6040516370a0823160e01b81523060048201526001600160a01b0383169063a9059cbb90839083906370a082319060240160206040518083038186803b158015610efe57600080fd5b505afa158015610f12573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f369190612e40565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b158015610f7c57600080fd5b505af1158015610f90573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fb49190612e59565b505050565b3360008181526007602052604090205460ff161561102e5760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b60648201526084016109dc565b600061103983611d72565b505050506001600160a01b03841660009081526003602052604090205491925061106591905082611dc1565b6001600160a01b038316600090815260036020526040902055600b5461108b9082611dc1565b600b55600c5461109b9084611d13565b600c55505050565b6000546001600160a01b031633146110cd5760405162461bcd60e51b81526004016109dc90612d78565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000690e9c7f5bd6550120000083111561114d5760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c790060448201526064016109dc565b8161116c57600061115d84611d72565b50939550610a17945050505050565b600061117784611d72565b50929550610a17945050505050565b6000546001600160a01b031633146111b05760405162461bcd60e51b81526004016109dc90612d78565b600e546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156111e9573d6000803e3d6000fd5b50565b6000546001600160a01b031633146112165760405162461bcd60e51b81526004016109dc90612d78565b6001600160a01b03811660009081526007602052604090205460ff161561127f5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c75646564000000000060448201526064016109dc565b6001600160a01b038116600090815260036020526040902054156112d9576001600160a01b0381166000908152600360205260409020546112bf90610c1a565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6000546001600160a01b031633146113695760405162461bcd60e51b81526004016109dc90612d78565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03811660009081526007602052604081205460ff16156113c857506001600160a01b031660009081526004602052604090205490565b6001600160a01b038216600090815260036020526040902054610a1790610c1a565b6000546001600160a01b031633146114145760405162461bcd60e51b81526004016109dc90612d78565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146114885760405162461bcd60e51b81526004016109dc90612d78565b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015610e51573d6000803e3d6000fd5b6000546001600160a01b031633146114e75760405162461bcd60e51b81526004016109dc90612d78565b6114ef611e03565b611507338361150284633b9aca00612dc3565b6119c3565b610e51601254601155601454601355565b6000610a133384610ac385604051806060016040528060258152602001612f95602591393360009081526005602090815260408083206001600160a01b038d1684529091529020549190611c74565b6000546001600160a01b031633146115915760405162461bcd60e51b81526004016109dc90612d78565b600a805460ff19166001179055565b6000610a133384846119c3565b6000546001600160a01b031633146115d75760405162461bcd60e51b81526004016109dc90612d78565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146116235760405162461bcd60e51b81526004016109dc90612d78565b601580548215156101000261ff00199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599061166c90831515815260200190565b60405180910390a150565b6000546001600160a01b031633146116a15760405162461bcd60e51b81526004016109dc90612d78565b60008382146116f25760405162461bcd60e51b815260206004820152601760248201527f6d757374206265207468652073616d65206c656e67746800000000000000000060448201526064016109dc565b838110156117635761175185858381811061170f5761170f612de2565b90506020020160208101906117249190612b3f565b84848481811061173657611736612de2565b90506020020135633b9aca0061174c9190612dc3565b611e31565b61175c600182612e76565b90506116f2565b5050505050565b6000546001600160a01b031633146117945760405162461bcd60e51b81526004016109dc90612d78565b6001600160a01b03166000908152600660205260409020805460ff19169055565b6000546001600160a01b031633146117df5760405162461bcd60e51b81526004016109dc90612d78565b6001600160a01b0381166118445760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109dc565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166119015760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016109dc565b6001600160a01b0382166119625760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016109dc565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611a275760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016109dc565b6001600160a01b038216611a895760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016109dc565b60008111611aeb5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016109dc565b6000546001600160a01b03848116911614801590611b1757506000546001600160a01b03838116911614155b15611b7f57601654811115611b7f5760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b60648201526084016109dc565b6000611b8a3061138b565b90506016548110611b9a57506016545b60175481108015908190611bb1575060155460ff16155b8015611bef57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b8015611c025750601554610100900460ff165b15611c15576017549150611c1582611e44565b6001600160a01b03851660009081526006602052604090205460019060ff1680611c5757506001600160a01b03851660009081526006602052604090205460ff165b15611c60575060005b611c6c86868684611fcd565b505050505050565b60008184841115611c985760405162461bcd60e51b81526004016109dc9190612b5c565b506000611ca58486612df8565b95945050505050565b6000806000611cbb612212565b9092509050611cca8282611cd1565b9250505090565b6000610c9783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506123b2565b600080611d208385612e76565b905083811015610c975760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016109dc565b6000806000806000806000806000611d898a6123e0565b9250925092506000806000611da78d8686611da2611cae565b61241c565b919f909e50909c50959a5093985091965092945050505050565b6000610c9783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611c74565b601154158015611e135750601354155b15611e1a57565b601180546012556013805460145560009182905555565b611e39611e03565b6115073383836119c3565b6015805460ff191660011790556000611e696004611e6384600361246c565b90611cd1565b90506000611e78836006611cd1565b90506000611e9082611e8a8686611dc1565b90611dc1565b600f54909150611eab9030906001600160a01b0316846124eb565b611eb4836125e2565b476000611ec76009611e6384600461246c565b600d546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015611f02573d6000803e3d6000fd5b506000611f0f8383611dc1565b90506000611f236005611e6384600461246c565b600e546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015611f5e573d6000803e3d6000fd5b506000611f6b8383611dc1565b9050611f7786826127a9565b60408051878152602081018390529081018790527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a150506015805460ff1916905550505050505050565b600a5460ff16612009576000546001600160a01b038581169116148061200057506010546001600160a01b038581169116145b61200957600080fd5b6001600160a01b03841660009081526009602052604090205460ff168061204857506001600160a01b03831660009081526009602052604090205460ff165b156120955760405162461bcd60e51b815260206004820152601b60248201527f626f7473206172656e7420616c6c6f77656420746f207472616465000000000060448201526064016109dc565b806120a2576120a2611e03565b6001600160a01b03841660009081526007602052604090205460ff1680156120e357506001600160a01b03831660009081526007602052604090205460ff16155b156120f8576120f38484846128b7565b6121f6565b6001600160a01b03841660009081526007602052604090205460ff1615801561213957506001600160a01b03831660009081526007602052604090205460ff165b15612149576120f384848461292a565b6001600160a01b03841660009081526007602052604090205460ff1615801561218b57506001600160a01b03831660009081526007602052604090205460ff16155b1561219b576120f38484846124eb565b6001600160a01b03841660009081526007602052604090205460ff1680156121db57506001600160a01b03831660009081526007602052604090205460ff165b156121eb576120f38484846129d3565b6121f68484846124eb565b8061220c5761220c601254601155601454601355565b50505050565b600b546000908190690e9c7f5bd65501200000825b6008548110156123735782600360006008848154811061224957612249612de2565b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806122b4575081600460006008848154811061228d5761228d612de2565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156122d1575050600b5493690e9c7f5bd655012000009350915050565b61231760036000600884815481106122eb576122eb612de2565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611dc1565b925061235f600460006008848154811061233357612333612de2565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611dc1565b91508061236b81612e25565b915050612227565b50600b5461238b90690e9c7f5bd65501200000611cd1565b8210156123a9575050600b5492690e9c7f5bd6550120000092509050565b90939092509050565b600081836123d35760405162461bcd60e51b81526004016109dc9190612b5c565b506000611ca58486612e8e565b6000806000806123ef85612a46565b905060006123fc86612a62565b9050600061240e82611e8a8986611dc1565b979296509094509092505050565b600080808061242b888661246c565b90506000612439888761246c565b90506000612447888861246c565b9050600061245982611e8a8686611dc1565b939b939a50919850919650505050505050565b60008261247b57506000610a17565b60006124878385612dc3565b9050826124948583612e8e565b14610c975760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016109dc565b6000806000806000806124fd87611d72565b6001600160a01b038f16600090815260036020526040902054959b5093995091975095509350915061252f9087611dc1565b6001600160a01b03808b1660009081526003602052604080822093909355908a168152205461255e9086611d13565b6001600160a01b03891660009081526003602052604090205561258081612a7e565b61258a8483612b06565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516125cf91815260200190565b60405180910390a3505050505050505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061261757612617612de2565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561269057600080fd5b505afa1580156126a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126c89190612eb0565b816001815181106126db576126db612de2565b60200260200101906001600160a01b031690816001600160a01b031681525050612726307f00000000000000000000000000000000000000000000000000000000000000008461189f565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac9479061277b908590600090869030904290600401612ecd565b600060405180830381600087803b15801561279557600080fd5b505af1158015611c6c573d6000803e3d6000fd5b6127d4307f00000000000000000000000000000000000000000000000000000000000000008461189f565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d71982308560008061281b6000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c4016060604051808303818588803b15801561287e57600080fd5b505af1158015612892573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906117639190612f3e565b6000806000806000806128c987611d72565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506128fb9088611dc1565b6001600160a01b038a1660009081526004602090815260408083209390935560039052205461252f9087611dc1565b60008060008060008061293c87611d72565b6001600160a01b038f16600090815260036020526040902054959b5093995091975095509350915061296e9087611dc1565b6001600160a01b03808b16600090815260036020908152604080832094909455918b168152600490915220546129a49084611d13565b6001600160a01b03891660009081526004602090815260408083209390935560039052205461255e9086611d13565b6000806000806000806129e587611d72565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612a179088611dc1565b6001600160a01b038a1660009081526004602090815260408083209390935560039052205461296e9087611dc1565b6000610a176064611e636011548561246c90919063ffffffff16565b6000610a176064611e636013548561246c90919063ffffffff16565b6000612a88611cae565b90506000612a96838361246c565b30600090815260036020526040902054909150612ab39082611d13565b3060009081526003602090815260408083209390935560079052205460ff1615610fb45730600090815260046020526040902054612af19084611d13565b30600090815260046020526040902055505050565b600b54612b139083611dc1565b600b55600c54612b239082611d13565b600c555050565b6001600160a01b03811681146111e957600080fd5b600060208284031215612b5157600080fd5b8135610c9781612b2a565b600060208083528351808285015260005b81811015612b8957858101830151858201604001528201612b6d565b81811115612b9b576000604083870101525b50601f01601f1916929092016040019392505050565b60008060408385031215612bc457600080fd5b8235612bcf81612b2a565b946020939093013593505050565b600080600060608486031215612bf257600080fd5b8335612bfd81612b2a565b92506020840135612c0d81612b2a565b929592945050506040919091013590565b600060208284031215612c3057600080fd5b5035919050565b60008060408385031215612c4a57600080fd5b8235612c5581612b2a565b91506020830135612c6581612b2a565b809150509250929050565b80151581146111e957600080fd5b60008060408385031215612c9157600080fd5b823591506020830135612c6581612c70565b600060208284031215612cb557600080fd5b8135610c9781612c70565b60008083601f840112612cd257600080fd5b50813567ffffffffffffffff811115612cea57600080fd5b6020830191508360208260051b8501011115612d0557600080fd5b9250929050565b60008060008060408587031215612d2257600080fd5b843567ffffffffffffffff80821115612d3a57600080fd5b612d4688838901612cc0565b90965094506020870135915080821115612d5f57600080fd5b50612d6c87828801612cc0565b95989497509550505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612ddd57612ddd612dad565b500290565b634e487b7160e01b600052603260045260246000fd5b600082821015612e0a57612e0a612dad565b500390565b634e487b7160e01b600052603160045260246000fd5b6000600019821415612e3957612e39612dad565b5060010190565b600060208284031215612e5257600080fd5b5051919050565b600060208284031215612e6b57600080fd5b8151610c9781612c70565b60008219821115612e8957612e89612dad565b500190565b600082612eab57634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215612ec257600080fd5b8151610c9781612b2a565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612f1d5784516001600160a01b031683529383019391830191600101612ef8565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612f5357600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212206ce330c0eb0d4ebdeaea383b08d9de5f29f022569fd0ef0b55e65e1e97b40a9864736f6c63430008090033

Deployed Bytecode

0x6080604052600436106102cd5760003560e01c806352390c02116101755780638da5cb5b116100dc578063a9ef40d611610095578063d4a3883f1161006f578063d4a3883f1461090c578063dd62ed3e1461092c578063ea2f0b3714610972578063f2fde38b1461099257600080fd5b8063a9ef40d6146108b6578063c49b9a80146108d6578063d12a7688146108f657600080fd5b80638da5cb5b146107f65780638ea5220f1461081457806395d89b4114610834578063a457c2d714610861578063a633423114610881578063a9059cbb1461089657600080fd5b8063715018a61161012e578063715018a61461073257806375f0a87414610747578063764d72bf146107675780637d1db4a51461078757806388f820201461079d5780638ba4cc3c146107d657600080fd5b806352390c021461064a5780635342acb41461066a5780635d098b38146106a357806360d48489146106c35780636bc87c3a146106fc57806370a082311461071257600080fd5b80632f05205c116102345780633bd5d173116101ed57806348112396116101c757806348112396146105c257806348c54b9d146105e257806349bd5a5e146105f75780634a74bb021461062b57600080fd5b80633bd5d17314610562578063437823ec146105825780634549b039146105a257600080fd5b80632f05205c146104b6578063313ce567146104d05780633685d419146104ec578063395093511461050c5780633ae7dc201461052c5780633b124fe71461054c57600080fd5b80631f53ac02116102865780631f53ac02146103f657806323b872dd1461041657806329e04b4a146104365780632a360631146104565780632a455592146104765780632d8381191461049657600080fd5b80630305caff146102d957806306fdde03146102fb578063095ea7b31461033e57806313114a9d1461036e5780631694505e1461038d57806318160ddd146103d957600080fd5b366102d457005b600080fd5b3480156102e557600080fd5b506102f96102f4366004612b3f565b6109b2565b005b34801561030757600080fd5b50604080518082019091526008815267566f6c7420496e7560c01b60208201525b6040516103359190612b5c565b60405180910390f35b34801561034a57600080fd5b5061035e610359366004612bb1565b610a06565b6040519015158152602001610335565b34801561037a57600080fd5b50600c545b604051908152602001610335565b34801561039957600080fd5b506103c17f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610335565b3480156103e557600080fd5b50690e9c7f5bd6550120000061037f565b34801561040257600080fd5b506102f9610411366004612b3f565b610a1d565b34801561042257600080fd5b5061035e610431366004612bdd565b610a69565b34801561044257600080fd5b506102f9610451366004612c1e565b610ad2565b34801561046257600080fd5b506102f9610471366004612b3f565b610b80565b34801561048257600080fd5b506102f9610491366004612b3f565b610bce565b3480156104a257600080fd5b5061037f6104b1366004612c1e565b610c1a565b3480156104c257600080fd5b50600a5461035e9060ff1681565b3480156104dc57600080fd5b5060405160098152602001610335565b3480156104f857600080fd5b506102f9610507366004612b3f565b610c9e565b34801561051857600080fd5b5061035e610527366004612bb1565b610e55565b34801561053857600080fd5b506102f9610547366004612c37565b610e8b565b34801561055857600080fd5b5061037f60115481565b34801561056e57600080fd5b506102f961057d366004612c1e565b610fb9565b34801561058e57600080fd5b506102f961059d366004612b3f565b6110a3565b3480156105ae57600080fd5b5061037f6105bd366004612c7e565b6110f1565b3480156105ce57600080fd5b50600f546103c1906001600160a01b031681565b3480156105ee57600080fd5b506102f9611186565b34801561060357600080fd5b506103c17f0000000000000000000000004a08cf0a7bca217c24b9ee99c0395052f3707d6881565b34801561063757600080fd5b5060155461035e90610100900460ff1681565b34801561065657600080fd5b506102f9610665366004612b3f565b6111ec565b34801561067657600080fd5b5061035e610685366004612b3f565b6001600160a01b031660009081526006602052604090205460ff1690565b3480156106af57600080fd5b506102f96106be366004612b3f565b61133f565b3480156106cf57600080fd5b5061035e6106de366004612b3f565b6001600160a01b031660009081526009602052604090205460ff1690565b34801561070857600080fd5b5061037f60135481565b34801561071e57600080fd5b5061037f61072d366004612b3f565b61138b565b34801561073e57600080fd5b506102f96113ea565b34801561075357600080fd5b50600d546103c1906001600160a01b031681565b34801561077357600080fd5b506102f9610782366004612b3f565b61145e565b34801561079357600080fd5b5061037f60165481565b3480156107a957600080fd5b5061035e6107b8366004612b3f565b6001600160a01b031660009081526007602052604090205460ff1690565b3480156107e257600080fd5b506102f96107f1366004612bb1565b6114bd565b34801561080257600080fd5b506000546001600160a01b03166103c1565b34801561082057600080fd5b50600e546103c1906001600160a01b031681565b34801561084057600080fd5b506040805180820190915260048152631593d31560e21b6020820152610328565b34801561086d57600080fd5b5061035e61087c366004612bb1565b611518565b34801561088d57600080fd5b506102f9611567565b3480156108a257600080fd5b5061035e6108b1366004612bb1565b6115a0565b3480156108c257600080fd5b506102f96108d1366004612b3f565b6115ad565b3480156108e257600080fd5b506102f96108f1366004612ca3565b6115f9565b34801561090257600080fd5b5061037f60175481565b34801561091857600080fd5b506102f9610927366004612d0c565b611677565b34801561093857600080fd5b5061037f610947366004612c37565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b34801561097e57600080fd5b506102f961098d366004612b3f565b61176a565b34801561099e57600080fd5b506102f96109ad366004612b3f565b6117b5565b6000546001600160a01b031633146109e55760405162461bcd60e51b81526004016109dc90612d78565b60405180910390fd5b6001600160a01b03166000908152600960205260409020805460ff19169055565b6000610a1333848461189f565b5060015b92915050565b6000546001600160a01b03163314610a475760405162461bcd60e51b81526004016109dc90612d78565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6000610a768484846119c3565b610ac88433610ac385604051806060016040528060288152602001612f6d602891396001600160a01b038a1660009081526005602090815260408083203384529091529020549190611c74565b61189f565b5060019392505050565b6000546001600160a01b03163314610afc5760405162461bcd60e51b81526004016109dc90612d78565b63041cdb408111610b6c5760405162461bcd60e51b815260206004820152603460248201527f53776170205468726573686f6c6420416d6f756e742063616e6e6f74206265206044820152733632b9b9903a3430b7101b1c9026b4b63634b7b760611b60648201526084016109dc565b610b7a81633b9aca00612dc3565b60175550565b6000546001600160a01b03163314610baa5760405162461bcd60e51b81526004016109dc90612d78565b6001600160a01b03166000908152600960205260409020805460ff19166001179055565b6000546001600160a01b03163314610bf85760405162461bcd60e51b81526004016109dc90612d78565b601080546001600160a01b0319166001600160a01b0392909216919091179055565b6000600b54821115610c815760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b60648201526084016109dc565b6000610c8b611cae565b9050610c978382611cd1565b9392505050565b6000546001600160a01b03163314610cc85760405162461bcd60e51b81526004016109dc90612d78565b6001600160a01b03811660009081526007602052604090205460ff16610d305760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c75646564000000000060448201526064016109dc565b60005b600854811015610e5157816001600160a01b031660088281548110610d5a57610d5a612de2565b6000918252602090912001546001600160a01b03161415610e3f5760088054610d8590600190612df8565b81548110610d9557610d95612de2565b600091825260209091200154600880546001600160a01b039092169183908110610dc157610dc1612de2565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610e1957610e19612e0f565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610e4981612e25565b915050610d33565b5050565b3360008181526005602090815260408083206001600160a01b03871684529091528120549091610a13918590610ac39086611d13565b6000546001600160a01b03163314610eb55760405162461bcd60e51b81526004016109dc90612d78565b6040516370a0823160e01b81523060048201526001600160a01b0383169063a9059cbb90839083906370a082319060240160206040518083038186803b158015610efe57600080fd5b505afa158015610f12573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f369190612e40565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b158015610f7c57600080fd5b505af1158015610f90573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fb49190612e59565b505050565b3360008181526007602052604090205460ff161561102e5760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b60648201526084016109dc565b600061103983611d72565b505050506001600160a01b03841660009081526003602052604090205491925061106591905082611dc1565b6001600160a01b038316600090815260036020526040902055600b5461108b9082611dc1565b600b55600c5461109b9084611d13565b600c55505050565b6000546001600160a01b031633146110cd5760405162461bcd60e51b81526004016109dc90612d78565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000690e9c7f5bd6550120000083111561114d5760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c790060448201526064016109dc565b8161116c57600061115d84611d72565b50939550610a17945050505050565b600061117784611d72565b50929550610a17945050505050565b6000546001600160a01b031633146111b05760405162461bcd60e51b81526004016109dc90612d78565b600e546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156111e9573d6000803e3d6000fd5b50565b6000546001600160a01b031633146112165760405162461bcd60e51b81526004016109dc90612d78565b6001600160a01b03811660009081526007602052604090205460ff161561127f5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c75646564000000000060448201526064016109dc565b6001600160a01b038116600090815260036020526040902054156112d9576001600160a01b0381166000908152600360205260409020546112bf90610c1a565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6000546001600160a01b031633146113695760405162461bcd60e51b81526004016109dc90612d78565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03811660009081526007602052604081205460ff16156113c857506001600160a01b031660009081526004602052604090205490565b6001600160a01b038216600090815260036020526040902054610a1790610c1a565b6000546001600160a01b031633146114145760405162461bcd60e51b81526004016109dc90612d78565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146114885760405162461bcd60e51b81526004016109dc90612d78565b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015610e51573d6000803e3d6000fd5b6000546001600160a01b031633146114e75760405162461bcd60e51b81526004016109dc90612d78565b6114ef611e03565b611507338361150284633b9aca00612dc3565b6119c3565b610e51601254601155601454601355565b6000610a133384610ac385604051806060016040528060258152602001612f95602591393360009081526005602090815260408083206001600160a01b038d1684529091529020549190611c74565b6000546001600160a01b031633146115915760405162461bcd60e51b81526004016109dc90612d78565b600a805460ff19166001179055565b6000610a133384846119c3565b6000546001600160a01b031633146115d75760405162461bcd60e51b81526004016109dc90612d78565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146116235760405162461bcd60e51b81526004016109dc90612d78565b601580548215156101000261ff00199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599061166c90831515815260200190565b60405180910390a150565b6000546001600160a01b031633146116a15760405162461bcd60e51b81526004016109dc90612d78565b60008382146116f25760405162461bcd60e51b815260206004820152601760248201527f6d757374206265207468652073616d65206c656e67746800000000000000000060448201526064016109dc565b838110156117635761175185858381811061170f5761170f612de2565b90506020020160208101906117249190612b3f565b84848481811061173657611736612de2565b90506020020135633b9aca0061174c9190612dc3565b611e31565b61175c600182612e76565b90506116f2565b5050505050565b6000546001600160a01b031633146117945760405162461bcd60e51b81526004016109dc90612d78565b6001600160a01b03166000908152600660205260409020805460ff19169055565b6000546001600160a01b031633146117df5760405162461bcd60e51b81526004016109dc90612d78565b6001600160a01b0381166118445760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109dc565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166119015760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016109dc565b6001600160a01b0382166119625760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016109dc565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611a275760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016109dc565b6001600160a01b038216611a895760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016109dc565b60008111611aeb5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016109dc565b6000546001600160a01b03848116911614801590611b1757506000546001600160a01b03838116911614155b15611b7f57601654811115611b7f5760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b60648201526084016109dc565b6000611b8a3061138b565b90506016548110611b9a57506016545b60175481108015908190611bb1575060155460ff16155b8015611bef57507f0000000000000000000000004a08cf0a7bca217c24b9ee99c0395052f3707d686001600160a01b0316856001600160a01b031614155b8015611c025750601554610100900460ff165b15611c15576017549150611c1582611e44565b6001600160a01b03851660009081526006602052604090205460019060ff1680611c5757506001600160a01b03851660009081526006602052604090205460ff165b15611c60575060005b611c6c86868684611fcd565b505050505050565b60008184841115611c985760405162461bcd60e51b81526004016109dc9190612b5c565b506000611ca58486612df8565b95945050505050565b6000806000611cbb612212565b9092509050611cca8282611cd1565b9250505090565b6000610c9783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506123b2565b600080611d208385612e76565b905083811015610c975760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016109dc565b6000806000806000806000806000611d898a6123e0565b9250925092506000806000611da78d8686611da2611cae565b61241c565b919f909e50909c50959a5093985091965092945050505050565b6000610c9783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611c74565b601154158015611e135750601354155b15611e1a57565b601180546012556013805460145560009182905555565b611e39611e03565b6115073383836119c3565b6015805460ff191660011790556000611e696004611e6384600361246c565b90611cd1565b90506000611e78836006611cd1565b90506000611e9082611e8a8686611dc1565b90611dc1565b600f54909150611eab9030906001600160a01b0316846124eb565b611eb4836125e2565b476000611ec76009611e6384600461246c565b600d546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015611f02573d6000803e3d6000fd5b506000611f0f8383611dc1565b90506000611f236005611e6384600461246c565b600e546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015611f5e573d6000803e3d6000fd5b506000611f6b8383611dc1565b9050611f7786826127a9565b60408051878152602081018390529081018790527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a150506015805460ff1916905550505050505050565b600a5460ff16612009576000546001600160a01b038581169116148061200057506010546001600160a01b038581169116145b61200957600080fd5b6001600160a01b03841660009081526009602052604090205460ff168061204857506001600160a01b03831660009081526009602052604090205460ff165b156120955760405162461bcd60e51b815260206004820152601b60248201527f626f7473206172656e7420616c6c6f77656420746f207472616465000000000060448201526064016109dc565b806120a2576120a2611e03565b6001600160a01b03841660009081526007602052604090205460ff1680156120e357506001600160a01b03831660009081526007602052604090205460ff16155b156120f8576120f38484846128b7565b6121f6565b6001600160a01b03841660009081526007602052604090205460ff1615801561213957506001600160a01b03831660009081526007602052604090205460ff165b15612149576120f384848461292a565b6001600160a01b03841660009081526007602052604090205460ff1615801561218b57506001600160a01b03831660009081526007602052604090205460ff16155b1561219b576120f38484846124eb565b6001600160a01b03841660009081526007602052604090205460ff1680156121db57506001600160a01b03831660009081526007602052604090205460ff165b156121eb576120f38484846129d3565b6121f68484846124eb565b8061220c5761220c601254601155601454601355565b50505050565b600b546000908190690e9c7f5bd65501200000825b6008548110156123735782600360006008848154811061224957612249612de2565b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806122b4575081600460006008848154811061228d5761228d612de2565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156122d1575050600b5493690e9c7f5bd655012000009350915050565b61231760036000600884815481106122eb576122eb612de2565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611dc1565b925061235f600460006008848154811061233357612333612de2565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611dc1565b91508061236b81612e25565b915050612227565b50600b5461238b90690e9c7f5bd65501200000611cd1565b8210156123a9575050600b5492690e9c7f5bd6550120000092509050565b90939092509050565b600081836123d35760405162461bcd60e51b81526004016109dc9190612b5c565b506000611ca58486612e8e565b6000806000806123ef85612a46565b905060006123fc86612a62565b9050600061240e82611e8a8986611dc1565b979296509094509092505050565b600080808061242b888661246c565b90506000612439888761246c565b90506000612447888861246c565b9050600061245982611e8a8686611dc1565b939b939a50919850919650505050505050565b60008261247b57506000610a17565b60006124878385612dc3565b9050826124948583612e8e565b14610c975760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016109dc565b6000806000806000806124fd87611d72565b6001600160a01b038f16600090815260036020526040902054959b5093995091975095509350915061252f9087611dc1565b6001600160a01b03808b1660009081526003602052604080822093909355908a168152205461255e9086611d13565b6001600160a01b03891660009081526003602052604090205561258081612a7e565b61258a8483612b06565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516125cf91815260200190565b60405180910390a3505050505050505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061261757612617612de2565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561269057600080fd5b505afa1580156126a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126c89190612eb0565b816001815181106126db576126db612de2565b60200260200101906001600160a01b031690816001600160a01b031681525050612726307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461189f565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac9479061277b908590600090869030904290600401612ecd565b600060405180830381600087803b15801561279557600080fd5b505af1158015611c6c573d6000803e3d6000fd5b6127d4307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461189f565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d71982308560008061281b6000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c4016060604051808303818588803b15801561287e57600080fd5b505af1158015612892573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906117639190612f3e565b6000806000806000806128c987611d72565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506128fb9088611dc1565b6001600160a01b038a1660009081526004602090815260408083209390935560039052205461252f9087611dc1565b60008060008060008061293c87611d72565b6001600160a01b038f16600090815260036020526040902054959b5093995091975095509350915061296e9087611dc1565b6001600160a01b03808b16600090815260036020908152604080832094909455918b168152600490915220546129a49084611d13565b6001600160a01b03891660009081526004602090815260408083209390935560039052205461255e9086611d13565b6000806000806000806129e587611d72565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612a179088611dc1565b6001600160a01b038a1660009081526004602090815260408083209390935560039052205461296e9087611dc1565b6000610a176064611e636011548561246c90919063ffffffff16565b6000610a176064611e636013548561246c90919063ffffffff16565b6000612a88611cae565b90506000612a96838361246c565b30600090815260036020526040902054909150612ab39082611d13565b3060009081526003602090815260408083209390935560079052205460ff1615610fb45730600090815260046020526040902054612af19084611d13565b30600090815260046020526040902055505050565b600b54612b139083611dc1565b600b55600c54612b239082611d13565b600c555050565b6001600160a01b03811681146111e957600080fd5b600060208284031215612b5157600080fd5b8135610c9781612b2a565b600060208083528351808285015260005b81811015612b8957858101830151858201604001528201612b6d565b81811115612b9b576000604083870101525b50601f01601f1916929092016040019392505050565b60008060408385031215612bc457600080fd5b8235612bcf81612b2a565b946020939093013593505050565b600080600060608486031215612bf257600080fd5b8335612bfd81612b2a565b92506020840135612c0d81612b2a565b929592945050506040919091013590565b600060208284031215612c3057600080fd5b5035919050565b60008060408385031215612c4a57600080fd5b8235612c5581612b2a565b91506020830135612c6581612b2a565b809150509250929050565b80151581146111e957600080fd5b60008060408385031215612c9157600080fd5b823591506020830135612c6581612c70565b600060208284031215612cb557600080fd5b8135610c9781612c70565b60008083601f840112612cd257600080fd5b50813567ffffffffffffffff811115612cea57600080fd5b6020830191508360208260051b8501011115612d0557600080fd5b9250929050565b60008060008060408587031215612d2257600080fd5b843567ffffffffffffffff80821115612d3a57600080fd5b612d4688838901612cc0565b90965094506020870135915080821115612d5f57600080fd5b50612d6c87828801612cc0565b95989497509550505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612ddd57612ddd612dad565b500290565b634e487b7160e01b600052603260045260246000fd5b600082821015612e0a57612e0a612dad565b500390565b634e487b7160e01b600052603160045260246000fd5b6000600019821415612e3957612e39612dad565b5060010190565b600060208284031215612e5257600080fd5b5051919050565b600060208284031215612e6b57600080fd5b8151610c9781612c70565b60008219821115612e8957612e89612dad565b500190565b600082612eab57634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215612ec257600080fd5b8151610c9781612b2a565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612f1d5784516001600160a01b031683529383019391830191600101612ef8565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612f5357600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212206ce330c0eb0d4ebdeaea383b08d9de5f29f022569fd0ef0b55e65e1e97b40a9864736f6c63430008090033

Deployed Bytecode Sourcemap

24984:21409:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34910:113;;;;;;;;;;-1:-1:-1;34910:113:0;;;;;:::i;:::-;;:::i;:::-;;27689:85;;;;;;;;;;-1:-1:-1;27761:5:0;;;;;;;;;;;;-1:-1:-1;;;27761:5:0;;;;27689:85;;;;;;;:::i;:::-;;;;;;;;28613:163;;;;;;;;;;-1:-1:-1;28613:163:0;;;;;:::i;:::-;;:::i;:::-;;;1489:14:1;;1482:22;1464:41;;1452:2;1437:18;28613:163:0;1324:187:1;29744:89:0;;;;;;;;;;-1:-1:-1;29815:10:0;;29744:89;;;1662:25:1;;;1650:2;1635:18;29744:89:0;1516:177:1;26244:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1889:32:1;;;1871:51;;1859:2;1844:18;26244:51:0;1698:230:1;27972:97:0;;;;;;;;;;-1:-1:-1;25655:22:0;27972:97;;33704:108;;;;;;;;;;-1:-1:-1;33704:108:0;;;;;:::i;:::-;;:::i;28784:315::-;;;;;;;;;;-1:-1:-1;28784:315:0;;;;;:::i;:::-;;:::i;33948:266::-;;;;;;;;;;-1:-1:-1;33948:266:0;;;;;:::i;:::-;;:::i;34789:109::-;;;;;;;;;;-1:-1:-1;34789:109:0;;;;;:::i;:::-;;:::i;35256:120::-;;;;;;;;;;-1:-1:-1;35256:120:0;;;;;:::i;:::-;;:::i;31470:253::-;;;;;;;;;;-1:-1:-1;31470:253:0;;;;;:::i;:::-;;:::i;25531:28::-;;;;;;;;;;-1:-1:-1;25531:28:0;;;;;;;;27879:85;;;;;;;;;;-1:-1:-1;27879:85:0;;26041:1;2721:36:1;;2709:2;2694:18;27879:85:0;2579:184:1;32188:479:0;;;;;;;;;;-1:-1:-1;32188:479:0;;;;;:::i;:::-;;:::i;29107:220::-;;;;;;;;;;-1:-1:-1;29107:220:0;;;;;:::i;:::-;;:::i;34436:185::-;;;;;;;;;;-1:-1:-1;34436:185:0;;;;;:::i;:::-;;:::i;26055:26::-;;;;;;;;;;;;;;;;30637:379;;;;;;;;;;-1:-1:-1;30637:379:0;;;;;:::i;:::-;;:::i;33331:113::-;;;;;;;;;;-1:-1:-1;33331:113:0;;;;;:::i;:::-;;:::i;31024:438::-;;;;;;;;;;-1:-1:-1;31024:438:0;;;;;:::i;:::-;;:::i;25835:29::-;;;;;;;;;;-1:-1:-1;25835:29:0;;;;-1:-1:-1;;;;;25835:29:0;;;34226:198;;;;;;;;;;;;;:::i;26302:38::-;;;;;;;;;;;;;;;26381:40;;;;;;;;;;-1:-1:-1;26381:40:0;;;;;;;;;;;31731:449;;;;;;;;;;-1:-1:-1;31731:449:0;;;;;:::i;:::-;;:::i;38870:125::-;;;;;;;;;;-1:-1:-1;38870:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;38960:27:0;38936:4;38960:27;;;:18;:27;;;;;;;;;38870:125;33576:120;;;;;;;;;;-1:-1:-1;33576:120:0;;;;;:::i;:::-;;:::i;35035:123::-;;;;;;;;;;-1:-1:-1;35035:123:0;;;;;:::i;:::-;-1:-1:-1;;;;;35129:21:0;35105:4;35129:21;;;:10;:21;;;;;;;;;35035:123;26142:33;;;;;;;;;;;;;;;;28077:198;;;;;;;;;;-1:-1:-1;28077:198:0;;;;;:::i;:::-;;:::i;16355:148::-;;;;;;;;;;;;;:::i;25773:30::-;;;;;;;;;;-1:-1:-1;25773:30:0;;;;-1:-1:-1;;;;;25773:30:0;;;34633:144;;;;;;;;;;-1:-1:-1;34633:144:0;;;;;:::i;:::-;;:::i;26434:52::-;;;;;;;;;;;;;;;;29614:122;;;;;;;;;;-1:-1:-1;29614:122:0;;;;;:::i;:::-;-1:-1:-1;;;;;29708:20:0;29684:4;29708:20;;;:11;:20;;;;;;;;;29614:122;29845:193;;;;;;;;;;-1:-1:-1;29845:193:0;;;;;:::i;:::-;;:::i;15712:79::-;;;;;;;;;;-1:-1:-1;15750:7:0;15777:6;-1:-1:-1;;;;;15777:6:0;15712:79;;25807:24;;;;;;;;;;-1:-1:-1;25807:24:0;;;;-1:-1:-1;;;;;25807:24:0;;;27782:89;;;;;;;;;;-1:-1:-1;27856:7:0;;;;;;;;;;;;-1:-1:-1;;;27856:7:0;;;;27782:89;;29335:271;;;;;;;;;;-1:-1:-1;29335:271:0;;;;;:::i;:::-;;:::i;35170:78::-;;;;;;;;;;;;;:::i;28283:169::-;;;;;;;;;;-1:-1:-1;28283:169:0;;;;;:::i;:::-;;:::i;33820:118::-;;;;;;;;;;-1:-1:-1;33820:118:0;;;;;:::i;:::-;;:::i;35384:173::-;;;;;;;;;;-1:-1:-1;35384:173:0;;;;;:::i;:::-;;:::i;26493:65::-;;;;;;;;;;;;;;;;30243:386;;;;;;;;;;-1:-1:-1;30243:386:0;;;;;:::i;:::-;;:::i;28460:145::-;;;;;;;;;;-1:-1:-1;28460:145:0;;;;;:::i;:::-;-1:-1:-1;;;;;28570:18:0;;;28543:7;28570:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;28460:145;33456:112;;;;;;;;;;-1:-1:-1;33456:112:0;;;;;:::i;:::-;;:::i;16658:244::-;;;;;;;;;;-1:-1:-1;16658:244:0;;;;;:::i;:::-;;:::i;34910:113::-;15924:6;;-1:-1:-1;;;;;15924:6:0;8217:10;15924:22;15916:67;;;;-1:-1:-1;;;15916:67:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;34986:21:0::1;35010:5;34986:21:::0;;;:10:::1;:21;::::0;;;;:29;;-1:-1:-1;;34986:29:0::1;::::0;;34910:113::o;28613:163::-;28690:4;28707:39;8217:10;28730:7;28739:6;28707:8;:39::i;:::-;-1:-1:-1;28764:4:0;28613:163;;;;;:::o;33704:108::-;15924:6;;-1:-1:-1;;;;;15924:6:0;8217:10;15924:22;15916:67;;;;-1:-1:-1;;;15916:67:0;;;;;;;:::i;:::-;33779:9:::1;:25:::0;;-1:-1:-1;;;;;;33779:25:0::1;-1:-1:-1::0;;;;;33779:25:0;;;::::1;::::0;;;::::1;::::0;;33704:108::o;28784:315::-;28884:4;28901:36;28911:6;28919:9;28930:6;28901:9;:36::i;:::-;28948:121;28957:6;8217:10;28979:89;29017:6;28979:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28979:19:0;;;;;;:11;:19;;;;;;;;8217:10;28979:33;;;;;;;;;;:37;:89::i;:::-;28948:8;:121::i;:::-;-1:-1:-1;29087:4:0;28784:315;;;;;:::o;33948:266::-;15924:6;;-1:-1:-1;;;;;15924:6:0;8217:10;15924:22;15916:67;;;;-1:-1:-1;;;15916:67:0;;;;;;;:::i;:::-;34071:8:::1;34049:19;:30;34041:95;;;::::0;-1:-1:-1;;;34041:95:0;;6431:2:1;34041:95:0::1;::::0;::::1;6413:21:1::0;6470:2;6450:18;;;6443:30;6509:34;6489:18;;;6482:62;-1:-1:-1;;;6560:18:1;;;6553:50;6620:19;;34041:95:0::1;6229:416:1::0;34041:95:0::1;34179:27;:19:::0;34201:5:::1;34179:27;:::i;:::-;34147:29;:59:::0;-1:-1:-1;33948:266:0:o;34789:109::-;15924:6;;-1:-1:-1;;;;;15924:6:0;8217:10;15924:22;15916:67;;;;-1:-1:-1;;;15916:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34862:21:0::1;;::::0;;;:10:::1;:21;::::0;;;;:28;;-1:-1:-1;;34862:28:0::1;34886:4;34862:28;::::0;;34789:109::o;35256:120::-;15924:6;;-1:-1:-1;;;;;15924:6:0;8217:10;15924:22;15916:67;;;;-1:-1:-1;;;15916:67:0;;;;;;;:::i;:::-;35337:15:::1;:31:::0;;-1:-1:-1;;;;;;35337:31:0::1;-1:-1:-1::0;;;;;35337:31:0;;;::::1;::::0;;;::::1;::::0;;35256:120::o;31470:253::-;31536:7;31575;;31564;:18;;31556:73;;;;-1:-1:-1;;;31556:73:0;;7157:2:1;31556:73:0;;;7139:21:1;7196:2;7176:18;;;7169:30;7235:34;7215:18;;;7208:62;-1:-1:-1;;;7286:18:1;;;7279:40;7336:19;;31556:73:0;6955:406:1;31556:73:0;31640:19;31663:10;:8;:10::i;:::-;31640:33;-1:-1:-1;31691:24:0;:7;31640:33;31691:11;:24::i;:::-;31684:31;31470:253;-1:-1:-1;;;31470:253:0:o;32188:479::-;15924:6;;-1:-1:-1;;;;;15924:6:0;8217:10;15924:22;15916:67;;;;-1:-1:-1;;;15916:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32270:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;32262:60;;;::::0;-1:-1:-1;;;32262:60:0;;7568:2:1;32262:60:0::1;::::0;::::1;7550:21:1::0;7607:2;7587:18;;;7580:30;7646:29;7626:18;;;7619:57;7693:18;;32262:60:0::1;7366:351:1::0;32262:60:0::1;32338:9;32333:327;32357:9;:16:::0;32353:20;::::1;32333:327;;;32415:7;-1:-1:-1::0;;;;;32399:23:0::1;:9;32409:1;32399:12;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;32399:12:0::1;:23;32395:254;;;32458:9;32468:16:::0;;:20:::1;::::0;32487:1:::1;::::0;32468:20:::1;:::i;:::-;32458:31;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;32443:9:::1;:12:::0;;-1:-1:-1;;;;;32458:31:0;;::::1;::::0;32453:1;;32443:12;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;32443:46:0::1;-1:-1:-1::0;;;;;32443:46:0;;::::1;;::::0;;32508:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;32547:11:::1;:20:::0;;;;:28;;-1:-1:-1;;32547:28:0::1;::::0;;32594:9:::1;:15:::0;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;-1:-1:-1;;32594:15:0;;;;;-1:-1:-1;;;;;;32594:15:0::1;::::0;;;;;32333:327:::1;32188:479:::0;:::o;32395:254::-:1;32375:3:::0;::::1;::::0;::::1;:::i;:::-;;;;32333:327;;;;32188:479:::0;:::o;29107:220::-;8217:10;29197:4;29246:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;29246:34:0;;;;;;;;;;29197:4;;29214:83;;29237:7;;29246:50;;29285:10;29246:38;:50::i;34436:185::-;15924:6;;-1:-1:-1;;;;;15924:6:0;8217:10;15924:22;15916:67;;;;-1:-1:-1;;;15916:67:0;;;;;;;:::i;:::-;34575:37:::1;::::0;-1:-1:-1;;;34575:37:0;;34606:4:::1;34575:37;::::0;::::1;1871:51:1::0;-1:-1:-1;;;;;34538:21:0;::::1;::::0;::::1;::::0;34560:13;;34538:21;;34575:22:::1;::::0;1844:18:1;;34575:37:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34538:75;::::0;-1:-1:-1;;;;;;34538:75:0::1;::::0;;;;;;-1:-1:-1;;;;;8637:32:1;;;34538:75:0::1;::::0;::::1;8619:51:1::0;8686:18;;;8679:34;8592:18;;34538:75:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34436:185:::0;;:::o;30637:379::-;8217:10;30691:14;30740:19;;;:11;:19;;;;;;;;30739:20;30731:77;;;;-1:-1:-1;;;30731:77:0;;9176:2:1;30731:77:0;;;9158:21:1;9215:2;9195:18;;;9188:30;9254:34;9234:18;;;9227:62;-1:-1:-1;;;9305:18:1;;;9298:42;9357:19;;30731:77:0;8974:408:1;30731:77:0;30820:15;30844:19;30855:7;30844:10;:19::i;:::-;-1:-1:-1;;;;;;;;;30892:15:0;;;;;;:7;:15;;;;;;30819:44;;-1:-1:-1;30892:28:0;;:15;-1:-1:-1;30819:44:0;30892:19;:28::i;:::-;-1:-1:-1;;;;;30874:15:0;;;;;;:7;:15;;;;;:46;30941:7;;:20;;30953:7;30941:11;:20::i;:::-;30931:7;:30;30985:10;;:23;;31000:7;30985:14;:23::i;:::-;30972:10;:36;-1:-1:-1;;;30637:379:0:o;33331:113::-;15924:6;;-1:-1:-1;;;;;15924:6:0;8217:10;15924:22;15916:67;;;;-1:-1:-1;;;15916:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33402:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;33402:34:0::1;33432:4;33402:34;::::0;;33331:113::o;31024:438::-;31116:7;25655:22;31144:7;:18;;31136:62;;;;-1:-1:-1;;;31136:62:0;;9589:2:1;31136:62:0;;;9571:21:1;9628:2;9608:18;;;9601:30;9667:33;9647:18;;;9640:61;9718:18;;31136:62:0;9387:355:1;31136:62:0;31214:17;31209:246;;31249:15;31273:19;31284:7;31273:10;:19::i;:::-;-1:-1:-1;31248:44:0;;-1:-1:-1;31307:14:0;;-1:-1:-1;;;;;31307:14:0;31209:246;31356:23;31387:19;31398:7;31387:10;:19::i;:::-;-1:-1:-1;31354:52:0;;-1:-1:-1;31421:22:0;;-1:-1:-1;;;;;31421:22:0;34226:198;15924:6;;-1:-1:-1;;;;;15924:6:0;8217:10;15924:22;15916:67;;;;-1:-1:-1;;;15916:67:0;;;;;;;:::i;:::-;34374:9:::1;::::0;34366:50:::1;::::0;-1:-1:-1;;;;;34374:9:0;;::::1;::::0;34394:21:::1;34366:50:::0;::::1;;;::::0;34374:9:::1;34366:50:::0;34374:9;34366:50;34394:21;34374:9;34366:50;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;34226:198::o:0;31731:449::-;15924:6;;-1:-1:-1;;;;;15924:6:0;8217:10;15924:22;15916:67;;;;-1:-1:-1;;;15916:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31930:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;31929:21;31921:61;;;::::0;-1:-1:-1;;;31921:61:0;;7568:2:1;31921:61:0::1;::::0;::::1;7550:21:1::0;7607:2;7587:18;;;7580:30;7646:29;7626:18;;;7619:57;7693:18;;31921:61:0::1;7366:351:1::0;31921:61:0::1;-1:-1:-1::0;;;;;31996:16:0;::::1;32015:1;31996:16:::0;;;:7:::1;:16;::::0;;;;;:20;31993:108:::1;;-1:-1:-1::0;;;;;32072:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;32052:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;32033:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;31993:108:::1;-1:-1:-1::0;;;;;32111:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;32111:27:0::1;32134:4;32111:27:::0;;::::1;::::0;;;32149:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;32149:23:0::1;::::0;;::::1;::::0;;31731:449::o;33576:120::-;15924:6;;-1:-1:-1;;;;;15924:6:0;8217:10;15924:22;15916:67;;;;-1:-1:-1;;;15916:67:0;;;;;;;:::i;:::-;33657:15:::1;:31:::0;;-1:-1:-1;;;;;;33657:31:0::1;-1:-1:-1::0;;;;;33657:31:0;;;::::1;::::0;;;::::1;::::0;;33576:120::o;28077:198::-;-1:-1:-1;;;;;28167:20:0;;28143:7;28167:20;;;:11;:20;;;;;;;;28163:49;;;-1:-1:-1;;;;;;28196:16:0;;;;;:7;:16;;;;;;;28077:198::o;28163:49::-;-1:-1:-1;;;;;28250:16:0;;;;;;:7;:16;;;;;;28230:37;;:19;:37::i;16355:148::-;15924:6;;-1:-1:-1;;;;;15924:6:0;8217:10;15924:22;15916:67;;;;-1:-1:-1;;;15916:67:0;;;;;;;:::i;:::-;16462:1:::1;16446:6:::0;;16425:40:::1;::::0;-1:-1:-1;;;;;16446:6:0;;::::1;::::0;16425:40:::1;::::0;16462:1;;16425:40:::1;16493:1;16476:19:::0;;-1:-1:-1;;;;;;16476:19:0::1;::::0;;16355:148::o;34633:144::-;15924:6;;-1:-1:-1;;;;;15924:6:0;8217:10;15924:22;15916:67;;;;-1:-1:-1;;;15916:67:0;;;;;;;:::i;:::-;34724:45:::1;::::0;-1:-1:-1;;;;;34724:22:0;::::1;::::0;34747:21:::1;34724:45:::0;::::1;;;::::0;::::1;::::0;;;34747:21;34724:22;:45;::::1;;;;;;;;;;;;;::::0;::::1;;;;29845:193:::0;15924:6;;-1:-1:-1;;;;;15924:6:0;8217:10;15924:22;15916:67;;;;-1:-1:-1;;;15916:67:0;;;;;;;:::i;:::-;29929:14:::1;:12;:14::i;:::-;29954:50;8217:10:::0;29978:9;29989:14:::1;:6:::0;29998:5:::1;29989:14;:::i;:::-;29954:9;:50::i;:::-;30015:15;38787::::0;;38777:7;:25;38829:21;;38813:13;:37;38733:125;29335:271;29430:4;29447:129;8217:10;29470:7;29479:96;29518:15;29479:96;;;;;;;;;;;;;;;;;8217:10;29479:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;29479:34:0;;;;;;;;;;;;:38;:96::i;35170:78::-;15924:6;;-1:-1:-1;;;;;15924:6:0;8217:10;15924:22;15916:67;;;;-1:-1:-1;;;15916:67:0;;;;;;;:::i;:::-;35225:8:::1;:15:::0;;-1:-1:-1;;35225:15:0::1;35236:4;35225:15;::::0;;35170:78::o;28283:169::-;28363:4;28380:42;8217:10;28404:9;28415:6;28380:9;:42::i;33820:118::-;15924:6;;-1:-1:-1;;;;;15924:6:0;8217:10;15924:22;15916:67;;;;-1:-1:-1;;;15916:67:0;;;;;;;:::i;:::-;33900:14:::1;:30:::0;;-1:-1:-1;;;;;;33900:30:0::1;-1:-1:-1::0;;;;;33900:30:0;;;::::1;::::0;;;::::1;::::0;;33820:118::o;35384:173::-;15924:6;;-1:-1:-1;;;;;15924:6:0;8217:10;15924:22;15916:67;;;;-1:-1:-1;;;15916:67:0;;;;;;;:::i;:::-;35463:21:::1;:32:::0;;;::::1;;;;-1:-1:-1::0;;35463:32:0;;::::1;;::::0;;35511:38:::1;::::0;::::1;::::0;::::1;::::0;35487:8;1489:14:1;1482:22;1464:41;;1452:2;1437:18;;1324:187;35511:38:0::1;;;;;;;;35384:173:::0;:::o;30243:386::-;15924:6;;-1:-1:-1;;;;;15924:6:0;8217:10;15924:22;15916:67;;;;-1:-1:-1;;;15916:67:0;;;;;;;:::i;:::-;30355:16:::1;30394:35:::0;;::::1;30386:71;;;::::0;-1:-1:-1;;;30386:71:0;;9949:2:1;30386:71:0::1;::::0;::::1;9931:21:1::0;9988:2;9968:18;;;9961:30;10027:25;10007:18;;;10000:53;10070:18;;30386:71:0::1;9747:347:1::0;30386:71:0::1;30474:28:::0;;::::1;30468:154;;;30518:64;30534:10;;30545:8;30534:20;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;30556:7;;30564:8;30556:17;;;;;;;:::i;:::-;;;;;;;30576:5;30556:25;;;;:::i;:::-;30518:15;:64::i;:::-;30597:13;30609:1;30597:13:::0;::::1;:::i;:::-;;;30468:154;;;30344:285;30243:386:::0;;;;:::o;33456:112::-;15924:6;;-1:-1:-1;;;;;15924:6:0;8217:10;15924:22;15916:67;;;;-1:-1:-1;;;15916:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33525:27:0::1;33555:5;33525:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;33525:35:0::1;::::0;;33456:112::o;16658:244::-;15924:6;;-1:-1:-1;;;;;15924:6:0;8217:10;15924:22;15916:67;;;;-1:-1:-1;;;15916:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16747:22:0;::::1;16739:73;;;::::0;-1:-1:-1;;;16739:73:0;;10434:2:1;16739:73:0::1;::::0;::::1;10416:21:1::0;10473:2;10453:18;;;10446:30;10512:34;10492:18;;;10485:62;-1:-1:-1;;;10563:18:1;;;10556:36;10609:19;;16739:73:0::1;10232:402:1::0;16739:73:0::1;16849:6;::::0;;16828:38:::1;::::0;-1:-1:-1;;;;;16828:38:0;;::::1;::::0;16849:6;::::1;::::0;16828:38:::1;::::0;::::1;16877:6;:17:::0;;-1:-1:-1;;;;;;16877:17:0::1;-1:-1:-1::0;;;;;16877:17:0;;;::::1;::::0;;;::::1;::::0;;16658:244::o;39003:337::-;-1:-1:-1;;;;;39096:19:0;;39088:68;;;;-1:-1:-1;;;39088:68:0;;10841:2:1;39088:68:0;;;10823:21:1;10880:2;10860:18;;;10853:30;10919:34;10899:18;;;10892:62;-1:-1:-1;;;10970:18:1;;;10963:34;11014:19;;39088:68:0;10639:400:1;39088:68:0;-1:-1:-1;;;;;39175:21:0;;39167:68;;;;-1:-1:-1;;;39167:68:0;;11246:2:1;39167:68:0;;;11228:21:1;11285:2;11265:18;;;11258:30;11324:34;11304:18;;;11297:62;-1:-1:-1;;;11375:18:1;;;11368:32;11417:19;;39167:68:0;11044:398:1;39167:68:0;-1:-1:-1;;;;;39248:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;39300:32;;1662:25:1;;;39300:32:0;;1635:18:1;39300:32:0;;;;;;;39003:337;;;:::o;39348:1813::-;-1:-1:-1;;;;;39470:18:0;;39462:68;;;;-1:-1:-1;;;39462:68:0;;11649:2:1;39462:68:0;;;11631:21:1;11688:2;11668:18;;;11661:30;11727:34;11707:18;;;11700:62;-1:-1:-1;;;11778:18:1;;;11771:35;11823:19;;39462:68:0;11447:401:1;39462:68:0;-1:-1:-1;;;;;39549:16:0;;39541:64;;;;-1:-1:-1;;;39541:64:0;;12055:2:1;39541:64:0;;;12037:21:1;12094:2;12074:18;;;12067:30;12133:34;12113:18;;;12106:62;-1:-1:-1;;;12184:18:1;;;12177:33;12227:19;;39541:64:0;11853:399:1;39541:64:0;39633:1;39624:6;:10;39616:64;;;;-1:-1:-1;;;39616:64:0;;12459:2:1;39616:64:0;;;12441:21:1;12498:2;12478:18;;;12471:30;12537:34;12517:18;;;12510:62;-1:-1:-1;;;12588:18:1;;;12581:39;12637:19;;39616:64:0;12257:405:1;39616:64:0;15750:7;15777:6;-1:-1:-1;;;;;39694:15:0;;;15777:6;;39694:15;;;;:32;;-1:-1:-1;15750:7:0;15777:6;-1:-1:-1;;;;;39713:13:0;;;15777:6;;39713:13;;39694:32;39691:125;;;39759:12;;39749:6;:22;;39741:75;;;;-1:-1:-1;;;39741:75:0;;12869:2:1;39741:75:0;;;12851:21:1;12908:2;12888:18;;;12881:30;12947:34;12927:18;;;12920:62;-1:-1:-1;;;12998:18:1;;;12991:38;13046:19;;39741:75:0;12667:404:1;39741:75:0;40111:28;40142:24;40160:4;40142:9;:24::i;:::-;40111:55;;40214:12;;40190:20;:36;40187:112;;-1:-1:-1;40275:12:0;;40187:112;40370:29;;40346:53;;;;;;;40428;;-1:-1:-1;40465:16:0;;;;40464:17;40428:53;:91;;;;;40506:13;-1:-1:-1;;;;;40498:21:0;:4;-1:-1:-1;;;;;40498:21:0;;;40428:91;:129;;;;-1:-1:-1;40536:21:0;;;;;;;40428:129;40410:318;;;40607:29;;40584:52;;40680:36;40695:20;40680:14;:36::i;:::-;-1:-1:-1;;;;;40936:24:0;;40809:12;40936:24;;;:18;:24;;;;;;40824:4;;40936:24;;;:50;;-1:-1:-1;;;;;;40964:22:0;;;;;;:18;:22;;;;;;;;40936:50;40933:96;;;-1:-1:-1;41012:5:0;40933:96;41115:38;41130:4;41135:2;41138:6;41145:7;41115:14;:38::i;:::-;39451:1710;;;39348:1813;;;:::o;4468:192::-;4554:7;4590:12;4582:6;;;;4574:29;;;;-1:-1:-1;;;4574:29:0;;;;;;;;:::i;:::-;-1:-1:-1;4614:9:0;4626:5;4630:1;4626;:5;:::i;:::-;4614:17;4468:192;-1:-1:-1;;;;;4468:192:0:o;37020:163::-;37061:7;37082:15;37099;37118:19;:17;:19::i;:::-;37081:56;;-1:-1:-1;37081:56:0;-1:-1:-1;37155:20:0;37081:56;;37155:11;:20::i;:::-;37148:27;;;;37020:163;:::o;5866:132::-;5924:7;5951:39;5955:1;5958;5951:39;;;;;;;;;;;;;;;;;:3;:39::i;3565:181::-;3623:7;;3655:5;3659:1;3655;:5;:::i;:::-;3643:17;;3684:1;3679;:6;;3671:46;;;;-1:-1:-1;;;3671:46:0;;13278:2:1;3671:46:0;;;13260:21:1;13317:2;13297:18;;;13290:30;13356:29;13336:18;;;13329:57;13403:18;;3671:46:0;13076:351:1;35818:419:0;35877:7;35886;35895;35904;35913;35922;35943:23;35968:12;35982:18;36004:20;36016:7;36004:11;:20::i;:::-;35942:82;;;;;;36036:15;36053:23;36078:12;36094:50;36106:7;36115:4;36121:10;36133;:8;:10::i;:::-;36094:11;:50::i;:::-;36035:109;;;;-1:-1:-1;36035:109:0;;-1:-1:-1;36195:15:0;;-1:-1:-1;36212:4:0;;-1:-1:-1;36218:10:0;;-1:-1:-1;35818:419:0;;-1:-1:-1;;;;;35818:419:0:o;4029:136::-;4087:7;4114:43;4118:1;4121;4114:43;;;;;;;;;;;;;;;;;:3;:43::i;38471:250::-;38517:7;;:12;:34;;;;-1:-1:-1;38533:13:0;;:18;38517:34;38514:46;;;38471:250::o;38514:46::-;38598:7;;;38580:15;:25;38640:13;;;38616:21;:37;-1:-1:-1;38674:11:0;;;;38696:17;38471:250::o;30050:181::-;30130:14;:12;:14::i;:::-;30155:42;8217:10;30179:9;30190:6;30155:9;:42::i;41171:1197::-;26865:16;:23;;-1:-1:-1;;26865:23:0;26884:4;26865:23;;;:16;41374:34:::1;41406:1;41374:27;:20:::0;41399:1:::1;41374:24;:27::i;:::-;:31:::0;::::1;:34::i;:::-;41351:57:::0;-1:-1:-1;41413:17:0::1;41433:27;:20:::0;41458:1:::1;41433:24;:27::i;:::-;41413:47:::0;-1:-1:-1;41471:16:0::1;41490:53;41413:47:::0;41490:38:::1;:20:::0;41515:12;41490:24:::1;:38::i;:::-;:42:::0;::::1;:53::i;:::-;41610:14;::::0;41471:72;;-1:-1:-1;41577:59:0::1;::::0;41603:4:::1;::::0;-1:-1:-1;;;;;41610:14:0::1;41626:9:::0;41577:17:::1;:59::i;:::-;41697:30;41714:12;41697:16;:30::i;:::-;41810:21;41789:18;41867:24;41889:1;41867:17;41810:21:::0;41882:1:::1;41867:14;:17::i;:24::-;41910:15;::::0;41902:49:::1;::::0;41842;;-1:-1:-1;;;;;;41910:15:0::1;::::0;41902:49;::::1;;;::::0;41842;;41910:15:::1;41902:49:::0;41910:15;41902:49;41842;41910:15;41902:49;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;41956:26:0::1;41985:30;:10:::0;42000:14;41985::::1;:30::i;:::-;41956:59:::0;-1:-1:-1;42020:18:0::1;42041:32;42071:1;42041:25;41956:59:::0;42064:1:::1;42041:22;:25::i;:32::-;42086:9;::::0;42078:39:::1;::::0;42020:53;;-1:-1:-1;;;;;;42086:9:0::1;::::0;42078:39;::::1;;;::::0;42020:53;;42086:9:::1;42078:39:::0;42086:9;42078:39;42020:53;42086:9;42078:39;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;42122:23:0::1;42148:34;:18:::0;42171:10;42148:22:::1;:34::i;:::-;42122:60;;42244:39;42257:8;42267:15;42244:12;:39::i;:::-;42309:51;::::0;;13634:25:1;;;13690:2;13675:18;;13668:34;;;13718:18;;;13711:34;;;42309:51:0::1;::::0;13622:2:1;13607:18;42309:51:0::1;;;;;;;-1:-1:-1::0;;26911:16:0;:24;;-1:-1:-1;;26911:24:0;;;-1:-1:-1;;;;;;;41171:1197:0:o;43567:1143::-;43678:8;;;;43674:143;;15750:7;15777:6;-1:-1:-1;;;;;43710:17:0;;;15777:6;;43710:17;;:46;;-1:-1:-1;43741:15:0;;-1:-1:-1;;;;;43731:25:0;;;43741:15;;43731:25;43710:46;43702:55;;;;;;-1:-1:-1;;;;;43840:18:0;;;;;;:10;:18;;;;;;;;;:43;;-1:-1:-1;;;;;;43862:21:0;;;;;;:10;:21;;;;;;;;43840:43;43837:126;;;43899:52;;-1:-1:-1;;;43899:52:0;;13958:2:1;43899:52:0;;;13940:21:1;13997:2;13977:18;;;13970:30;14036:29;14016:18;;;14009:57;14083:18;;43899:52:0;13756:351:1;43899:52:0;43987:7;43983:40;;44009:14;:12;:14::i;:::-;-1:-1:-1;;;;;44048:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;44072:22:0;;;;;;:11;:22;;;;;;;;44071:23;44048:46;44044:597;;;44111:48;44133:6;44141:9;44152:6;44111:21;:48::i;:::-;44044:597;;;-1:-1:-1;;;;;44182:19:0;;;;;;:11;:19;;;;;;;;44181:20;:46;;;;-1:-1:-1;;;;;;44205:22:0;;;;;;:11;:22;;;;;;;;44181:46;44177:464;;;44244:46;44264:6;44272:9;44283:6;44244:19;:46::i;44177:464::-;-1:-1:-1;;;;;44313:19:0;;;;;;:11;:19;;;;;;;;44312:20;:47;;;;-1:-1:-1;;;;;;44337:22:0;;;;;;:11;:22;;;;;;;;44336:23;44312:47;44308:333;;;44376:44;44394:6;44402:9;44413:6;44376:17;:44::i;44308:333::-;-1:-1:-1;;;;;44442:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;44465:22:0;;;;;;:11;:22;;;;;;;;44442:45;44438:203;;;44504:48;44526:6;44534:9;44545:6;44504:21;:48::i;44438:203::-;44585:44;44603:6;44611:9;44622:6;44585:17;:44::i;:::-;44665:7;44661:41;;44687:15;38787;;38777:7;:25;38829:21;;38813:13;:37;38733:125;44687:15;43567:1143;;;;:::o;37191:561::-;37288:7;;37241;;;;25655:22;37241:7;37348:289;37372:9;:16;37368:20;;37348:289;;;37438:7;37414;:21;37422:9;37432:1;37422:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;37422:12:0;37414:21;;;;;;;;;;;;;:31;;:66;;;37473:7;37449;:21;37457:9;37467:1;37457:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;37457:12:0;37449:21;;;;;;;;;;;;;:31;37414:66;37410:97;;;-1:-1:-1;;37490:7:0;;;25655:22;;-1:-1:-1;37191:561:0;-1:-1:-1;;37191:561:0:o;37410:97::-;37532:34;37544:7;:21;37552:9;37562:1;37552:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;37552:12:0;37544:21;;;;;;;;;;;;;37532:7;;:11;:34::i;:::-;37522:44;;37591:34;37603:7;:21;37611:9;37621:1;37611:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;37611:12:0;37603:21;;;;;;;;;;;;;37591:7;;:11;:34::i;:::-;37581:44;-1:-1:-1;37390:3:0;;;;:::i;:::-;;;;37348:289;;;-1:-1:-1;37661:7:0;;:20;;25655:22;37661:11;:20::i;:::-;37651:7;:30;37647:61;;;-1:-1:-1;;37691:7:0;;;25655:22;;-1:-1:-1;37191:561:0;-1:-1:-1;37191:561:0:o;37647:61::-;37727:7;;37736;;-1:-1:-1;37191:561:0;-1:-1:-1;37191:561:0:o;6494:278::-;6580:7;6615:12;6608:5;6600:28;;;;-1:-1:-1;;;6600:28:0;;;;;;;;:::i;:::-;-1:-1:-1;6639:9:0;6651:5;6655:1;6651;:5;:::i;36245:330::-;36305:7;36314;36323;36343:12;36358:24;36374:7;36358:15;:24::i;:::-;36343:39;;36393:18;36414:30;36436:7;36414:21;:30::i;:::-;36393:51;-1:-1:-1;36455:23:0;36481:33;36393:51;36481:17;:7;36493:4;36481:11;:17::i;:33::-;36455:59;36550:4;;-1:-1:-1;36556:10:0;;-1:-1:-1;36245:330:0;;-1:-1:-1;;;36245:330:0:o;36583:429::-;36698:7;;;;36754:24;:7;36766:11;36754;:24::i;:::-;36736:42;-1:-1:-1;36789:12:0;36804:21;:4;36813:11;36804:8;:21::i;:::-;36789:36;-1:-1:-1;36836:18:0;36857:27;:10;36872:11;36857:14;:27::i;:::-;36836:48;-1:-1:-1;36895:23:0;36921:33;36836:48;36921:17;:7;36933:4;36921:11;:17::i;:33::-;36973:7;;;;-1:-1:-1;36999:4:0;;-1:-1:-1;36583:429:0;;-1:-1:-1;;;;;;;36583:429:0:o;4919:471::-;4977:7;5222:6;5218:47;;-1:-1:-1;5252:1:0;5245:8;;5218:47;5277:9;5289:5;5293:1;5289;:5;:::i;:::-;5277:17;-1:-1:-1;5322:1:0;5313:5;5317:1;5277:17;5313:5;:::i;:::-;:10;5305:56;;;;-1:-1:-1;;;5305:56:0;;14536:2:1;5305:56:0;;;14518:21:1;14575:2;14555:18;;;14548:30;14614:34;14594:18;;;14587:62;-1:-1:-1;;;14665:18:1;;;14658:31;14706:19;;5305:56:0;14334:397:1;44718:502:0;44817:15;44834:23;44859:12;44873:23;44898:12;44912:18;44934:19;44945:7;44934:10;:19::i;:::-;-1:-1:-1;;;;;44982:15:0;;;;;;:7;:15;;;;;;44816:137;;-1:-1:-1;44816:137:0;;-1:-1:-1;44816:137:0;;-1:-1:-1;44816:137:0;-1:-1:-1;44816:137:0;-1:-1:-1;44816:137:0;-1:-1:-1;44982:28:0;;44816:137;44982:19;:28::i;:::-;-1:-1:-1;;;;;44964:15:0;;;;;;;:7;:15;;;;;;:46;;;;45042:18;;;;;;;:39;;45065:15;45042:22;:39::i;:::-;-1:-1:-1;;;;;45021:18:0;;;;;;:7;:18;;;;;:60;45092:26;45107:10;45092:14;:26::i;:::-;45129:23;45141:4;45147;45129:11;:23::i;:::-;45185:9;-1:-1:-1;;;;;45168:44:0;45177:6;-1:-1:-1;;;;;45168:44:0;;45196:15;45168:44;;;;1662:25:1;;1650:2;1635:18;;1516:177;45168:44:0;;;;;;;;44805:415;;;;;;44718:502;;;:::o;42376:589::-;42526:16;;;42540:1;42526:16;;;;;;;;42502:21;;42526:16;;;;;;;;;;-1:-1:-1;42526:16:0;42502:40;;42571:4;42553;42558:1;42553:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;42553:23:0;;;-1:-1:-1;;;;;42553:23:0;;;;;42597:15;-1:-1:-1;;;;;42597:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42587:4;42592:1;42587:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;42587:32:0;;;-1:-1:-1;;;;;42587:32:0;;;;;42632:62;42649:4;42664:15;42682:11;42632:8;:62::i;:::-;42733:224;;-1:-1:-1;;;42733:224:0;;-1:-1:-1;;;;;42733:15:0;:66;;;;:224;;42814:11;;42840:1;;42884:4;;42911;;42931:15;;42733:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42973:513;43121:62;43138:4;43153:15;43171:11;43121:8;:62::i;:::-;43226:15;-1:-1:-1;;;;;43226:31:0;;43265:9;43298:4;43318:11;43344:1;43387;43430:7;15750;15777:6;-1:-1:-1;;;;;15777:6:0;;15712:79;43430:7;43226:252;;;;;;-1:-1:-1;;;;;;43226:252:0;;;-1:-1:-1;;;;;16468:15:1;;;43226:252:0;;;16450:34:1;16500:18;;;16493:34;;;;16543:18;;;16536:34;;;;16586:18;;;16579:34;16650:15;;;16629:19;;;16622:44;43452:15:0;16682:19:1;;;16675:35;16384:19;;43226:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;45822:566::-;45925:15;45942:23;45967:12;45981:23;46006:12;46020:18;46042:19;46053:7;46042:10;:19::i;:::-;-1:-1:-1;;;;;46090:15:0;;;;;;:7;:15;;;;;;45924:137;;-1:-1:-1;45924:137:0;;-1:-1:-1;45924:137:0;;-1:-1:-1;45924:137:0;-1:-1:-1;45924:137:0;-1:-1:-1;45924:137:0;-1:-1:-1;46090:28:0;;46110:7;46090:19;:28::i;:::-;-1:-1:-1;;;;;46072:15:0;;;;;;:7;:15;;;;;;;;:46;;;;46147:7;:15;;;;:28;;46167:7;46147:19;:28::i;45228:586::-;45329:15;45346:23;45371:12;45385:23;45410:12;45424:18;45446:19;45457:7;45446:10;:19::i;:::-;-1:-1:-1;;;;;45494:15:0;;;;;;:7;:15;;;;;;45328:137;;-1:-1:-1;45328:137:0;;-1:-1:-1;45328:137:0;;-1:-1:-1;45328:137:0;-1:-1:-1;45328:137:0;-1:-1:-1;45328:137:0;-1:-1:-1;45494:28:0;;45328:137;45494:19;:28::i;:::-;-1:-1:-1;;;;;45476:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;45554:18;;;;;:7;:18;;;;;:39;;45577:15;45554:22;:39::i;:::-;-1:-1:-1;;;;;45533:18:0;;;;;;:7;:18;;;;;;;;:60;;;;45625:7;:18;;;;:39;;45648:15;45625:22;:39::i;32677:642::-;32780:15;32797:23;32822:12;32836:23;32861:12;32875:18;32897:19;32908:7;32897:10;:19::i;:::-;-1:-1:-1;;;;;32945:15:0;;;;;;:7;:15;;;;;;32779:137;;-1:-1:-1;32779:137:0;;-1:-1:-1;32779:137:0;;-1:-1:-1;32779:137:0;-1:-1:-1;32779:137:0;-1:-1:-1;32779:137:0;-1:-1:-1;32945:28:0;;32965:7;32945:19;:28::i;:::-;-1:-1:-1;;;;;32927:15:0;;;;;;:7;:15;;;;;;;;:46;;;;33002:7;:15;;;;:28;;33022:7;33002:19;:28::i;38131:154::-;38195:7;38222:55;38261:5;38222:20;38234:7;;38222;:11;;:20;;;;:::i;38293:166::-;38363:7;38390:61;38435:5;38390:26;38402:13;;38390:7;:11;;:26;;;;:::i;37764:355::-;37827:19;37850:10;:8;:10::i;:::-;37827:33;-1:-1:-1;37871:18:0;37892:27;:10;37827:33;37892:14;:27::i;:::-;37971:4;37955:22;;;;:7;:22;;;;;;37871:48;;-1:-1:-1;37955:38:0;;37871:48;37955:26;:38::i;:::-;37946:4;37930:22;;;;:7;:22;;;;;;;;:63;;;;38007:11;:26;;;;;;38004:107;;;38089:4;38073:22;;;;:7;:22;;;;;;:38;;38100:10;38073:26;:38::i;:::-;38064:4;38048:22;;;;:7;:22;;;;;:63;37816:303;;37764:355;:::o;35663:147::-;35741:7;;:17;;35753:4;35741:11;:17::i;:::-;35731:7;:27;35782:10;;:20;;35797:4;35782:14;:20::i;:::-;35769:10;:33;-1:-1:-1;;35663: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:456::-;2010:6;2018;2026;2079:2;2067:9;2058:7;2054:23;2050:32;2047:52;;;2095:1;2092;2085:12;2047:52;2134:9;2121:23;2153:31;2178:5;2153:31;:::i;:::-;2203:5;-1:-1:-1;2260:2:1;2245:18;;2232:32;2273:33;2232:32;2273:33;:::i;:::-;1933:456;;2325:7;;-1:-1:-1;;;2379:2:1;2364:18;;;;2351:32;;1933:456::o;2394:180::-;2453:6;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;-1:-1:-1;2545:23:1;;2394:180;-1:-1:-1;2394:180:1:o;2768:401::-;2849:6;2857;2910:2;2898:9;2889:7;2885:23;2881:32;2878:52;;;2926:1;2923;2916:12;2878:52;2965:9;2952:23;2984:31;3009:5;2984:31;:::i;:::-;3034:5;-1:-1:-1;3091:2:1;3076:18;;3063:32;3104:33;3063:32;3104:33;:::i;:::-;3156:7;3146:17;;;2768:401;;;;;:::o;3174:118::-;3260:5;3253:13;3246:21;3239:5;3236:32;3226:60;;3282:1;3279;3272:12;3297:309;3362:6;3370;3423:2;3411:9;3402:7;3398:23;3394:32;3391:52;;;3439:1;3436;3429:12;3391:52;3475:9;3462:23;3452:33;;3535:2;3524:9;3520:18;3507:32;3548:28;3570:5;3548:28;:::i;4079:241::-;4135:6;4188:2;4176:9;4167:7;4163:23;4159:32;4156:52;;;4204:1;4201;4194:12;4156:52;4243:9;4230:23;4262:28;4284:5;4262:28;:::i;4325:367::-;4388:8;4398:6;4452:3;4445:4;4437:6;4433:17;4429:27;4419:55;;4470:1;4467;4460:12;4419:55;-1:-1:-1;4493:20:1;;4536:18;4525:30;;4522:50;;;4568:1;4565;4558:12;4522:50;4605:4;4597:6;4593:17;4581:29;;4665:3;4658:4;4648:6;4645:1;4641:14;4633:6;4629:27;4625:38;4622:47;4619:67;;;4682:1;4679;4672:12;4619:67;4325:367;;;;;:::o;4697:773::-;4819:6;4827;4835;4843;4896:2;4884:9;4875:7;4871:23;4867:32;4864:52;;;4912:1;4909;4902:12;4864:52;4952:9;4939:23;4981:18;5022:2;5014:6;5011:14;5008:34;;;5038:1;5035;5028:12;5008:34;5077:70;5139:7;5130:6;5119:9;5115:22;5077:70;:::i;:::-;5166:8;;-1:-1:-1;5051:96:1;-1:-1:-1;5254:2:1;5239:18;;5226:32;;-1:-1:-1;5270:16:1;;;5267:36;;;5299:1;5296;5289:12;5267:36;;5338:72;5402:7;5391:8;5380:9;5376:24;5338:72;:::i;:::-;4697:773;;;;-1:-1:-1;5429:8:1;-1:-1:-1;;;;4697:773:1:o;5868:356::-;6070:2;6052:21;;;6089:18;;;6082:30;6148:34;6143:2;6128:18;;6121:62;6215:2;6200:18;;5868:356::o;6650:127::-;6711:10;6706:3;6702:20;6699:1;6692:31;6742:4;6739:1;6732:15;6766:4;6763:1;6756:15;6782:168;6822:7;6888:1;6884;6880:6;6876:14;6873:1;6870:21;6865:1;6858:9;6851:17;6847:45;6844:71;;;6895:18;;:::i;:::-;-1:-1:-1;6935:9:1;;6782:168::o;7722:127::-;7783:10;7778:3;7774:20;7771:1;7764:31;7814:4;7811:1;7804:15;7838:4;7835:1;7828:15;7854:125;7894:4;7922:1;7919;7916:8;7913:34;;;7927:18;;:::i;:::-;-1:-1:-1;7964:9:1;;7854:125::o;7984:127::-;8045:10;8040:3;8036:20;8033:1;8026:31;8076:4;8073:1;8066:15;8100:4;8097:1;8090:15;8116:135;8155:3;-1:-1:-1;;8176:17:1;;8173:43;;;8196:18;;:::i;:::-;-1:-1:-1;8243:1:1;8232:13;;8116:135::o;8256:184::-;8326:6;8379:2;8367:9;8358:7;8354:23;8350:32;8347:52;;;8395:1;8392;8385:12;8347:52;-1:-1:-1;8418:16:1;;8256:184;-1:-1:-1;8256:184:1:o;8724:245::-;8791:6;8844:2;8832:9;8823:7;8819:23;8815:32;8812:52;;;8860:1;8857;8850:12;8812:52;8892:9;8886:16;8911:28;8933:5;8911:28;:::i;10099:128::-;10139:3;10170:1;10166:6;10163:1;10160:13;10157:39;;;10176:18;;:::i;:::-;-1:-1:-1;10212:9:1;;10099:128::o;14112:217::-;14152:1;14178;14168:132;;14222:10;14217:3;14213:20;14210:1;14203:31;14257:4;14254:1;14247:15;14285:4;14282:1;14275:15;14168:132;-1:-1:-1;14314:9:1;;14112:217::o;14868:251::-;14938:6;14991:2;14979:9;14970:7;14966:23;14962:32;14959:52;;;15007:1;15004;14997:12;14959:52;15039:9;15033:16;15058:31;15083:5;15058:31;:::i;15124:980::-;15386:4;15434:3;15423:9;15419:19;15465:6;15454:9;15447:25;15491:2;15529:6;15524:2;15513:9;15509:18;15502:34;15572:3;15567:2;15556:9;15552:18;15545:31;15596:6;15631;15625:13;15662:6;15654;15647:22;15700:3;15689:9;15685:19;15678:26;;15739:2;15731:6;15727:15;15713:29;;15760:1;15770:195;15784:6;15781:1;15778:13;15770:195;;;15849:13;;-1:-1:-1;;;;;15845:39:1;15833:52;;15940:15;;;;15905:12;;;;15881:1;15799:9;15770:195;;;-1:-1:-1;;;;;;;16021:32:1;;;;16016:2;16001:18;;15994:60;-1:-1:-1;;;16085:3:1;16070:19;16063:35;15982:3;15124:980;-1:-1:-1;;;15124:980:1:o;16721:306::-;16809:6;16817;16825;16878:2;16866:9;16857:7;16853:23;16849:32;16846:52;;;16894:1;16891;16884:12;16846:52;16923:9;16917:16;16907:26;;16973:2;16962:9;16958:18;16952:25;16942:35;;17017:2;17006:9;17002:18;16996:25;16986:35;;16721:306;;;;;:::o

Swarm Source

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