ETH Price: $3,495.20 (+2.60%)
Gas: 2 Gwei

Token

Fear of Market Crash (FOMC)
 

Overview

Max Total Supply

666,000,000,000 FOMC

Holders

339

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
harryswan.eth
Balance
108,238.753067794 FOMC

Value
$0.00
0x1e23166b3b73dd2ee9d9db190aceeee8f8edd0aa
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:
FOMC

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 9999 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/*
                                                                
                      bj:...............jb                      
                 H+..........................+H                 
              b..................................b              
           M:.............+6bHMMMMHb6+.............:M           
         H...........6M       HbbH       M6...........H         
        :........:H      HbHj.....+Hbbb6     H:........:        
      b........+      Hb6...........Mjj6Hb      +........b      
     j.......+      bH:....:66j::....66:.:HH      +.......j     
    +.......H      b+....6+.j6+:H:jj.j6jH..bb      H.......+    
   j.......M      b+....j+.bb6:+..:..66bb...Mb      M.......j   
  b.......M      b+...jb6...............bj..+b        .......b  
  .......b      MH.... Mj...............:M..jbM       H.......  
 b......+       bM:..H .................: :.+H         j......b 
 j......b        66..H..b Hjj......+bH+..H:.Hb         b......j 
 +......M        bH:.66 HHHb  b.:H  b66M:+b:Mbb        M......: 
 :......M       bj.666M...6+j.b.H.6:6+j.  MjHHb         ......: 
 +......H       bj6b+:6+.....H..6+.....6:.6 :bb        M......+ 
 6......6        b66bH.:bHH6+....jMMMH6... +bb         6......6 
 M.......         b6+6:.....:6b+bb.+.....6::b          .......M 
  j......j         HHH+...j...:....:6....bbb          j......j  
   .......6          bb...:b:+H66jjj.....HH          6.......   
   H.......j          bj................jb          j.......H   
    H.......:M      6H+HM+....+..+....6HHjbM       :.......H    
     M........+  Hb6+M bb  6Hbj++j6+.:Mj  H+HM   j........M     
       +........+Hb    6.j  :.:jj:..6b.j    jHM+........+       
        M:.........jM  b...+H.....H+...     j.........:M        
          H:...........jHbj:.6HbH+..:jHHj...........:H          
             +....................................+             
               Mj..............................jM               
                   Hj......................jH                   
                         Mb6j+::::+j6bM                        

                         
    FOMC Coin, Fear Of Market Crash

    https://t.me/FOMCeth
*/



// 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;
    mapping (address => bool) public admins;   
    event AdminAdded(address adminAddress);
    event AdminRemoved(address adminAddress);     
    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");
        _;
    }
    /**
    * Added modifier for external access to taxfee and reflection modifications within allowed range & to exclude CEX wallet and upcoming staking platform addresses to avoid fees on transfers.
    */    
    modifier onlyAdmins() {
        require(owner() == _msgSender() || admins[_msgSender()] == true);
        _;
    }

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

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

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

    //Locks the contract for owner for the amount of time provided
    function lock(uint256 time) public virtual onlyOwner {
        _previousOwner = _owner;
        _owner = address(0);
        _lockTime = block.timestamp + time;
        emit OwnershipTransferred(_owner, address(0));
    }
    
    //Unlocks the contract for owner when _lockTime is exceeds
    function unlock() public virtual {
        require(_previousOwner == msg.sender, "You don't have permission to unlock");
        require(block.timestamp > _lockTime , "Contract is locked until 7 days");
        emit OwnershipTransferred(_owner, _previousOwner);
        _owner = _previousOwner;
    }
    
    //added for external access of inevitable functions FFS!
    
    function isAdmin(address _address) public view returns (bool) {
        return admins[_address];
    }

    function isOwner(address _address) public view returns (bool) {
        return _address == owner();
    }

    function isAdminOrOwner(address _address) public view returns (bool) {
        return admins[_address] == true || _address == owner();
    }

    function setAdmin(address _adminAddress, bool _isAdmin) public onlyOwner {
        admins[_adminAddress] = _isAdmin;

        if (_isAdmin == true) {
            emit AdminAdded(_adminAddress);
        } else {
            emit AdminRemoved(_adminAddress);
        }
    }        
}


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

    string private _name = "Fear of Market Crash";
    string private _symbol = "FOMC";
    uint8 private _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 = 9990000000 * 10**9;
    uint256 public numTokensSellToAddToLiquidity = 6660000000 * 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() public view returns (string memory) {
        return _name;
    }

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

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

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

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

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

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

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

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

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

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

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

    function totalFees() public view returns (uint256) {
        return _tFeeTotal;
    }
    
    function 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) public {
        address sender = _msgSender();
        require(!_isExcluded[sender], "Excluded addresses cannot call this function");
        (uint256 rAmount,,,,,) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rTotal = _rTotal.sub(rAmount);
        _tFeeTotal = _tFeeTotal.add(tAmount);
    }

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

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

    function excludeFromReward(address account) public onlyAdmins() {
        // 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 onlyAdmins() {
        require(_isExcluded[account], "Account is already excluded");
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_excluded[i] == account) {
                _excluded[i] = _excluded[_excluded.length - 1];
                _tOwned[account] = 0;
                _isExcluded[account] = false;
                _excluded.pop();
                break;
            }
        }
    }
        function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);        
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }
    
    function excludeFromFee(address account) public onlyAdmins() {
        _isExcludedFromFee[account] = true;
    }
    
    function includeInFee(address account) public onlyAdmins() {
        _isExcludedFromFee[account] = false;
    }

    function setMarketingWallet(address walletAddress) public onlyAdmins() {
        marketingWallet = walletAddress;
    }

    function upliftTxAmount() external onlyOwner() {
        _maxTxAmount = 666000000000 * 10**9;
    }
    
    function setSwapThresholdAmount(uint256 SwapThresholdAmount) external onlyAdmins() {
        require(SwapThresholdAmount > 66600000, "Swap Threshold Amount cannot be less than 66.6 Thousands");
        numTokensSellToAddToLiquidity = SwapThresholdAmount * 10**9;
    }
    
    function claimTokens () public onlyOwner {
        // make sure we capture all ETH that may or may not be sent to this contract
        payable(marketingWallet).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[] calldata botwallet) external onlyAdmins() {
      for (uint256 i; i < botwallet.length; ++i) {
        botWallets[botwallet[i]] = true;
      }
    }    

    
    function removeBotWallet(address botwallet) external onlyAdmins() {
        botWallets[botwallet] = false;
    }
    
    function getBotWalletStatus(address botwallet) public view returns (bool) {
        return botWallets[botwallet];
    }
    
    function allowtrading()external onlyOwner() {
        canTrade = true;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        // how much ETH did we just swap into?
        uint256 newBalance = address(this).balance.sub(initialBalance);
        uint256 marketingshare = newBalance.mul(75).div(100);
        payable(marketingWallet).transfer(marketingshare);
        newBalance -= marketingshare;
        // add liquidity to uniswap
        addLiquidity(otherHalf, newBalance);
        
        emit SwapAndLiquify(half, newBalance, otherHalf);
    }

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

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

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

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

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

    //this method is responsible for taking all fee, if takeFee is true
    function _tokenTransfer(address sender, address recipient, uint256 amount,bool takeFee) private {
        if(!canTrade){
            require(sender == owner()); // only owner allowed to trade or add liquidity
        }
        
        if(botWallets[sender] || botWallets[recipient]){
            require(botscantrade, "bots arent allowed to trade");
        }
        
        if(!takeFee)
            removeAllFee();
        
        if (_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferFromExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && _isExcluded[recipient]) {
            _transferToExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferStandard(sender, recipient, amount);
        } else if (_isExcluded[sender] && _isExcluded[recipient]) {
            _transferBothExcluded(sender, recipient, amount);
        } else {
            _transferStandard(sender, recipient, amount);
        }
        
        if(!takeFee)
            restoreAllFee();
    }

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

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

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


    function setLiquidityFee(uint256 LiquidityFee) external onlyAdmins() {
        require(LiquidityFee >= 0 && LiquidityFee <= 25, 'LiquidityFee should be in 0 - 25');
        
        _liquidityFee = LiquidityFee;
    }




}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"adminAddress","type":"address"}],"name":"AdminAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"adminAddress","type":"address"}],"name":"AdminRemoved","type":"event"},{"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":"","type":"address"}],"name":"admins","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[{"internalType":"address","name":"","type":"address"}],"name":"botWallets","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"botwallet","type":"address"}],"name":"getBotWalletStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isAdminOrOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"_adminAddress","type":"address"},{"internalType":"bool","name":"_isAdmin","type":"bool"}],"name":"setAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"LiquidityFee","type":"uint256"}],"name":"setLiquidityFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"walletAddress","type":"address"}],"name":"setMarketingWallet","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"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"upliftTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600b805461ffff1916905568241a9b4f617a280000600c8190556200002c906000196200045d565b6200003a9060001962000480565b600d556040805180820190915260148082527f46656172206f66204d61726b657420437261736800000000000000000000000060209092019182526200008391601091620003b7565b5060408051808201909152600480825263464f4d4360e01b6020909201918252620000b191601191620003b7565b506012805460ff1916600917905560016013819055601455600c60158190556016556017805461ff001916610100179055678aa39c121a270000601855675c6d12b6bc1a00006019553480156200010757600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600d543360009081526004602081815260409283902093909355815163c45a015560e01b81529151737a250d5630b4cf539739df2c5dacb4c659f2488d93849363c45a0155938181019391829003018186803b158015620001a957600080fd5b505afa158015620001be573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001e49190620004a6565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200022d57600080fd5b505afa15801562000242573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002689190620004a6565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b158015620002b157600080fd5b505af1158015620002c6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ec9190620004a6565b6001600160a01b0390811660a0528116608052600160076000620003186000546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526007909252902080549091166001179055620003603390565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600c54604051620003a891815260200190565b60405180910390a35062000515565b828054620003c590620004d8565b90600052602060002090601f016020900481019282620003e9576000855562000434565b82601f106200040457805160ff191683800117855562000434565b8280016001018555821562000434579182015b828111156200043457825182559160200191906001019062000417565b506200044292915062000446565b5090565b5b8082111562000442576000815560010162000447565b6000826200047b57634e487b7160e01b600052601260045260246000fd5b500690565b600082821015620004a157634e487b7160e01b600052601160045260246000fd5b500390565b600060208284031215620004b957600080fd5b81516001600160a01b0381168114620004d157600080fd5b9392505050565b600181811c90821680620004ed57607f821691505b602082108114156200050f57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051613ab262000565600039600081816106df015261258e01526000818161042901528181612dec01528181612eb401528181612f0901528181613016015261303d0152613ab26000f3fe60806040526004361061036f5760003560e01c80635342acb4116101c6578063a6334231116100f7578063dd46706411610095578063ea2f0b371161006f578063ea2f0b3714610a6f578063edd3b72714610a8f578063f2fde38b14610aaf578063f63821f614610acf57600080fd5b8063dd467064146109f4578063dd62ed3e14610a14578063e8c4c43c14610a5a57600080fd5b8063b6c52324116100d1578063b6c5232414610989578063c49b9a801461099e578063d12a7688146109be578063d4a3883f146109d457600080fd5b8063a63342311461093f578063a69df4b514610954578063a9059cbb1461096957600080fd5b8063764d72bf116101645780638ba4cc3c1161013e5780638ba4cc3c146108cc5780638da5cb5b146108ec57806395d89b411461090a578063a457c2d71461091f57600080fd5b8063764d72bf1461085d5780637d1db4a51461087d57806388f820201461089357600080fd5b80636bc87c3a116101a05780636bc87c3a146107f257806370a0823114610808578063715018a61461082857806375f0a8741461083d57600080fd5b80635342acb4146107605780635d098b381461079957806360d48489146107b957600080fd5b80633685d419116102a057806343baeb5c1161023e57806349bd5a5e1161021857806349bd5a5e146106cd5780634a74bb02146107015780634b0bddd21461072057806352390c021461074057600080fd5b806343baeb5c146106785780634549b0391461069857806348c54b9d146106b857600080fd5b80633b124fe71161027a5780633b124fe7146105f25780633bd5d17314610608578063429b62e514610628578063437823ec1461065857600080fd5b80633685d4191461059257806339509351146105b25780633ae7dc20146105d257600080fd5b806324d7806c1161030d5780632f05205c116102e75780632f05205c146105115780632f54bf6e14610530578063313ce56714610550578063357bf15c1461057257600080fd5b806324d7806c1461049857806329e04b4a146104d15780632d838119146104f157600080fd5b806313114a9d1161034957806313114a9d146103f85780631694505e1461041757806318160ddd1461046357806323b872dd1461047857600080fd5b80630305caff1461037b57806306fdde031461039d578063095ea7b3146103c857600080fd5b3661037657005b600080fd5b34801561038757600080fd5b5061039b6103963660046134b5565b610aff565b005b3480156103a957600080fd5b506103b2610b57565b6040516103bf91906134d2565b60405180910390f35b3480156103d457600080fd5b506103e86103e3366004613545565b610be9565b60405190151581526020016103bf565b34801561040457600080fd5b50600e545b6040519081526020016103bf565b34801561042357600080fd5b5061044b7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016103bf565b34801561046f57600080fd5b50600c54610409565b34801561048457600080fd5b506103e8610493366004613571565b610c00565b3480156104a457600080fd5b506103e86104b33660046134b5565b6001600160a01b031660009081526001602052604090205460ff1690565b3480156104dd57600080fd5b5061039b6104ec3660046135b2565b610c69565b3480156104fd57600080fd5b5061040961050c3660046135b2565b610d32565b34801561051d57600080fd5b50600b546103e890610100900460ff1681565b34801561053c57600080fd5b506103e861054b3660046134b5565b610dc9565b34801561055c57600080fd5b5060125460405160ff90911681526020016103bf565b34801561057e57600080fd5b5061039b61058d3660046135b2565b610df2565b34801561059e57600080fd5b5061039b6105ad3660046134b5565b610e7f565b3480156105be57600080fd5b506103e86105cd366004613545565b611091565b3480156105de57600080fd5b5061039b6105ed3660046135cb565b6110c7565b3480156105fe57600080fd5b5061040960135481565b34801561061457600080fd5b5061039b6106233660046135b2565b611256565b34801561063457600080fd5b506103e86106433660046134b5565b60016020526000908152604090205460ff1681565b34801561066457600080fd5b5061039b6106733660046134b5565b611351565b34801561068457600080fd5b506103e86106933660046134b5565b6113ac565b3480156106a457600080fd5b506104096106b3366004613612565b6113e4565b3480156106c457600080fd5b5061039b611471565b3480156106d957600080fd5b5061044b7f000000000000000000000000000000000000000000000000000000000000000081565b34801561070d57600080fd5b506017546103e890610100900460ff1681565b34801561072c57600080fd5b5061039b61073b366004613637565b611507565b34801561074c57600080fd5b5061039b61075b3660046134b5565b61160b565b34801561076c57600080fd5b506103e861077b3660046134b5565b6001600160a01b031660009081526007602052604090205460ff1690565b3480156107a557600080fd5b5061039b6107b43660046134b5565b611783565b3480156107c557600080fd5b506103e86107d43660046134b5565b6001600160a01b03166000908152600a602052604090205460ff1690565b3480156107fe57600080fd5b5061040960155481565b34801561081457600080fd5b506104096108233660046134b5565b6117f4565b34801561083457600080fd5b5061039b611853565b34801561084957600080fd5b50600f5461044b906001600160a01b031681565b34801561086957600080fd5b5061039b6108783660046134b5565b61190f565b34801561088957600080fd5b5061040960185481565b34801561089f57600080fd5b506103e86108ae3660046134b5565b6001600160a01b031660009081526008602052604090205460ff1690565b3480156108d857600080fd5b5061039b6108e7366004613545565b61199e565b3480156108f857600080fd5b506000546001600160a01b031661044b565b34801561091657600080fd5b506103b2611a29565b34801561092b57600080fd5b506103e861093a366004613545565b611a38565b34801561094b57600080fd5b5061039b611a87565b34801561096057600080fd5b5061039b611b0f565b34801561097557600080fd5b506103e8610984366004613545565b611c59565b34801561099557600080fd5b50600354610409565b3480156109aa57600080fd5b5061039b6109b9366004613665565b611c66565b3480156109ca57600080fd5b5061040960195481565b3480156109e057600080fd5b5061039b6109ef3660046136ce565b611d31565b348015610a0057600080fd5b5061039b610a0f3660046135b2565b611e54565b348015610a2057600080fd5b50610409610a2f3660046135cb565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b348015610a6657600080fd5b5061039b611f33565b348015610a7b57600080fd5b5061039b610a8a3660046134b5565b611f9c565b348015610a9b57600080fd5b5061039b610aaa36600461373a565b611ff4565b348015610abb57600080fd5b5061039b610aca3660046134b5565b61209b565b348015610adb57600080fd5b506103e8610aea3660046134b5565b600a6020526000908152604090205460ff1681565b6000546001600160a01b0316331480610b2d57503360009081526001602081905260409091205460ff161515145b610b3657600080fd5b6001600160a01b03166000908152600a60205260409020805460ff19169055565b606060108054610b669061377c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b929061377c565b8015610bdf5780601f10610bb457610100808354040283529160200191610bdf565b820191906000526020600020905b815481529060010190602001808311610bc257829003601f168201915b5050505050905090565b6000610bf63384846121e4565b5060015b92915050565b6000610c0d84848461233c565b610c5f8433610c5a85604051806060016040528060288152602001613a30602891396001600160a01b038a1660009081526006602090815260408083203384529091529020549190612648565b6121e4565b5060019392505050565b6000546001600160a01b0316331480610c9757503360009081526001602081905260409091205460ff161515145b610ca057600080fd5b6303f83c408111610d1e5760405162461bcd60e51b815260206004820152603860248201527f53776170205468726573686f6c6420416d6f756e742063616e6e6f742062652060448201527f6c657373207468616e2036362e362054686f7573616e6473000000000000000060648201526084015b60405180910390fd5b610d2c81633b9aca006137ff565b60195550565b6000600d54821115610dac5760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201527f65666c656374696f6e73000000000000000000000000000000000000000000006064820152608401610d15565b6000610db6612682565b9050610dc283826126a5565b9392505050565b600080546001600160a01b03165b6001600160a01b0316826001600160a01b0316149050919050565b6000546001600160a01b0316331480610e2057503360009081526001602081905260409091205460ff161515145b610e2957600080fd5b6019811115610e7a5760405162461bcd60e51b815260206004820181905260248201527f4c69717569646974794665652073686f756c6420626520696e2030202d2032356044820152606401610d15565b601555565b6000546001600160a01b0316331480610ead57503360009081526001602081905260409091205460ff161515145b610eb657600080fd5b6001600160a01b03811660009081526008602052604090205460ff16610f1e5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610d15565b60005b60095481101561108d57816001600160a01b031660098281548110610f4857610f4861383c565b6000918252602090912001546001600160a01b0316141561107b5760098054610f739060019061386b565b81548110610f8357610f8361383c565b600091825260209091200154600980546001600160a01b039092169183908110610faf57610faf61383c565b600091825260208083209190910180547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b039485161790559184168152600582526040808220829055600890925220805460ff19169055600980548061101f5761101f613882565b60008281526020902081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90810180547fffffffffffffffffffffffff00000000000000000000000000000000000000001690550190555050565b80611085816138b1565b915050610f21565b5050565b3360008181526006602090815260408083206001600160a01b03871684529091528120549091610bf6918590610c5a90866126e7565b6000546001600160a01b031633146111215760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d15565b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b0383169063a9059cbb90839083906370a082319060240160206040518083038186803b15801561118357600080fd5b505afa158015611197573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111bb91906138ea565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b15801561121957600080fd5b505af115801561122d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112519190613903565b505050565b3360008181526008602052604090205460ff16156112dc5760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201527f6869732066756e6374696f6e00000000000000000000000000000000000000006064820152608401610d15565b60006112e783612746565b505050506001600160a01b03841660009081526004602052604090205491925061131391905082612795565b6001600160a01b038316600090815260046020526040902055600d546113399082612795565b600d55600e5461134990846126e7565b600e55505050565b6000546001600160a01b031633148061137f57503360009081526001602081905260409091205460ff161515145b61138857600080fd5b6001600160a01b03166000908152600760205260409020805460ff19166001179055565b6001600160a01b038116600090815260016020819052604082205460ff1615151480610bfa57506000546001600160a01b0316610dd7565b6000600c548311156114385760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610d15565b8161145757600061144884612746565b50939550610bfa945050505050565b600061146284612746565b50929550610bfa945050505050565b6000546001600160a01b031633146114cb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d15565b600f546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015611504573d6000803e3d6000fd5b50565b6000546001600160a01b031633146115615760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d15565b6001600160a01b0382166000908152600160208190526040909120805460ff191683151590811790915514156115d2576040516001600160a01b03831681527f44d6d25963f097ad14f29f06854a01f575648a1ef82f30e562ccd3889717e339906020015b60405180910390a15050565b6040516001600160a01b03831681527fa3b62bc36326052d97ea62d63c3d60308ed4c3ea8ac079dd8499f1e9c4f80c0f906020016115c6565b6000546001600160a01b031633148061163957503360009081526001602081905260409091205460ff161515145b61164257600080fd5b6001600160a01b03811660009081526008602052604090205460ff16156116ab5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610d15565b6001600160a01b03811660009081526004602052604090205415611705576001600160a01b0381166000908152600460205260409020546116eb90610d32565b6001600160a01b0382166000908152600560205260409020555b6001600160a01b03166000818152600860205260408120805460ff191660019081179091556009805491820181559091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0180547fffffffffffffffffffffffff0000000000000000000000000000000000000000169091179055565b6000546001600160a01b03163314806117b157503360009081526001602081905260409091205460ff161515145b6117ba57600080fd5b600f80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6001600160a01b03811660009081526008602052604081205460ff161561183157506001600160a01b031660009081526005602052604090205490565b6001600160a01b038216600090815260046020526040902054610bfa90610d32565b6000546001600160a01b031633146118ad5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d15565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b6000546001600160a01b031633146119695760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d15565b6040516001600160a01b038216904780156108fc02916000818181858888f1935050505015801561108d573d6000803e3d6000fd5b6000546001600160a01b031633146119f85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d15565b611a006127d7565b611a183383611a1384633b9aca006137ff565b61233c565b61108d601454601355601654601555565b606060118054610b669061377c565b6000610bf63384610c5a85604051806060016040528060258152602001613a58602591393360009081526006602090815260408083206001600160a01b038d1684529091529020549190612648565b6000546001600160a01b03163314611ae15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d15565b600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff16610100179055565b6002546001600160a01b03163314611b8f5760405162461bcd60e51b815260206004820152602360248201527f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c60448201527f6f636b00000000000000000000000000000000000000000000000000000000006064820152608401610d15565b6003544211611be05760405162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c20372064617973006044820152606401610d15565b600254600080546040516001600160a01b0393841693909116917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600254600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03909216919091179055565b6000610bf633848461233c565b6000546001600160a01b03163314611cc05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d15565b60178054821515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff9091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15990611d2690831515815260200190565b60405180910390a150565b6000546001600160a01b03163314611d8b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d15565b6000838214611ddc5760405162461bcd60e51b815260206004820152601760248201527f6d757374206265207468652073616d65206c656e6774680000000000000000006044820152606401610d15565b83811015611e4d57611e3b858583818110611df957611df961383c565b9050602002016020810190611e0e91906134b5565b848484818110611e2057611e2061383c565b90506020020135633b9aca00611e3691906137ff565b612805565b611e46600182613920565b9050611ddc565b5050505050565b6000546001600160a01b03163314611eae5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d15565b60008054600280547fffffffffffffffffffffffff00000000000000000000000000000000000000009081166001600160a01b03841617909155169055611ef58142613920565b600355600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a350565b6000546001600160a01b03163314611f8d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d15565b68241a9b4f617a280000601855565b6000546001600160a01b0316331480611fca57503360009081526001602081905260409091205460ff161515145b611fd357600080fd5b6001600160a01b03166000908152600760205260409020805460ff19169055565b6000546001600160a01b031633148061202257503360009081526001602081905260409091205460ff161515145b61202b57600080fd5b60005b81811015611251576001600a600085858581811061204e5761204e61383c565b905060200201602081019061206391906134b5565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055612094816138b1565b905061202e565b6000546001600160a01b031633146120f55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d15565b6001600160a01b0381166121715760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610d15565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6001600160a01b03831661225f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610d15565b6001600160a01b0382166122db5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610d15565b6001600160a01b0383811660008181526006602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166123b85760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610d15565b6001600160a01b0382166124345760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610d15565b600081116124aa5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d75737420626520677265617465722060448201527f7468616e207a65726f00000000000000000000000000000000000000000000006064820152608401610d15565b6000546001600160a01b038481169116148015906124d657506000546001600160a01b03838116911614155b15612553576018548111156125535760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d61785460448201527f78416d6f756e742e0000000000000000000000000000000000000000000000006064820152608401610d15565b600061255e306117f4565b9050601854811061256e57506018545b60195481108015908190612585575060175460ff16155b80156125c357507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b80156125d65750601754610100900460ff165b156125e95760195491506125e982612818565b6001600160a01b03851660009081526007602052604090205460019060ff168061262b57506001600160a01b03851660009081526007602052604090205460ff165b15612634575060005b61264086868684612917565b505050505050565b6000818484111561266c5760405162461bcd60e51b8152600401610d1591906134d2565b506000612679848661386b565b95945050505050565b600080600061268f612b53565b909250905061269e82826126a5565b9250505090565b6000610dc283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612cd5565b6000806126f48385613920565b905083811015610dc25760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610d15565b600080600080600080600080600061275d8a612d03565b925092509250600080600061277b8d8686612776612682565b612d45565b919f909e50909c50959a5093985091965092945050505050565b6000610dc283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612648565b6013541580156127e75750601554155b156127ee57565b601380546014556015805460165560009182905555565b61280d6127d7565b611a1833838361233c565b6017805460ff1916600117905560006128328260026126a5565b905060006128408383612795565b90504761284c83612d95565b60006128584783612795565b90506000612872606461286c84604b612f75565b906126a5565b600f546040519192506001600160a01b03169082156108fc029083906000818181858888f193505050501580156128ad573d6000803e3d6000fd5b506128b8818361386b565b91506128c48483613010565b60408051868152602081018490529081018590527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a150506017805460ff1916905550505050565b600b54610100900460ff16612940576000546001600160a01b0385811691161461294057600080fd5b6001600160a01b0384166000908152600a602052604090205460ff168061297f57506001600160a01b0383166000908152600a602052604090205460ff165b156129d657600b5460ff166129d65760405162461bcd60e51b815260206004820152601b60248201527f626f7473206172656e7420616c6c6f77656420746f20747261646500000000006044820152606401610d15565b806129e3576129e36127d7565b6001600160a01b03841660009081526008602052604090205460ff168015612a2457506001600160a01b03831660009081526008602052604090205460ff16155b15612a3957612a34848484613136565b612b37565b6001600160a01b03841660009081526008602052604090205460ff16158015612a7a57506001600160a01b03831660009081526008602052604090205460ff165b15612a8a57612a3484848461325c565b6001600160a01b03841660009081526008602052604090205460ff16158015612acc57506001600160a01b03831660009081526008602052604090205460ff16155b15612adc57612a34848484613305565b6001600160a01b03841660009081526008602052604090205460ff168015612b1c57506001600160a01b03831660009081526008602052604090205460ff165b15612b2c57612a34848484613349565b612b37848484613305565b80612b4d57612b4d601454601355601654601555565b50505050565b600d54600c546000918291825b600954811015612ca557826004600060098481548110612b8257612b8261383c565b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612bed5750816005600060098481548110612bc657612bc661383c565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15612c0357600d54600c54945094505050509091565b612c496004600060098481548110612c1d57612c1d61383c565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490612795565b9250612c916005600060098481548110612c6557612c6561383c565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390612795565b915080612c9d816138b1565b915050612b60565b50600c54600d54612cb5916126a5565b821015612ccc57600d54600c549350935050509091565b90939092509050565b60008183612cf65760405162461bcd60e51b8152600401610d1591906134d2565b5060006126798486613938565b600080600080612d12856133bc565b90506000612d1f866133d8565b90506000612d3782612d318986612795565b90612795565b979296509094509092505050565b6000808080612d548886612f75565b90506000612d628887612f75565b90506000612d708888612f75565b90506000612d8282612d318686612795565b939b939a50919850919650505050505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612dca57612dca61383c565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015612e4357600080fd5b505afa158015612e57573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e7b9190613973565b81600181518110612e8e57612e8e61383c565b60200260200101906001600160a01b031690816001600160a01b031681525050612ed9307f0000000000000000000000000000000000000000000000000000000000000000846121e4565b6040517f791ac9470000000000000000000000000000000000000000000000000000000081526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612f47908590600090869030904290600401613990565b600060405180830381600087803b158015612f6157600080fd5b505af1158015612640573d6000803e3d6000fd5b600082612f8457506000610bfa565b6000612f9083856137ff565b905082612f9d8583613938565b14610dc25760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60448201527f77000000000000000000000000000000000000000000000000000000000000006064820152608401610d15565b61303b307f0000000000000000000000000000000000000000000000000000000000000000846121e4565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7198230856000806130826000546001600160a01b031690565b60405160e088901b7fffffffff000000000000000000000000000000000000000000000000000000001681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c4016060604051808303818588803b1580156130fd57600080fd5b505af1158015613111573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611e4d9190613a01565b60008060008060008061314887612746565b6001600160a01b038f16600090815260056020526040902054959b5093995091975095509350915061317a9088612795565b6001600160a01b038a166000908152600560209081526040808320939093556004905220546131a99087612795565b6001600160a01b03808b1660009081526004602052604080822093909355908a16815220546131d890866126e7565b6001600160a01b0389166000908152600460205260409020556131fa816133f4565b613204848361347c565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161324991815260200190565b60405180910390a3505050505050505050565b60008060008060008061326e87612746565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506132a09087612795565b6001600160a01b03808b16600090815260046020908152604080832094909455918b168152600590915220546132d690846126e7565b6001600160a01b0389166000908152600560209081526040808320939093556004905220546131d890866126e7565b60008060008060008061331787612746565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506131a99087612795565b60008060008060008061335b87612746565b6001600160a01b038f16600090815260056020526040902054959b5093995091975095509350915061338d9088612795565b6001600160a01b038a166000908152600560209081526040808320939093556004905220546132a09087612795565b6000610bfa606461286c60135485612f7590919063ffffffff16565b6000610bfa606461286c60155485612f7590919063ffffffff16565b60006133fe612682565b9050600061340c8383612f75565b3060009081526004602052604090205490915061342990826126e7565b3060009081526004602090815260408083209390935560089052205460ff1615611251573060009081526005602052604090205461346790846126e7565b30600090815260056020526040902055505050565b600d546134899083612795565b600d55600e5461349990826126e7565b600e555050565b6001600160a01b038116811461150457600080fd5b6000602082840312156134c757600080fd5b8135610dc2816134a0565b600060208083528351808285015260005b818110156134ff578581018301518582016040015282016134e3565b81811115613511576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b6000806040838503121561355857600080fd5b8235613563816134a0565b946020939093013593505050565b60008060006060848603121561358657600080fd5b8335613591816134a0565b925060208401356135a1816134a0565b929592945050506040919091013590565b6000602082840312156135c457600080fd5b5035919050565b600080604083850312156135de57600080fd5b82356135e9816134a0565b915060208301356135f9816134a0565b809150509250929050565b801515811461150457600080fd5b6000806040838503121561362557600080fd5b8235915060208301356135f981613604565b6000806040838503121561364a57600080fd5b8235613655816134a0565b915060208301356135f981613604565b60006020828403121561367757600080fd5b8135610dc281613604565b60008083601f84011261369457600080fd5b50813567ffffffffffffffff8111156136ac57600080fd5b6020830191508360208260051b85010111156136c757600080fd5b9250929050565b600080600080604085870312156136e457600080fd5b843567ffffffffffffffff808211156136fc57600080fd5b61370888838901613682565b9096509450602087013591508082111561372157600080fd5b5061372e87828801613682565b95989497509550505050565b6000806020838503121561374d57600080fd5b823567ffffffffffffffff81111561376457600080fd5b61377085828601613682565b90969095509350505050565b600181811c9082168061379057607f821691505b602082108114156137ca577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613837576138376137d0565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008282101561387d5761387d6137d0565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138e3576138e36137d0565b5060010190565b6000602082840312156138fc57600080fd5b5051919050565b60006020828403121561391557600080fd5b8151610dc281613604565b60008219821115613933576139336137d0565b500190565b60008261396e577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b60006020828403121561398557600080fd5b8151610dc2816134a0565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156139e05784516001600160a01b0316835293830193918301916001016139bb565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215613a1657600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220fbb308b16a6802262305abecd5e2cf9824a1394f62768d66e3e5518163de475c64736f6c63430008090033

Deployed Bytecode

0x60806040526004361061036f5760003560e01c80635342acb4116101c6578063a6334231116100f7578063dd46706411610095578063ea2f0b371161006f578063ea2f0b3714610a6f578063edd3b72714610a8f578063f2fde38b14610aaf578063f63821f614610acf57600080fd5b8063dd467064146109f4578063dd62ed3e14610a14578063e8c4c43c14610a5a57600080fd5b8063b6c52324116100d1578063b6c5232414610989578063c49b9a801461099e578063d12a7688146109be578063d4a3883f146109d457600080fd5b8063a63342311461093f578063a69df4b514610954578063a9059cbb1461096957600080fd5b8063764d72bf116101645780638ba4cc3c1161013e5780638ba4cc3c146108cc5780638da5cb5b146108ec57806395d89b411461090a578063a457c2d71461091f57600080fd5b8063764d72bf1461085d5780637d1db4a51461087d57806388f820201461089357600080fd5b80636bc87c3a116101a05780636bc87c3a146107f257806370a0823114610808578063715018a61461082857806375f0a8741461083d57600080fd5b80635342acb4146107605780635d098b381461079957806360d48489146107b957600080fd5b80633685d419116102a057806343baeb5c1161023e57806349bd5a5e1161021857806349bd5a5e146106cd5780634a74bb02146107015780634b0bddd21461072057806352390c021461074057600080fd5b806343baeb5c146106785780634549b0391461069857806348c54b9d146106b857600080fd5b80633b124fe71161027a5780633b124fe7146105f25780633bd5d17314610608578063429b62e514610628578063437823ec1461065857600080fd5b80633685d4191461059257806339509351146105b25780633ae7dc20146105d257600080fd5b806324d7806c1161030d5780632f05205c116102e75780632f05205c146105115780632f54bf6e14610530578063313ce56714610550578063357bf15c1461057257600080fd5b806324d7806c1461049857806329e04b4a146104d15780632d838119146104f157600080fd5b806313114a9d1161034957806313114a9d146103f85780631694505e1461041757806318160ddd1461046357806323b872dd1461047857600080fd5b80630305caff1461037b57806306fdde031461039d578063095ea7b3146103c857600080fd5b3661037657005b600080fd5b34801561038757600080fd5b5061039b6103963660046134b5565b610aff565b005b3480156103a957600080fd5b506103b2610b57565b6040516103bf91906134d2565b60405180910390f35b3480156103d457600080fd5b506103e86103e3366004613545565b610be9565b60405190151581526020016103bf565b34801561040457600080fd5b50600e545b6040519081526020016103bf565b34801561042357600080fd5b5061044b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016103bf565b34801561046f57600080fd5b50600c54610409565b34801561048457600080fd5b506103e8610493366004613571565b610c00565b3480156104a457600080fd5b506103e86104b33660046134b5565b6001600160a01b031660009081526001602052604090205460ff1690565b3480156104dd57600080fd5b5061039b6104ec3660046135b2565b610c69565b3480156104fd57600080fd5b5061040961050c3660046135b2565b610d32565b34801561051d57600080fd5b50600b546103e890610100900460ff1681565b34801561053c57600080fd5b506103e861054b3660046134b5565b610dc9565b34801561055c57600080fd5b5060125460405160ff90911681526020016103bf565b34801561057e57600080fd5b5061039b61058d3660046135b2565b610df2565b34801561059e57600080fd5b5061039b6105ad3660046134b5565b610e7f565b3480156105be57600080fd5b506103e86105cd366004613545565b611091565b3480156105de57600080fd5b5061039b6105ed3660046135cb565b6110c7565b3480156105fe57600080fd5b5061040960135481565b34801561061457600080fd5b5061039b6106233660046135b2565b611256565b34801561063457600080fd5b506103e86106433660046134b5565b60016020526000908152604090205460ff1681565b34801561066457600080fd5b5061039b6106733660046134b5565b611351565b34801561068457600080fd5b506103e86106933660046134b5565b6113ac565b3480156106a457600080fd5b506104096106b3366004613612565b6113e4565b3480156106c457600080fd5b5061039b611471565b3480156106d957600080fd5b5061044b7f000000000000000000000000e4fa1e782163e649bebf5440534cbe6d797168f881565b34801561070d57600080fd5b506017546103e890610100900460ff1681565b34801561072c57600080fd5b5061039b61073b366004613637565b611507565b34801561074c57600080fd5b5061039b61075b3660046134b5565b61160b565b34801561076c57600080fd5b506103e861077b3660046134b5565b6001600160a01b031660009081526007602052604090205460ff1690565b3480156107a557600080fd5b5061039b6107b43660046134b5565b611783565b3480156107c557600080fd5b506103e86107d43660046134b5565b6001600160a01b03166000908152600a602052604090205460ff1690565b3480156107fe57600080fd5b5061040960155481565b34801561081457600080fd5b506104096108233660046134b5565b6117f4565b34801561083457600080fd5b5061039b611853565b34801561084957600080fd5b50600f5461044b906001600160a01b031681565b34801561086957600080fd5b5061039b6108783660046134b5565b61190f565b34801561088957600080fd5b5061040960185481565b34801561089f57600080fd5b506103e86108ae3660046134b5565b6001600160a01b031660009081526008602052604090205460ff1690565b3480156108d857600080fd5b5061039b6108e7366004613545565b61199e565b3480156108f857600080fd5b506000546001600160a01b031661044b565b34801561091657600080fd5b506103b2611a29565b34801561092b57600080fd5b506103e861093a366004613545565b611a38565b34801561094b57600080fd5b5061039b611a87565b34801561096057600080fd5b5061039b611b0f565b34801561097557600080fd5b506103e8610984366004613545565b611c59565b34801561099557600080fd5b50600354610409565b3480156109aa57600080fd5b5061039b6109b9366004613665565b611c66565b3480156109ca57600080fd5b5061040960195481565b3480156109e057600080fd5b5061039b6109ef3660046136ce565b611d31565b348015610a0057600080fd5b5061039b610a0f3660046135b2565b611e54565b348015610a2057600080fd5b50610409610a2f3660046135cb565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b348015610a6657600080fd5b5061039b611f33565b348015610a7b57600080fd5b5061039b610a8a3660046134b5565b611f9c565b348015610a9b57600080fd5b5061039b610aaa36600461373a565b611ff4565b348015610abb57600080fd5b5061039b610aca3660046134b5565b61209b565b348015610adb57600080fd5b506103e8610aea3660046134b5565b600a6020526000908152604090205460ff1681565b6000546001600160a01b0316331480610b2d57503360009081526001602081905260409091205460ff161515145b610b3657600080fd5b6001600160a01b03166000908152600a60205260409020805460ff19169055565b606060108054610b669061377c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b929061377c565b8015610bdf5780601f10610bb457610100808354040283529160200191610bdf565b820191906000526020600020905b815481529060010190602001808311610bc257829003601f168201915b5050505050905090565b6000610bf63384846121e4565b5060015b92915050565b6000610c0d84848461233c565b610c5f8433610c5a85604051806060016040528060288152602001613a30602891396001600160a01b038a1660009081526006602090815260408083203384529091529020549190612648565b6121e4565b5060019392505050565b6000546001600160a01b0316331480610c9757503360009081526001602081905260409091205460ff161515145b610ca057600080fd5b6303f83c408111610d1e5760405162461bcd60e51b815260206004820152603860248201527f53776170205468726573686f6c6420416d6f756e742063616e6e6f742062652060448201527f6c657373207468616e2036362e362054686f7573616e6473000000000000000060648201526084015b60405180910390fd5b610d2c81633b9aca006137ff565b60195550565b6000600d54821115610dac5760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201527f65666c656374696f6e73000000000000000000000000000000000000000000006064820152608401610d15565b6000610db6612682565b9050610dc283826126a5565b9392505050565b600080546001600160a01b03165b6001600160a01b0316826001600160a01b0316149050919050565b6000546001600160a01b0316331480610e2057503360009081526001602081905260409091205460ff161515145b610e2957600080fd5b6019811115610e7a5760405162461bcd60e51b815260206004820181905260248201527f4c69717569646974794665652073686f756c6420626520696e2030202d2032356044820152606401610d15565b601555565b6000546001600160a01b0316331480610ead57503360009081526001602081905260409091205460ff161515145b610eb657600080fd5b6001600160a01b03811660009081526008602052604090205460ff16610f1e5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610d15565b60005b60095481101561108d57816001600160a01b031660098281548110610f4857610f4861383c565b6000918252602090912001546001600160a01b0316141561107b5760098054610f739060019061386b565b81548110610f8357610f8361383c565b600091825260209091200154600980546001600160a01b039092169183908110610faf57610faf61383c565b600091825260208083209190910180547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b039485161790559184168152600582526040808220829055600890925220805460ff19169055600980548061101f5761101f613882565b60008281526020902081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90810180547fffffffffffffffffffffffff00000000000000000000000000000000000000001690550190555050565b80611085816138b1565b915050610f21565b5050565b3360008181526006602090815260408083206001600160a01b03871684529091528120549091610bf6918590610c5a90866126e7565b6000546001600160a01b031633146111215760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d15565b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b0383169063a9059cbb90839083906370a082319060240160206040518083038186803b15801561118357600080fd5b505afa158015611197573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111bb91906138ea565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b15801561121957600080fd5b505af115801561122d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112519190613903565b505050565b3360008181526008602052604090205460ff16156112dc5760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201527f6869732066756e6374696f6e00000000000000000000000000000000000000006064820152608401610d15565b60006112e783612746565b505050506001600160a01b03841660009081526004602052604090205491925061131391905082612795565b6001600160a01b038316600090815260046020526040902055600d546113399082612795565b600d55600e5461134990846126e7565b600e55505050565b6000546001600160a01b031633148061137f57503360009081526001602081905260409091205460ff161515145b61138857600080fd5b6001600160a01b03166000908152600760205260409020805460ff19166001179055565b6001600160a01b038116600090815260016020819052604082205460ff1615151480610bfa57506000546001600160a01b0316610dd7565b6000600c548311156114385760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610d15565b8161145757600061144884612746565b50939550610bfa945050505050565b600061146284612746565b50929550610bfa945050505050565b6000546001600160a01b031633146114cb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d15565b600f546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015611504573d6000803e3d6000fd5b50565b6000546001600160a01b031633146115615760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d15565b6001600160a01b0382166000908152600160208190526040909120805460ff191683151590811790915514156115d2576040516001600160a01b03831681527f44d6d25963f097ad14f29f06854a01f575648a1ef82f30e562ccd3889717e339906020015b60405180910390a15050565b6040516001600160a01b03831681527fa3b62bc36326052d97ea62d63c3d60308ed4c3ea8ac079dd8499f1e9c4f80c0f906020016115c6565b6000546001600160a01b031633148061163957503360009081526001602081905260409091205460ff161515145b61164257600080fd5b6001600160a01b03811660009081526008602052604090205460ff16156116ab5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610d15565b6001600160a01b03811660009081526004602052604090205415611705576001600160a01b0381166000908152600460205260409020546116eb90610d32565b6001600160a01b0382166000908152600560205260409020555b6001600160a01b03166000818152600860205260408120805460ff191660019081179091556009805491820181559091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0180547fffffffffffffffffffffffff0000000000000000000000000000000000000000169091179055565b6000546001600160a01b03163314806117b157503360009081526001602081905260409091205460ff161515145b6117ba57600080fd5b600f80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6001600160a01b03811660009081526008602052604081205460ff161561183157506001600160a01b031660009081526005602052604090205490565b6001600160a01b038216600090815260046020526040902054610bfa90610d32565b6000546001600160a01b031633146118ad5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d15565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b6000546001600160a01b031633146119695760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d15565b6040516001600160a01b038216904780156108fc02916000818181858888f1935050505015801561108d573d6000803e3d6000fd5b6000546001600160a01b031633146119f85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d15565b611a006127d7565b611a183383611a1384633b9aca006137ff565b61233c565b61108d601454601355601654601555565b606060118054610b669061377c565b6000610bf63384610c5a85604051806060016040528060258152602001613a58602591393360009081526006602090815260408083206001600160a01b038d1684529091529020549190612648565b6000546001600160a01b03163314611ae15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d15565b600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff16610100179055565b6002546001600160a01b03163314611b8f5760405162461bcd60e51b815260206004820152602360248201527f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c60448201527f6f636b00000000000000000000000000000000000000000000000000000000006064820152608401610d15565b6003544211611be05760405162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c20372064617973006044820152606401610d15565b600254600080546040516001600160a01b0393841693909116917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600254600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03909216919091179055565b6000610bf633848461233c565b6000546001600160a01b03163314611cc05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d15565b60178054821515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff9091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15990611d2690831515815260200190565b60405180910390a150565b6000546001600160a01b03163314611d8b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d15565b6000838214611ddc5760405162461bcd60e51b815260206004820152601760248201527f6d757374206265207468652073616d65206c656e6774680000000000000000006044820152606401610d15565b83811015611e4d57611e3b858583818110611df957611df961383c565b9050602002016020810190611e0e91906134b5565b848484818110611e2057611e2061383c565b90506020020135633b9aca00611e3691906137ff565b612805565b611e46600182613920565b9050611ddc565b5050505050565b6000546001600160a01b03163314611eae5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d15565b60008054600280547fffffffffffffffffffffffff00000000000000000000000000000000000000009081166001600160a01b03841617909155169055611ef58142613920565b600355600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a350565b6000546001600160a01b03163314611f8d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d15565b68241a9b4f617a280000601855565b6000546001600160a01b0316331480611fca57503360009081526001602081905260409091205460ff161515145b611fd357600080fd5b6001600160a01b03166000908152600760205260409020805460ff19169055565b6000546001600160a01b031633148061202257503360009081526001602081905260409091205460ff161515145b61202b57600080fd5b60005b81811015611251576001600a600085858581811061204e5761204e61383c565b905060200201602081019061206391906134b5565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055612094816138b1565b905061202e565b6000546001600160a01b031633146120f55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d15565b6001600160a01b0381166121715760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610d15565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6001600160a01b03831661225f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610d15565b6001600160a01b0382166122db5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610d15565b6001600160a01b0383811660008181526006602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166123b85760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610d15565b6001600160a01b0382166124345760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610d15565b600081116124aa5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d75737420626520677265617465722060448201527f7468616e207a65726f00000000000000000000000000000000000000000000006064820152608401610d15565b6000546001600160a01b038481169116148015906124d657506000546001600160a01b03838116911614155b15612553576018548111156125535760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d61785460448201527f78416d6f756e742e0000000000000000000000000000000000000000000000006064820152608401610d15565b600061255e306117f4565b9050601854811061256e57506018545b60195481108015908190612585575060175460ff16155b80156125c357507f000000000000000000000000e4fa1e782163e649bebf5440534cbe6d797168f86001600160a01b0316856001600160a01b031614155b80156125d65750601754610100900460ff165b156125e95760195491506125e982612818565b6001600160a01b03851660009081526007602052604090205460019060ff168061262b57506001600160a01b03851660009081526007602052604090205460ff165b15612634575060005b61264086868684612917565b505050505050565b6000818484111561266c5760405162461bcd60e51b8152600401610d1591906134d2565b506000612679848661386b565b95945050505050565b600080600061268f612b53565b909250905061269e82826126a5565b9250505090565b6000610dc283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612cd5565b6000806126f48385613920565b905083811015610dc25760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610d15565b600080600080600080600080600061275d8a612d03565b925092509250600080600061277b8d8686612776612682565b612d45565b919f909e50909c50959a5093985091965092945050505050565b6000610dc283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612648565b6013541580156127e75750601554155b156127ee57565b601380546014556015805460165560009182905555565b61280d6127d7565b611a1833838361233c565b6017805460ff1916600117905560006128328260026126a5565b905060006128408383612795565b90504761284c83612d95565b60006128584783612795565b90506000612872606461286c84604b612f75565b906126a5565b600f546040519192506001600160a01b03169082156108fc029083906000818181858888f193505050501580156128ad573d6000803e3d6000fd5b506128b8818361386b565b91506128c48483613010565b60408051868152602081018490529081018590527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a150506017805460ff1916905550505050565b600b54610100900460ff16612940576000546001600160a01b0385811691161461294057600080fd5b6001600160a01b0384166000908152600a602052604090205460ff168061297f57506001600160a01b0383166000908152600a602052604090205460ff165b156129d657600b5460ff166129d65760405162461bcd60e51b815260206004820152601b60248201527f626f7473206172656e7420616c6c6f77656420746f20747261646500000000006044820152606401610d15565b806129e3576129e36127d7565b6001600160a01b03841660009081526008602052604090205460ff168015612a2457506001600160a01b03831660009081526008602052604090205460ff16155b15612a3957612a34848484613136565b612b37565b6001600160a01b03841660009081526008602052604090205460ff16158015612a7a57506001600160a01b03831660009081526008602052604090205460ff165b15612a8a57612a3484848461325c565b6001600160a01b03841660009081526008602052604090205460ff16158015612acc57506001600160a01b03831660009081526008602052604090205460ff16155b15612adc57612a34848484613305565b6001600160a01b03841660009081526008602052604090205460ff168015612b1c57506001600160a01b03831660009081526008602052604090205460ff165b15612b2c57612a34848484613349565b612b37848484613305565b80612b4d57612b4d601454601355601654601555565b50505050565b600d54600c546000918291825b600954811015612ca557826004600060098481548110612b8257612b8261383c565b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612bed5750816005600060098481548110612bc657612bc661383c565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15612c0357600d54600c54945094505050509091565b612c496004600060098481548110612c1d57612c1d61383c565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490612795565b9250612c916005600060098481548110612c6557612c6561383c565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390612795565b915080612c9d816138b1565b915050612b60565b50600c54600d54612cb5916126a5565b821015612ccc57600d54600c549350935050509091565b90939092509050565b60008183612cf65760405162461bcd60e51b8152600401610d1591906134d2565b5060006126798486613938565b600080600080612d12856133bc565b90506000612d1f866133d8565b90506000612d3782612d318986612795565b90612795565b979296509094509092505050565b6000808080612d548886612f75565b90506000612d628887612f75565b90506000612d708888612f75565b90506000612d8282612d318686612795565b939b939a50919850919650505050505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612dca57612dca61383c565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015612e4357600080fd5b505afa158015612e57573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e7b9190613973565b81600181518110612e8e57612e8e61383c565b60200260200101906001600160a01b031690816001600160a01b031681525050612ed9307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846121e4565b6040517f791ac9470000000000000000000000000000000000000000000000000000000081526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612f47908590600090869030904290600401613990565b600060405180830381600087803b158015612f6157600080fd5b505af1158015612640573d6000803e3d6000fd5b600082612f8457506000610bfa565b6000612f9083856137ff565b905082612f9d8583613938565b14610dc25760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60448201527f77000000000000000000000000000000000000000000000000000000000000006064820152608401610d15565b61303b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846121e4565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7198230856000806130826000546001600160a01b031690565b60405160e088901b7fffffffff000000000000000000000000000000000000000000000000000000001681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c4016060604051808303818588803b1580156130fd57600080fd5b505af1158015613111573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611e4d9190613a01565b60008060008060008061314887612746565b6001600160a01b038f16600090815260056020526040902054959b5093995091975095509350915061317a9088612795565b6001600160a01b038a166000908152600560209081526040808320939093556004905220546131a99087612795565b6001600160a01b03808b1660009081526004602052604080822093909355908a16815220546131d890866126e7565b6001600160a01b0389166000908152600460205260409020556131fa816133f4565b613204848361347c565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161324991815260200190565b60405180910390a3505050505050505050565b60008060008060008061326e87612746565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506132a09087612795565b6001600160a01b03808b16600090815260046020908152604080832094909455918b168152600590915220546132d690846126e7565b6001600160a01b0389166000908152600560209081526040808320939093556004905220546131d890866126e7565b60008060008060008061331787612746565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506131a99087612795565b60008060008060008061335b87612746565b6001600160a01b038f16600090815260056020526040902054959b5093995091975095509350915061338d9088612795565b6001600160a01b038a166000908152600560209081526040808320939093556004905220546132a09087612795565b6000610bfa606461286c60135485612f7590919063ffffffff16565b6000610bfa606461286c60155485612f7590919063ffffffff16565b60006133fe612682565b9050600061340c8383612f75565b3060009081526004602052604090205490915061342990826126e7565b3060009081526004602090815260408083209390935560089052205460ff1615611251573060009081526005602052604090205461346790846126e7565b30600090815260056020526040902055505050565b600d546134899083612795565b600d55600e5461349990826126e7565b600e555050565b6001600160a01b038116811461150457600080fd5b6000602082840312156134c757600080fd5b8135610dc2816134a0565b600060208083528351808285015260005b818110156134ff578581018301518582016040015282016134e3565b81811115613511576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b6000806040838503121561355857600080fd5b8235613563816134a0565b946020939093013593505050565b60008060006060848603121561358657600080fd5b8335613591816134a0565b925060208401356135a1816134a0565b929592945050506040919091013590565b6000602082840312156135c457600080fd5b5035919050565b600080604083850312156135de57600080fd5b82356135e9816134a0565b915060208301356135f9816134a0565b809150509250929050565b801515811461150457600080fd5b6000806040838503121561362557600080fd5b8235915060208301356135f981613604565b6000806040838503121561364a57600080fd5b8235613655816134a0565b915060208301356135f981613604565b60006020828403121561367757600080fd5b8135610dc281613604565b60008083601f84011261369457600080fd5b50813567ffffffffffffffff8111156136ac57600080fd5b6020830191508360208260051b85010111156136c757600080fd5b9250929050565b600080600080604085870312156136e457600080fd5b843567ffffffffffffffff808211156136fc57600080fd5b61370888838901613682565b9096509450602087013591508082111561372157600080fd5b5061372e87828801613682565b95989497509550505050565b6000806020838503121561374d57600080fd5b823567ffffffffffffffff81111561376457600080fd5b61377085828601613682565b90969095509350505050565b600181811c9082168061379057607f821691505b602082108114156137ca577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613837576138376137d0565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008282101561387d5761387d6137d0565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138e3576138e36137d0565b5060010190565b6000602082840312156138fc57600080fd5b5051919050565b60006020828403121561391557600080fd5b8151610dc281613604565b60008219821115613933576139336137d0565b500190565b60008261396e577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b60006020828403121561398557600080fd5b8151610dc2816134a0565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156139e05784516001600160a01b0316835293830193918301916001016139bb565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215613a1657600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220fbb308b16a6802262305abecd5e2cf9824a1394f62768d66e3e5518163de475c64736f6c63430008090033

Deployed Bytecode Sourcemap

29124:21259:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38842:114;;;;;;;;;;-1:-1:-1;38842:114:0;;;;;:::i;:::-;;:::i;:::-;;31689:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32601:161;;;;;;;;;;-1:-1:-1;32601:161:0;;;;;:::i;:::-;;:::i;:::-;;;1571:14:1;;1564:22;1546:41;;1534:2;1519:18;32601:161:0;1406:187:1;33722:87:0;;;;;;;;;;-1:-1:-1;33791:10:0;;33722:87;;;1744:25:1;;;1732:2;1717:18;33722:87:0;1598:177:1;30248:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1971:55:1;;;1953:74;;1941:2;1926:18;30248:51:0;1780:253:1;31966:95:0;;;;;;;;;;-1:-1:-1;32046:7:0;;31966:95;;32770:313;;;;;;;;;;-1:-1:-1;32770:313:0;;;;;:::i;:::-;;:::i;20381:104::-;;;;;;;;;;-1:-1:-1;20381:104:0;;;;;:::i;:::-;-1:-1:-1;;;;;20461:16:0;20437:4;20461:16;;;:6;:16;;;;;;;;;20381:104;37792:271;;;;;;;;;;-1:-1:-1;37792:271:0;;;;;:::i;:::-;;:::i;35442:253::-;;;;;;;;;;-1:-1:-1;35442:253:0;;;;;:::i;:::-;;:::i;29655:28::-;;;;;;;;;;-1:-1:-1;29655:28:0;;;;;;;;;;;20493:107;;;;;;;;;;-1:-1:-1;20493:107:0;;;;;:::i;:::-;;:::i;31875:83::-;;;;;;;;;;-1:-1:-1;31941:9:0;;31875:83;;31941:9;;;;2826:36:1;;2814:2;2799:18;31875:83:0;2684:184:1;50151:221:0;;;;;;;;;;-1:-1:-1;50151:221:0;;;;;:::i;:::-;;:::i;36159:480::-;;;;;;;;;;-1:-1:-1;36159:480:0;;;;;:::i;:::-;;:::i;33091:218::-;;;;;;;;;;-1:-1:-1;33091:218:0;;;;;:::i;:::-;;:::i;38289:185::-;;;;;;;;;;-1:-1:-1;38289:185:0;;;;;:::i;:::-;;:::i;30055:26::-;;;;;;;;;;;;;;;;34613:377;;;;;;;;;;-1:-1:-1;34613:377:0;;;;;:::i;:::-;;:::i;17350:39::-;;;;;;;;;;-1:-1:-1;17350:39:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;37303:114;;;;;;;;;;-1:-1:-1;37303:114:0;;;;;:::i;:::-;;:::i;20608:142::-;;;;;;;;;;-1:-1:-1;20608:142:0;;;;;:::i;:::-;;:::i;34998:436::-;;;;;;;;;;-1:-1:-1;34998:436:0;;;;;:::i;:::-;;:::i;38075:202::-;;;;;;;;;;;;;:::i;30306:38::-;;;;;;;;;;;;;;;30385:40;;;;;;;;;;-1:-1:-1;30385:40:0;;;;;;;;;;;20758:280;;;;;;;;;;-1:-1:-1;20758:280:0;;;;;:::i;:::-;;:::i;35703:448::-;;;;;;;;;;-1:-1:-1;35703:448:0;;;;;:::i;:::-;;:::i;42671:123::-;;;;;;;;;;-1:-1:-1;42671:123:0;;;;;:::i;:::-;-1:-1:-1;;;;;42759:27:0;42735:4;42759:27;;;:18;:27;;;;;;;;;42671:123;37550:121;;;;;;;;;;-1:-1:-1;37550:121:0;;;;;:::i;:::-;;:::i;38968:::-;;;;;;;;;;-1:-1:-1;38968:121:0;;;;;:::i;:::-;-1:-1:-1;;;;;39060:21:0;39036:4;39060:21;;;:10;:21;;;;;;;;;38968:121;30142:33;;;;;;;;;;;;;;;;32069:198;;;;;;;;;;-1:-1:-1;32069:198:0;;;;;:::i;:::-;;:::i;18974:148::-;;;;;;;;;;;;;:::i;29886:30::-;;;;;;;;;;-1:-1:-1;29886:30:0;;;;-1:-1:-1;;;;;29886:30:0;;;38486:144;;;;;;;;;;-1:-1:-1;38486:144:0;;;;;:::i;:::-;;:::i;30438:48::-;;;;;;;;;;;;;;;;33594:120;;;;;;;;;;-1:-1:-1;33594:120:0;;;;;:::i;:::-;-1:-1:-1;;;;;33686:20:0;33662:4;33686:20;;;:11;:20;;;;;;;;;33594:120;33821:193;;;;;;;;;;-1:-1:-1;33821:193:0;;;;;:::i;:::-;;:::i;17993:79::-;;;;;;;;;;-1:-1:-1;18031:7:0;18058:6;-1:-1:-1;;;;;18058:6:0;17993:79;;31780:87;;;;;;;;;;;;;:::i;33317:269::-;;;;;;;;;;-1:-1:-1;33317:269:0;;;;;:::i;:::-;;:::i;39101:78::-;;;;;;;;;;;;;:::i;19996:305::-;;;;;;;;;;;;;:::i;32275:167::-;;;;;;;;;;-1:-1:-1;32275:167:0;;;;;:::i;:::-;;:::i;19529:89::-;;;;;;;;;;-1:-1:-1;19601:9:0;;19529:89;;39187:171;;;;;;;;;;-1:-1:-1;39187:171:0;;;;;:::i;:::-;;:::i;30493:65::-;;;;;;;;;;;;;;;;34219:386;;;;;;;;;;-1:-1:-1;34219:386:0;;;;;:::i;:::-;;:::i;19694:226::-;;;;;;;;;;-1:-1:-1;19694:226:0;;;;;:::i;:::-;;:::i;32450:143::-;;;;;;;;;;-1:-1:-1;32450:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;32558:18:0;;;32531:7;32558:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;32450:143;37679:101;;;;;;;;;;;;;:::i;37429:113::-;;;;;;;;;;-1:-1:-1;37429:113:0;;;;;:::i;:::-;;:::i;38639:185::-;;;;;;;;;;-1:-1:-1;38639:185:0;;;;;:::i;:::-;;:::i;19277:244::-;;;;;;;;;;-1:-1:-1;19277:244:0;;;;;:::i;:::-;;:::i;29567:43::-;;;;;;;;;;-1:-1:-1;29567:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;38842:114;18031:7;18058:6;-1:-1:-1;;;;;18058:6:0;10352:10;18546:23;;:55;;-1:-1:-1;10352:10:0;18573:20;;;;:6;:20;;;;;;;;;;;:28;;;18546:55;18538:64;;;;;;-1:-1:-1;;;;;38919:21:0::1;38943:5;38919:21:::0;;;:10:::1;:21;::::0;;;;:29;;-1:-1:-1;;38919:29:0::1;::::0;;38842:114::o;31689:83::-;31726:13;31759:5;31752:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31689:83;:::o;32601:161::-;32676:4;32693:39;10352:10;32716:7;32725:6;32693:8;:39::i;:::-;-1:-1:-1;32750:4:0;32601:161;;;;;:::o;32770:313::-;32868:4;32885:36;32895:6;32903:9;32914:6;32885:9;:36::i;:::-;32932:121;32941:6;10352:10;32963:89;33001:6;32963:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32963:19:0;;;;;;:11;:19;;;;;;;;10352:10;32963:33;;;;;;;;;;:37;:89::i;:::-;32932:8;:121::i;:::-;-1:-1:-1;33071:4:0;32770:313;;;;;:::o;37792:271::-;18031:7;18058:6;-1:-1:-1;;;;;18058:6:0;10352:10;18546:23;;:55;;-1:-1:-1;10352:10:0;18573:20;;;;:6;:20;;;;;;;;;;;:28;;;18546:55;18538:64;;;;;;37916:8:::1;37894:19;:30;37886:99;;;::::0;-1:-1:-1;;;37886:99:0;;7469:2:1;37886:99:0::1;::::0;::::1;7451:21:1::0;7508:2;7488:18;;;7481:30;7547:34;7527:18;;;7520:62;7618:26;7598:18;;;7591:54;7662:19;;37886:99:0::1;;;;;;;;;38028:27;:19:::0;38050:5:::1;38028:27;:::i;:::-;37996:29;:59:::0;-1:-1:-1;37792:271:0:o;35442:253::-;35508:7;35547;;35536;:18;;35528:73;;;;-1:-1:-1;;;35528:73:0;;8316:2:1;35528:73:0;;;8298:21:1;8355:2;8335:18;;;8328:30;8394:34;8374:18;;;8367:62;8465:12;8445:18;;;8438:40;8495:19;;35528:73:0;8114:406:1;35528:73:0;35612:19;35635:10;:8;:10::i;:::-;35612:33;-1:-1:-1;35663:24:0;:7;35612:33;35663:11;:24::i;:::-;35656:31;35442:253;-1:-1:-1;;;35442:253:0:o;20493:107::-;20549:4;18058:6;;-1:-1:-1;;;;;18058:6:0;20585:7;-1:-1:-1;;;;;20573:19:0;:8;-1:-1:-1;;;;;20573:19:0;;20566:26;;20493:107;;;:::o;50151:221::-;18031:7;18058:6;-1:-1:-1;;;;;18058:6:0;10352:10;18546:23;;:55;;-1:-1:-1;10352:10:0;18573:20;;;;:6;:20;;;;;;;;;;;:28;;;18546:55;18538:64;;;;;;50276:2:::1;50260:12;:18;;50231:84;;;::::0;-1:-1:-1;;;50231:84:0;;8727:2:1;50231:84:0::1;::::0;::::1;8709:21:1::0;;;8746:18;;;8739:30;8805:34;8785:18;;;8778:62;8857:18;;50231:84:0::1;8525:356:1::0;50231:84:0::1;50336:13;:28:::0;50151:221::o;36159:480::-;18031:7;18058:6;-1:-1:-1;;;;;18058:6:0;10352:10;18546:23;;:55;;-1:-1:-1;10352:10:0;18573:20;;;;:6;:20;;;;;;;;;;;:28;;;18546:55;18538:64;;;;;;-1:-1:-1;;;;;36242:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;36234:60;;;::::0;-1:-1:-1;;;36234:60:0;;9088:2:1;36234:60:0::1;::::0;::::1;9070:21:1::0;9127:2;9107:18;;;9100:30;9166:29;9146:18;;;9139:57;9213:18;;36234:60:0::1;8886:351:1::0;36234:60:0::1;36310:9;36305:327;36329:9;:16:::0;36325:20;::::1;36305:327;;;36387:7;-1:-1:-1::0;;;;;36371:23:0::1;:9;36381:1;36371:12;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;36371:12:0::1;:23;36367:254;;;36430:9;36440:16:::0;;:20:::1;::::0;36459:1:::1;::::0;36440:20:::1;:::i;:::-;36430:31;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;36415:9:::1;:12:::0;;-1:-1:-1;;;;;36430:31:0;;::::1;::::0;36425:1;;36415:12;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;;::::1;-1:-1:-1::0;;;;;36415:46:0;;::::1;;::::0;;36480:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;36519:11:::1;:20:::0;;;;:28;;-1:-1:-1;;36519:28:0::1;::::0;;36566:9:::1;:15:::0;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;;;;;;;::::1;::::0;;;;;36305:327:::1;36159:480:::0;:::o;36367:254::-:1;36347:3:::0;::::1;::::0;::::1;:::i;:::-;;;;36305:327;;;;36159:480:::0;:::o;33091:218::-;10352:10;33179:4;33228:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;33228:34:0;;;;;;;;;;33179:4;;33196:83;;33219:7;;33228:50;;33267:10;33228:38;:50::i;38289:185::-;18205:6;;-1:-1:-1;;;;;18205:6:0;10352:10;18205:22;18197:67;;;;-1:-1:-1;;;18197:67:0;;10152:2:1;18197:67:0;;;10134:21:1;;;10171:18;;;10164:30;10230:34;10210:18;;;10203:62;10282:18;;18197:67:0;9950:356:1;18197:67:0;38428:37:::1;::::0;;;;38459:4:::1;38428:37;::::0;::::1;1953:74:1::0;-1:-1:-1;;;;;38391:21:0;::::1;::::0;::::1;::::0;38413:13;;38391:21;;38428:22:::1;::::0;1926:18:1;;38428:37:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38391:75;::::0;;::::1;::::0;;;;;;-1:-1:-1;;;;;10692:55:1;;;38391:75:0::1;::::0;::::1;10674:74:1::0;10764:18;;;10757:34;10647:18;;38391:75:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;38289:185:::0;;:::o;34613:377::-;10352:10;34665:14;34714:19;;;:11;:19;;;;;;;;34713:20;34705:77;;;;-1:-1:-1;;;34705:77:0;;11254:2:1;34705:77:0;;;11236:21:1;11293:2;11273:18;;;11266:30;11332:34;11312:18;;;11305:62;11403:14;11383:18;;;11376:42;11435:19;;34705:77:0;11052:408:1;34705:77:0;34794:15;34818:19;34829:7;34818:10;:19::i;:::-;-1:-1:-1;;;;;;;;;34866:15:0;;;;;;:7;:15;;;;;;34793:44;;-1:-1:-1;34866:28:0;;:15;-1:-1:-1;34793:44:0;34866:19;:28::i;:::-;-1:-1:-1;;;;;34848:15:0;;;;;;:7;:15;;;;;:46;34915:7;;:20;;34927:7;34915:11;:20::i;:::-;34905:7;:30;34959:10;;:23;;34974:7;34959:14;:23::i;:::-;34946:10;:36;-1:-1:-1;;;34613:377:0:o;37303:114::-;18031:7;18058:6;-1:-1:-1;;;;;18058:6:0;10352:10;18546:23;;:55;;-1:-1:-1;10352:10:0;18573:20;;;;:6;:20;;;;;;;;;;;:28;;;18546:55;18538:64;;;;;;-1:-1:-1;;;;;37375:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;37375:34:0::1;37405:4;37375:34;::::0;;37303:114::o;20608:142::-;-1:-1:-1;;;;;20695:16:0;;20671:4;20695:16;;;:6;:16;;;;;;;;;;:24;;;;:47;;-1:-1:-1;18031:7:0;18058:6;-1:-1:-1;;;;;18058:6:0;20735:7;17993:79;34998:436;35088:7;35127;;35116;:18;;35108:62;;;;-1:-1:-1;;;35108:62:0;;11667:2:1;35108:62:0;;;11649:21:1;11706:2;11686:18;;;11679:30;11745:33;11725:18;;;11718:61;11796:18;;35108:62:0;11465:355:1;35108:62:0;35186:17;35181:246;;35221:15;35245:19;35256:7;35245:10;:19::i;:::-;-1:-1:-1;35220:44:0;;-1:-1:-1;35279:14:0;;-1:-1:-1;;;;;35279:14:0;35181:246;35328:23;35359:19;35370:7;35359:10;:19::i;:::-;-1:-1:-1;35326:52:0;;-1:-1:-1;35393:22:0;;-1:-1:-1;;;;;35393:22:0;38075:202;18205:6;;-1:-1:-1;;;;;18205:6:0;10352:10;18205:22;18197:67;;;;-1:-1:-1;;;18197:67:0;;10152:2:1;18197:67:0;;;10134:21:1;;;10171:18;;;10164:30;10230:34;10210:18;;;10203:62;10282:18;;18197:67:0;9950:356:1;18197:67:0;38221:15:::1;::::0;38213:56:::1;::::0;-1:-1:-1;;;;;38221:15:0;;::::1;::::0;38247:21:::1;38213:56:::0;::::1;;;::::0;38221:15:::1;38213:56:::0;38221:15;38213:56;38247:21;38221:15;38213:56;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;38075:202::o:0;20758:280::-;18205:6;;-1:-1:-1;;;;;18205:6:0;10352:10;18205:22;18197:67;;;;-1:-1:-1;;;18197:67:0;;10152:2:1;18197:67:0;;;10134:21:1;;;10171:18;;;10164:30;10230:34;10210:18;;;10203:62;10282:18;;18197:67:0;9950:356:1;18197:67:0;-1:-1:-1;;;;;20842:21:0;::::1;;::::0;;;:6:::1;:21;::::0;;;;;;;:32;;-1:-1:-1;;20842:32:0::1;::::0;::::1;;::::0;;::::1;::::0;;;20891:16:::1;20887:144;;;20929:25;::::0;-1:-1:-1;;;;;1971:55:1;;1953:74;;20929:25:0::1;::::0;1941:2:1;1926:18;20929:25:0::1;;;;;;;;36305:327;36159:480:::0;:::o;20887:144::-:1;20992:27;::::0;-1:-1:-1;;;;;1971:55:1;;1953:74;;20992:27:0::1;::::0;1941:2:1;1926:18;20992:27:0::1;1780:253:1::0;35703:448:0;18031:7;18058:6;-1:-1:-1;;;;;18058:6:0;10352:10;18546:23;;:55;;-1:-1:-1;10352:10:0;18573:20;;;;:6;:20;;;;;;;;;;;:28;;;18546:55;18538:64;;;;;;-1:-1:-1;;;;;35901:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;35900:21;35892:61;;;::::0;-1:-1:-1;;;35892:61:0;;9088:2:1;35892:61:0::1;::::0;::::1;9070:21:1::0;9127:2;9107:18;;;9100:30;9166:29;9146:18;;;9139:57;9213:18;;35892:61:0::1;8886:351:1::0;35892:61:0::1;-1:-1:-1::0;;;;;35967:16:0;::::1;35986:1;35967:16:::0;;;:7:::1;:16;::::0;;;;;:20;35964:108:::1;;-1:-1:-1::0;;;;;36043:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;36023:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;36004:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;35964:108:::1;-1:-1:-1::0;;;;;36082:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;36082:27:0::1;36105:4;36082:27:::0;;::::1;::::0;;;36120:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;;::::1;::::0;;::::1;::::0;;35703:448::o;37550:121::-;18031:7;18058:6;-1:-1:-1;;;;;18058:6:0;10352:10;18546:23;;:55;;-1:-1:-1;10352:10:0;18573:20;;;;:6;:20;;;;;;;;;;;:28;;;18546:55;18538:64;;;;;;37632:15:::1;:31:::0;;;::::1;-1:-1:-1::0;;;;;37632:31:0;;;::::1;::::0;;;::::1;::::0;;37550:121::o;32069:198::-;-1:-1:-1;;;;;32159:20:0;;32135:7;32159:20;;;:11;:20;;;;;;;;32155:49;;;-1:-1:-1;;;;;;32188:16:0;;;;;:7;:16;;;;;;;32069:198::o;32155:49::-;-1:-1:-1;;;;;32242:16:0;;;;;;:7;:16;;;;;;32222:37;;:19;:37::i;18974:148::-;18205:6;;-1:-1:-1;;;;;18205:6:0;10352:10;18205:22;18197:67;;;;-1:-1:-1;;;18197:67:0;;10152:2:1;18197:67:0;;;10134:21:1;;;10171:18;;;10164:30;10230:34;10210:18;;;10203:62;10282:18;;18197:67:0;9950:356:1;18197:67:0;19081:1:::1;19065:6:::0;;19044:40:::1;::::0;-1:-1:-1;;;;;19065:6:0;;::::1;::::0;19044:40:::1;::::0;19081:1;;19044:40:::1;19112:1;19095:19:::0;;;::::1;::::0;;18974:148::o;38486:144::-;18205:6;;-1:-1:-1;;;;;18205:6:0;10352:10;18205:22;18197:67;;;;-1:-1:-1;;;18197:67:0;;10152:2:1;18197:67:0;;;10134:21:1;;;10171:18;;;10164:30;10230:34;10210:18;;;10203:62;10282:18;;18197:67:0;9950:356:1;18197:67:0;38577:45:::1;::::0;-1:-1:-1;;;;;38577:22:0;::::1;::::0;38600:21:::1;38577:45:::0;::::1;;;::::0;::::1;::::0;;;38600:21;38577:22;:45;::::1;;;;;;;;;;;;;::::0;::::1;;;;33821:193:::0;18205:6;;-1:-1:-1;;;;;18205:6:0;10352:10;18205:22;18197:67;;;;-1:-1:-1;;;18197:67:0;;10152:2:1;18197:67:0;;;10134:21:1;;;10171:18;;;10164:30;10230:34;10210:18;;;10203:62;10282:18;;18197:67:0;9950:356:1;18197:67:0;33905:14:::1;:12;:14::i;:::-;33930:50;10352:10:::0;33954:9;33965:14:::1;:6:::0;33974:5:::1;33965:14;:::i;:::-;33930:9;:50::i;:::-;33991:15;42588::::0;;42578:7;:25;42630:21;;42614:13;:37;42534:125;31780:87;31819:13;31852:7;31845:14;;;;;:::i;33317:269::-;33410:4;33427:129;10352:10;33450:7;33459:96;33498:15;33459:96;;;;;;;;;;;;;;;;;10352:10;33459:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;33459:34:0;;;;;;;;;;;;:38;:96::i;39101:78::-;18205:6;;-1:-1:-1;;;;;18205:6:0;10352:10;18205:22;18197:67;;;;-1:-1:-1;;;18197:67:0;;10152:2:1;18197:67:0;;;10134:21:1;;;10171:18;;;10164:30;10230:34;10210:18;;;10203:62;10282:18;;18197:67:0;9950:356:1;18197:67:0;39156:8:::1;:15:::0;;;::::1;;;::::0;;39101:78::o;19996:305::-;20048:14;;-1:-1:-1;;;;;20048:14:0;20066:10;20048:28;20040:76;;;;-1:-1:-1;;;20040:76:0;;12027:2:1;20040:76:0;;;12009:21:1;12066:2;12046:18;;;12039:30;12105:34;12085:18;;;12078:62;12176:5;12156:18;;;12149:33;12199:19;;20040:76:0;11825:399:1;20040:76:0;20153:9;;20135:15;:27;20127:72;;;;-1:-1:-1;;;20127:72:0;;12431:2:1;20127:72:0;;;12413:21:1;12470:2;12450:18;;;12443:30;12509:33;12489:18;;;12482:61;12560:18;;20127:72:0;12229:355:1;20127:72:0;20244:14;;;20236:6;;20215:44;;-1:-1:-1;;;;;20244:14:0;;;;20236:6;;;;20215:44;;;20279:14;;;20270:23;;;;-1:-1:-1;;;;;20279:14:0;;;20270:23;;;;;;19996:305::o;32275:167::-;32353:4;32370:42;10352:10;32394:9;32405:6;32370:9;:42::i;39187:171::-;18205:6;;-1:-1:-1;;;;;18205:6:0;10352:10;18205:22;18197:67;;;;-1:-1:-1;;;18197:67:0;;10152:2:1;18197:67:0;;;10134:21:1;;;10171:18;;;10164:30;10230:34;10210:18;;;10203:62;10282:18;;18197:67:0;9950:356:1;18197:67:0;39264:21:::1;:32:::0;;;::::1;;;;::::0;;;::::1;;::::0;;39312:38:::1;::::0;::::1;::::0;::::1;::::0;39288:8;1571:14:1;1564:22;1546:41;;1534:2;1519:18;;1406:187;39312:38:0::1;;;;;;;;39187:171:::0;:::o;34219:386::-;18205:6;;-1:-1:-1;;;;;18205:6:0;10352:10;18205:22;18197:67;;;;-1:-1:-1;;;18197:67:0;;10152:2:1;18197:67:0;;;10134:21:1;;;10171:18;;;10164:30;10230:34;10210:18;;;10203:62;10282:18;;18197:67:0;9950:356:1;18197:67:0;34331:16:::1;34370:35:::0;;::::1;34362:71;;;::::0;-1:-1:-1;;;34362:71:0;;12791:2:1;34362:71:0::1;::::0;::::1;12773:21:1::0;12830:2;12810:18;;;12803:30;12869:25;12849:18;;;12842:53;12912:18;;34362:71:0::1;12589:347:1::0;34362:71:0::1;34450:28:::0;;::::1;34444:154;;;34494:64;34510:10;;34521:8;34510:20;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;34532:7;;34540:8;34532:17;;;;;;;:::i;:::-;;;;;;;34552:5;34532:25;;;;:::i;:::-;34494:15;:64::i;:::-;34573:13;34585:1;34573:13:::0;::::1;:::i;:::-;;;34444:154;;;34320:285;34219:386:::0;;;;:::o;19694:226::-;18205:6;;-1:-1:-1;;;;;18205:6:0;10352:10;18205:22;18197:67;;;;-1:-1:-1;;;18197:67:0;;10152:2:1;18197:67:0;;;10134:21:1;;;10171:18;;;10164:30;10230:34;10210:18;;;10203:62;10282:18;;18197:67:0;9950:356:1;18197:67:0;19775:6:::1;::::0;;19758:14:::1;:23:::0;;;;;::::1;-1:-1:-1::0;;;;;19775:6:0;::::1;19758:23;::::0;;;19792:19:::1;::::0;;19834:22:::1;19852:4:::0;19834:15:::1;:22;:::i;:::-;19822:9;:34:::0;19909:1:::1;19893:6:::0;;19872:40:::1;::::0;-1:-1:-1;;;;;19893:6:0;;::::1;::::0;19872:40:::1;::::0;19909:1;;19872:40:::1;19694:226:::0;:::o;37679:101::-;18205:6;;-1:-1:-1;;;;;18205:6:0;10352:10;18205:22;18197:67;;;;-1:-1:-1;;;18197:67:0;;10152:2:1;18197:67:0;;;10134:21:1;;;10171:18;;;10164:30;10230:34;10210:18;;;10203:62;10282:18;;18197:67:0;9950:356:1;18197:67:0;37752:20:::1;37737:12;:35:::0;37679:101::o;37429:113::-;18031:7;18058:6;-1:-1:-1;;;;;18058:6:0;10352:10;18546:23;;:55;;-1:-1:-1;10352:10:0;18573:20;;;;:6;:20;;;;;;;;;;;:28;;;18546:55;18538:64;;;;;;-1:-1:-1;;;;;37499:27:0::1;37529:5;37499:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;37499:35:0::1;::::0;;37429:113::o;38639:185::-;18031:7;18058:6;-1:-1:-1;;;;;18058:6:0;10352:10;18546:23;;:55;;-1:-1:-1;10352:10:0;18573:20;;;;:6;:20;;;;;;;;;;;:28;;;18546:55;18538:64;;;;;;38727:9:::1;38722:95;38738:20:::0;;::::1;38722:95;;;38803:4;38776:10;:24;38787:9;;38797:1;38787:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;38776:24:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;38776:24:0;:31;;-1:-1:-1;;38776:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;38760:3:::1;::::0;::::1;:::i;:::-;;;38722:95;;19277:244:::0;18205:6;;-1:-1:-1;;;;;18205:6:0;10352:10;18205:22;18197:67;;;;-1:-1:-1;;;18197:67:0;;10152:2:1;18197:67:0;;;10134:21:1;;;10171:18;;;10164:30;10230:34;10210:18;;;10203:62;10282:18;;18197:67:0;9950:356:1;18197:67:0;-1:-1:-1;;;;;19366:22:0;::::1;19358:73;;;::::0;-1:-1:-1;;;19358:73:0;;13276:2:1;19358:73:0::1;::::0;::::1;13258:21:1::0;13315:2;13295:18;;;13288:30;13354:34;13334:18;;;13327:62;13425:8;13405:18;;;13398:36;13451:19;;19358:73:0::1;13074:402:1::0;19358:73:0::1;19468:6;::::0;;19447:38:::1;::::0;-1:-1:-1;;;;;19447:38:0;;::::1;::::0;19468:6;::::1;::::0;19447:38:::1;::::0;::::1;19496:6;:17:::0;;;::::1;-1:-1:-1::0;;;;;19496:17:0;;;::::1;::::0;;;::::1;::::0;;19277:244::o;42802:337::-;-1:-1:-1;;;;;42895:19:0;;42887:68;;;;-1:-1:-1;;;42887:68:0;;13683:2:1;42887:68:0;;;13665:21:1;13722:2;13702:18;;;13695:30;13761:34;13741:18;;;13734:62;13832:6;13812:18;;;13805:34;13856:19;;42887:68:0;13481:400:1;42887:68:0;-1:-1:-1;;;;;42974:21:0;;42966:68;;;;-1:-1:-1;;;42966:68:0;;14088:2:1;42966:68:0;;;14070:21:1;14127:2;14107:18;;;14100:30;14166:34;14146:18;;;14139:62;14237:4;14217:18;;;14210:32;14259:19;;42966:68:0;13886:398:1;42966:68:0;-1:-1:-1;;;;;43047:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;43099:32;;1744:25:1;;;43099:32:0;;1717:18:1;43099:32:0;;;;;;;42802:337;;;:::o;43147:1813::-;-1:-1:-1;;;;;43269:18:0;;43261:68;;;;-1:-1:-1;;;43261:68:0;;14491:2:1;43261:68:0;;;14473:21:1;14530:2;14510:18;;;14503:30;14569:34;14549:18;;;14542:62;14640:7;14620:18;;;14613:35;14665:19;;43261:68:0;14289:401:1;43261:68:0;-1:-1:-1;;;;;43348:16:0;;43340:64;;;;-1:-1:-1;;;43340:64:0;;14897:2:1;43340:64:0;;;14879:21:1;14936:2;14916:18;;;14909:30;14975:34;14955:18;;;14948:62;15046:5;15026:18;;;15019:33;15069:19;;43340:64:0;14695:399:1;43340:64:0;43432:1;43423:6;:10;43415:64;;;;-1:-1:-1;;;43415:64:0;;15301:2:1;43415:64:0;;;15283:21:1;15340:2;15320:18;;;15313:30;15379:34;15359:18;;;15352:62;15450:11;15430:18;;;15423:39;15479:19;;43415:64:0;15099:405:1;43415:64:0;18031:7;18058:6;-1:-1:-1;;;;;43493:15:0;;;18058:6;;43493:15;;;;:32;;-1:-1:-1;18031:7:0;18058:6;-1:-1:-1;;;;;43512:13:0;;;18058:6;;43512:13;;43493:32;43490:125;;;43558:12;;43548:6;:22;;43540:75;;;;-1:-1:-1;;;43540:75:0;;15711:2:1;43540:75:0;;;15693:21:1;15750:2;15730:18;;;15723:30;15789:34;15769:18;;;15762:62;15860:10;15840:18;;;15833:38;15888:19;;43540:75:0;15509:404:1;43540:75:0;43910:28;43941:24;43959:4;43941:9;:24::i;:::-;43910:55;;44013:12;;43989:20;:36;43986:112;;-1:-1:-1;44074:12:0;;43986:112;44169:29;;44145:53;;;;;;;44227;;-1:-1:-1;44264:16:0;;;;44263:17;44227:53;:91;;;;;44305:13;-1:-1:-1;;;;;44297:21:0;:4;-1:-1:-1;;;;;44297:21:0;;;44227:91;:129;;;;-1:-1:-1;44335:21:0;;;;;;;44227:129;44209:318;;;44406:29;;44383:52;;44479:36;44494:20;44479:14;:36::i;:::-;-1:-1:-1;;;;;44735:24:0;;44608:12;44735:24;;;:18;:24;;;;;;44623:4;;44735:24;;;:50;;-1:-1:-1;;;;;;44763:22:0;;;;;;:18;:22;;;;;;;;44735:50;44732:96;;;-1:-1:-1;44811:5:0;44732:96;44914:38;44929:4;44934:2;44937:6;44944:7;44914:14;:38::i;:::-;43250:1710;;;43147:1813;;;:::o;6603:192::-;6689:7;6725:12;6717:6;;;;6709:29;;;;-1:-1:-1;;;6709:29:0;;;;;;;;:::i;:::-;-1:-1:-1;6749:9:0;6761:5;6765:1;6761;:5;:::i;:::-;6749:17;6603:192;-1:-1:-1;;;;;6603:192:0:o;40821:163::-;40862:7;40883:15;40900;40919:19;:17;:19::i;:::-;40882:56;;-1:-1:-1;40882:56:0;-1:-1:-1;40956:20:0;40882:56;;40956:11;:20::i;:::-;40949:27;;;;40821:163;:::o;8001:132::-;8059:7;8086:39;8090:1;8093;8086:39;;;;;;;;;;;;;;;;;:3;:39::i;5700:181::-;5758:7;;5790:5;5794:1;5790;:5;:::i;:::-;5778:17;;5819:1;5814;:6;;5806:46;;;;-1:-1:-1;;;5806:46:0;;16120:2:1;5806:46:0;;;16102:21:1;16159:2;16139:18;;;16132:30;16198:29;16178:18;;;16171:57;16245:18;;5806:46:0;15918:351:1;39619:419:0;39678:7;39687;39696;39705;39714;39723;39744:23;39769:12;39783:18;39805:20;39817:7;39805:11;:20::i;:::-;39743:82;;;;;;39837:15;39854:23;39879:12;39895:50;39907:7;39916:4;39922:10;39934;:8;:10::i;:::-;39895:11;:50::i;:::-;39836:109;;;;-1:-1:-1;39836:109:0;;-1:-1:-1;39996:15:0;;-1:-1:-1;40013:4:0;;-1:-1:-1;40019:10:0;;-1:-1:-1;39619:419:0;;-1:-1:-1;;;;;39619:419:0:o;6164:136::-;6222:7;6249:43;6253:1;6256;6249:43;;;;;;;;;;;;;;;;;:3;:43::i;42272:250::-;42318:7;;:12;:34;;;;-1:-1:-1;42334:13:0;;:18;42318:34;42315:46;;;42272:250::o;42315:46::-;42399:7;;;42381:15;:25;42441:13;;;42417:21;:37;-1:-1:-1;42475:11:0;;;;42497:17;42272:250::o;34026:181::-;34106:14;:12;:14::i;:::-;34131:42;10352:10;34155:9;34166:6;34131:9;:42::i;44968:1182::-;30865:16;:23;;-1:-1:-1;;30865:23:0;30884:4;30865:23;;;:16;45156:27:::1;:20:::0;45181:1:::1;45156:24;:27::i;:::-;45141:42:::0;-1:-1:-1;45194:17:0::1;45214:30;:20:::0;45141:42;45214:24:::1;:30::i;:::-;45194:50:::0;-1:-1:-1;45547:21:0::1;45613:22;45630:4:::0;45613:16:::1;:22::i;:::-;45766:18;45787:41;:21;45813:14:::0;45787:25:::1;:41::i;:::-;45766:62:::0;-1:-1:-1;45839:22:0::1;45864:27;45887:3;45864:18;45766:62:::0;45879:2:::1;45864:14;:18::i;:::-;:22:::0;::::1;:27::i;:::-;45910:15;::::0;45902:49:::1;::::0;45839:52;;-1:-1:-1;;;;;;45910:15:0::1;::::0;45902:49;::::1;;;::::0;45839:52;;45910:15:::1;45902:49:::0;45910:15;45902:49;45839:52;45910:15;45902:49;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;45962:28:0::1;45976:14:::0;45962:28;::::1;:::i;:::-;;;46038:35;46051:9;46062:10;46038:12;:35::i;:::-;46099:43;::::0;;16476:25:1;;;16532:2;16517:18;;16510:34;;;16560:18;;;16553:34;;;46099:43:0::1;::::0;16464:2:1;16449:18;46099:43:0::1;;;;;;;-1:-1:-1::0;;30911:16:0;:24;;-1:-1:-1;;30911:24:0;;;-1:-1:-1;;;;44968:1182:0:o;47349:1114::-;47460:8;;;;;;;47456:114;;18031:7;18058:6;-1:-1:-1;;;;;47492:17:0;;;18058:6;;47492:17;47484:26;;;;;;-1:-1:-1;;;;;47593:18:0;;;;;;:10;:18;;;;;;;;;:43;;-1:-1:-1;;;;;;47615:21:0;;;;;;:10;:21;;;;;;;;47593:43;47590:126;;;47660:12;;;;47652:52;;;;-1:-1:-1;;;47652:52:0;;16800:2:1;47652:52:0;;;16782:21:1;16839:2;16819:18;;;16812:30;16878:29;16858:18;;;16851:57;16925:18;;47652:52:0;16598:351:1;47652:52:0;47740:7;47736:40;;47762:14;:12;:14::i;:::-;-1:-1:-1;;;;;47801:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;47825:22:0;;;;;;:11;:22;;;;;;;;47824:23;47801:46;47797:597;;;47864:48;47886:6;47894:9;47905:6;47864:21;:48::i;:::-;47797:597;;;-1:-1:-1;;;;;47935:19:0;;;;;;:11;:19;;;;;;;;47934:20;:46;;;;-1:-1:-1;;;;;;47958:22:0;;;;;;:11;:22;;;;;;;;47934:46;47930:464;;;47997:46;48017:6;48025:9;48036:6;47997:19;:46::i;47930:464::-;-1:-1:-1;;;;;48066:19:0;;;;;;:11;:19;;;;;;;;48065:20;:47;;;;-1:-1:-1;;;;;;48090:22:0;;;;;;:11;:22;;;;;;;;48089:23;48065:47;48061:333;;;48129:44;48147:6;48155:9;48166:6;48129:17;:44::i;48061:333::-;-1:-1:-1;;;;;48195:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;48218:22:0;;;;;;:11;:22;;;;;;;;48195:45;48191:203;;;48257:48;48279:6;48287:9;48298:6;48257:21;:48::i;48191:203::-;48338:44;48356:6;48364:9;48375:6;48338:17;:44::i;:::-;48418:7;48414:41;;48440:15;42588;;42578:7;:25;42630:21;;42614:13;:37;42534:125;48440:15;47349:1114;;;;:::o;40992:561::-;41089:7;;41125;;41042;;;;;41149:289;41173:9;:16;41169:20;;41149:289;;;41239:7;41215;:21;41223:9;41233:1;41223:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;41223:12:0;41215:21;;;;;;;;;;;;;:31;;:66;;;41274:7;41250;:21;41258:9;41268:1;41258:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;41258:12:0;41250:21;;;;;;;;;;;;;:31;41215:66;41211:97;;;41291:7;;41300;;41283:25;;;;;;;40992:561;;:::o;41211:97::-;41333:34;41345:7;:21;41353:9;41363:1;41353:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;41353:12:0;41345:21;;;;;;;;;;;;;41333:7;;:11;:34::i;:::-;41323:44;;41392:34;41404:7;:21;41412:9;41422:1;41412:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;41412:12:0;41404:21;;;;;;;;;;;;;41392:7;;:11;:34::i;:::-;41382:44;-1:-1:-1;41191:3:0;;;;:::i;:::-;;;;41149:289;;;-1:-1:-1;41474:7:0;;41462;;:20;;:11;:20::i;:::-;41452:7;:30;41448:61;;;41492:7;;41501;;41484:25;;;;;;40992:561;;:::o;41448:61::-;41528:7;;41537;;-1:-1:-1;40992:561:0;-1:-1:-1;40992:561:0:o;8629:278::-;8715:7;8750:12;8743:5;8735:28;;;;-1:-1:-1;;;8735:28:0;;;;;;;;:::i;:::-;-1:-1:-1;8774:9:0;8786:5;8790:1;8786;:5;:::i;40046:330::-;40106:7;40115;40124;40144:12;40159:24;40175:7;40159:15;:24::i;:::-;40144:39;;40194:18;40215:30;40237:7;40215:21;:30::i;:::-;40194:51;-1:-1:-1;40256:23:0;40282:33;40194:51;40282:17;:7;40294:4;40282:11;:17::i;:::-;:21;;:33::i;:::-;40256:59;40351:4;;-1:-1:-1;40357:10:0;;-1:-1:-1;40046:330:0;;-1:-1:-1;;;40046:330:0:o;40384:429::-;40499:7;;;;40555:24;:7;40567:11;40555;:24::i;:::-;40537:42;-1:-1:-1;40590:12:0;40605:21;:4;40614:11;40605:8;:21::i;:::-;40590:36;-1:-1:-1;40637:18:0;40658:27;:10;40673:11;40658:14;:27::i;:::-;40637:48;-1:-1:-1;40696:23:0;40722:33;40637:48;40722:17;:7;40734:4;40722:11;:17::i;:33::-;40774:7;;;;-1:-1:-1;40800:4:0;;-1:-1:-1;40384:429:0;;-1:-1:-1;;;;;;;40384:429:0:o;46158:589::-;46308:16;;;46322:1;46308:16;;;;;;;;46284:21;;46308:16;;;;;;;;;;-1:-1:-1;46308:16:0;46284:40;;46353:4;46335;46340:1;46335:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;46335:23:0;;;-1:-1:-1;;;;;46335:23:0;;;;;46379:15;-1:-1:-1;;;;;46379:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46369:4;46374:1;46369:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;46369:32:0;;;-1:-1:-1;;;;;46369:32:0;;;;;46414:62;46431:4;46446:15;46464:11;46414:8;:62::i;:::-;46515:224;;;;;-1:-1:-1;;;;;46515:15:0;:66;;;;:224;;46596:11;;46622:1;;46666:4;;46693;;46713:15;;46515:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7054:471;7112:7;7357:6;7353:47;;-1:-1:-1;7387:1:0;7380:8;;7353:47;7412:9;7424:5;7428:1;7424;:5;:::i;:::-;7412:17;-1:-1:-1;7457:1:0;7448:5;7452:1;7412:17;7448:5;:::i;:::-;:10;7440:56;;;;-1:-1:-1;;;7440:56:0;;18911:2:1;7440:56:0;;;18893:21:1;18950:2;18930:18;;;18923:30;18989:34;18969:18;;;18962:62;19060:3;19040:18;;;19033:31;19081:19;;7440:56:0;18709:397:1;46755:513:0;46903:62;46920:4;46935:15;46953:11;46903:8;:62::i;:::-;47008:15;-1:-1:-1;;;;;47008:31:0;;47047:9;47080:4;47100:11;47126:1;47169;47212:7;18031;18058:6;-1:-1:-1;;;;;18058:6:0;;17993:79;47212:7;47008:252;;;;;;;;;;-1:-1:-1;;;;;19493:15:1;;;47008:252:0;;;19475:34:1;19525:18;;;19518:34;;;;19568:18;;;19561:34;;;;19611:18;;;19604:34;19675:15;;;19654:19;;;19647:44;47234:15:0;19707:19:1;;;19700:35;19386:19;;47008:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;49575:566::-;49678:15;49695:23;49720:12;49734:23;49759:12;49773:18;49795:19;49806:7;49795:10;:19::i;:::-;-1:-1:-1;;;;;49843:15:0;;;;;;:7;:15;;;;;;49677:137;;-1:-1:-1;49677:137:0;;-1:-1:-1;49677:137:0;;-1:-1:-1;49677:137:0;-1:-1:-1;49677:137:0;-1:-1:-1;49677:137:0;-1:-1:-1;49843:28:0;;49863:7;49843:19;:28::i;:::-;-1:-1:-1;;;;;49825:15:0;;;;;;:7;:15;;;;;;;;:46;;;;49900:7;:15;;;;:28;;49920:7;49900:19;:28::i;:::-;-1:-1:-1;;;;;49882:15:0;;;;;;;:7;:15;;;;;;:46;;;;49960:18;;;;;;;:39;;49983:15;49960:22;:39::i;:::-;-1:-1:-1;;;;;49939:18:0;;;;;;:7;:18;;;;;:60;50013:26;50028:10;50013:14;:26::i;:::-;50050:23;50062:4;50068;50050:11;:23::i;:::-;50106:9;-1:-1:-1;;;;;50089:44:0;50098:6;-1:-1:-1;;;;;50089:44:0;;50117:15;50089:44;;;;1744:25:1;;1732:2;1717:18;;1598:177;50089:44:0;;;;;;;;49666:475;;;;;;49575:566;;;:::o;48981:586::-;49082:15;49099:23;49124:12;49138:23;49163:12;49177:18;49199:19;49210:7;49199:10;:19::i;:::-;-1:-1:-1;;;;;49247:15:0;;;;;;:7;:15;;;;;;49081:137;;-1:-1:-1;49081:137:0;;-1:-1:-1;49081:137:0;;-1:-1:-1;49081:137:0;-1:-1:-1;49081:137:0;-1:-1:-1;49081:137:0;-1:-1:-1;49247:28:0;;49081:137;49247:19;:28::i;:::-;-1:-1:-1;;;;;49229:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;49307:18;;;;;:7;:18;;;;;:39;;49330:15;49307:22;:39::i;:::-;-1:-1:-1;;;;;49286:18:0;;;;;;:7;:18;;;;;;;;:60;;;;49378:7;:18;;;;:39;;49401:15;49378:22;:39::i;48471:502::-;48570:15;48587:23;48612:12;48626:23;48651:12;48665:18;48687:19;48698:7;48687:10;:19::i;:::-;-1:-1:-1;;;;;48735:15:0;;;;;;:7;:15;;;;;;48569:137;;-1:-1:-1;48569:137:0;;-1:-1:-1;48569:137:0;;-1:-1:-1;48569:137:0;-1:-1:-1;48569:137:0;-1:-1:-1;48569:137:0;-1:-1:-1;48735:28:0;;48569:137;48735:19;:28::i;36649:642::-;36752:15;36769:23;36794:12;36808:23;36833:12;36847:18;36869:19;36880:7;36869:10;:19::i;:::-;-1:-1:-1;;;;;36917:15:0;;;;;;:7;:15;;;;;;36751:137;;-1:-1:-1;36751:137:0;;-1:-1:-1;36751:137:0;;-1:-1:-1;36751:137:0;-1:-1:-1;36751:137:0;-1:-1:-1;36751:137:0;-1:-1:-1;36917:28:0;;36937:7;36917:19;:28::i;:::-;-1:-1:-1;;;;;36899:15:0;;;;;;:7;:15;;;;;;;;:46;;;;36974:7;:15;;;;:28;;36994:7;36974:19;:28::i;41932:154::-;41996:7;42023:55;42062:5;42023:20;42035:7;;42023;:11;;:20;;;;:::i;42094:166::-;42164:7;42191:61;42236:5;42191:26;42203:13;;42191:7;:11;;:26;;;;:::i;41565:355::-;41628:19;41651:10;:8;:10::i;:::-;41628:33;-1:-1:-1;41672:18:0;41693:27;:10;41628:33;41693:14;:27::i;:::-;41772:4;41756:22;;;;:7;:22;;;;;;41672:48;;-1:-1:-1;41756:38:0;;41672:48;41756:26;:38::i;:::-;41747:4;41731:22;;;;:7;:22;;;;;;;;:63;;;;41808:11;:26;;;;;;41805:107;;;41890:4;41874:22;;;;:7;:22;;;;;;:38;;41901:10;41874:26;:38::i;:::-;41865:4;41849:22;;;;:7;:22;;;;;:63;41617:303;;41565:355;:::o;39464:147::-;39542:7;;:17;;39554:4;39542:11;:17::i;:::-;39532:7;:27;39583:10;;:20;;39598:4;39583:14;:20::i;:::-;39570:10;:33;-1:-1:-1;;39464:147:0:o;14:154:1:-;-1:-1:-1;;;;;93:5:1;89:54;82:5;79:65;69:93;;158:1;155;148:12;173:247;232:6;285:2;273:9;264:7;260:23;256:32;253:52;;;301:1;298;291:12;253:52;340:9;327:23;359:31;384:5;359:31;:::i;425:656::-;537:4;566:2;595;584:9;577:21;627:6;621:13;670:6;665:2;654:9;650:18;643:34;695:1;705:140;719:6;716:1;713:13;705:140;;;814:14;;;810:23;;804:30;780:17;;;799:2;776:26;769:66;734:10;;705:140;;;863:6;860:1;857:13;854:91;;;933:1;928:2;919:6;908:9;904:22;900:31;893:42;854:91;-1:-1:-1;997:2:1;985:15;1002:66;981:88;966:104;;;;1072:2;962:113;;425:656;-1:-1:-1;;;425:656:1:o;1086:315::-;1154:6;1162;1215:2;1203:9;1194:7;1190:23;1186:32;1183:52;;;1231:1;1228;1221:12;1183:52;1270:9;1257:23;1289:31;1314:5;1289:31;:::i;:::-;1339:5;1391:2;1376:18;;;;1363:32;;-1:-1:-1;;;1086:315:1:o;2038:456::-;2115:6;2123;2131;2184:2;2172:9;2163:7;2159:23;2155:32;2152:52;;;2200:1;2197;2190:12;2152:52;2239:9;2226:23;2258:31;2283:5;2258:31;:::i;:::-;2308:5;-1:-1:-1;2365:2:1;2350:18;;2337:32;2378:33;2337:32;2378:33;:::i;:::-;2038:456;;2430:7;;-1:-1:-1;;;2484:2:1;2469:18;;;;2456:32;;2038:456::o;2499:180::-;2558:6;2611:2;2599:9;2590:7;2586:23;2582:32;2579:52;;;2627:1;2624;2617:12;2579:52;-1:-1:-1;2650:23:1;;2499:180;-1:-1:-1;2499:180:1:o;2873:401::-;2954:6;2962;3015:2;3003:9;2994:7;2990:23;2986:32;2983:52;;;3031:1;3028;3021:12;2983:52;3070:9;3057:23;3089:31;3114:5;3089:31;:::i;:::-;3139:5;-1:-1:-1;3196:2:1;3181:18;;3168:32;3209:33;3168:32;3209:33;:::i;:::-;3261:7;3251:17;;;2873:401;;;;;:::o;3279:118::-;3365:5;3358:13;3351:21;3344:5;3341:32;3331:60;;3387:1;3384;3377:12;3402:309;3467:6;3475;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3580:9;3567:23;3557:33;;3640:2;3629:9;3625:18;3612:32;3653:28;3675:5;3653:28;:::i;3947:382::-;4012:6;4020;4073:2;4061:9;4052:7;4048:23;4044:32;4041:52;;;4089:1;4086;4079:12;4041:52;4128:9;4115:23;4147:31;4172:5;4147:31;:::i;:::-;4197:5;-1:-1:-1;4254:2:1;4239:18;;4226:32;4267:30;4226:32;4267:30;:::i;4594:241::-;4650:6;4703:2;4691:9;4682:7;4678:23;4674:32;4671:52;;;4719:1;4716;4709:12;4671:52;4758:9;4745:23;4777:28;4799:5;4777:28;:::i;4840:367::-;4903:8;4913:6;4967:3;4960:4;4952:6;4948:17;4944:27;4934:55;;4985:1;4982;4975:12;4934:55;-1:-1:-1;5008:20:1;;5051:18;5040:30;;5037:50;;;5083:1;5080;5073:12;5037:50;5120:4;5112:6;5108:17;5096:29;;5180:3;5173:4;5163:6;5160:1;5156:14;5148:6;5144:27;5140:38;5137:47;5134:67;;;5197:1;5194;5187:12;5134:67;4840:367;;;;;:::o;5212:773::-;5334:6;5342;5350;5358;5411:2;5399:9;5390:7;5386:23;5382:32;5379:52;;;5427:1;5424;5417:12;5379:52;5467:9;5454:23;5496:18;5537:2;5529:6;5526:14;5523:34;;;5553:1;5550;5543:12;5523:34;5592:70;5654:7;5645:6;5634:9;5630:22;5592:70;:::i;:::-;5681:8;;-1:-1:-1;5566:96:1;-1:-1:-1;5769:2:1;5754:18;;5741:32;;-1:-1:-1;5785:16:1;;;5782:36;;;5814:1;5811;5804:12;5782:36;;5853:72;5917:7;5906:8;5895:9;5891:24;5853:72;:::i;:::-;5212:773;;;;-1:-1:-1;5944:8:1;-1:-1:-1;;;;5212:773:1:o;6383:437::-;6469:6;6477;6530:2;6518:9;6509:7;6505:23;6501:32;6498:52;;;6546:1;6543;6536:12;6498:52;6586:9;6573:23;6619:18;6611:6;6608:30;6605:50;;;6651:1;6648;6641:12;6605:50;6690:70;6752:7;6743:6;6732:9;6728:22;6690:70;:::i;:::-;6779:8;;6664:96;;-1:-1:-1;6383:437:1;-1:-1:-1;;;;6383:437:1:o;6825:::-;6904:1;6900:12;;;;6947;;;6968:61;;7022:4;7014:6;7010:17;7000:27;;6968:61;7075:2;7067:6;7064:14;7044:18;7041:38;7038:218;;;7112:77;7109:1;7102:88;7213:4;7210:1;7203:15;7241:4;7238:1;7231:15;7038:218;;6825:437;;;:::o;7692:184::-;7744:77;7741:1;7734:88;7841:4;7838:1;7831:15;7865:4;7862:1;7855:15;7881:228;7921:7;8047:1;7979:66;7975:74;7972:1;7969:81;7964:1;7957:9;7950:17;7946:105;7943:131;;;8054:18;;:::i;:::-;-1:-1:-1;8094:9:1;;7881:228::o;9242:184::-;9294:77;9291:1;9284:88;9391:4;9388:1;9381:15;9415:4;9412:1;9405:15;9431:125;9471:4;9499:1;9496;9493:8;9490:34;;;9504:18;;:::i;:::-;-1:-1:-1;9541:9:1;;9431:125::o;9561:184::-;9613:77;9610:1;9603:88;9710:4;9707:1;9700:15;9734:4;9731:1;9724:15;9750:195;9789:3;9820:66;9813:5;9810:77;9807:103;;;9890:18;;:::i;:::-;-1:-1:-1;9937:1:1;9926:13;;9750:195::o;10311:184::-;10381:6;10434:2;10422:9;10413:7;10409:23;10405:32;10402:52;;;10450:1;10447;10440:12;10402:52;-1:-1:-1;10473:16:1;;10311:184;-1:-1:-1;10311:184:1:o;10802:245::-;10869:6;10922:2;10910:9;10901:7;10897:23;10893:32;10890:52;;;10938:1;10935;10928:12;10890:52;10970:9;10964:16;10989:28;11011:5;10989:28;:::i;12941:128::-;12981:3;13012:1;13008:6;13005:1;13002:13;12999:39;;;13018:18;;:::i;:::-;-1:-1:-1;13054:9:1;;12941:128::o;16954:274::-;16994:1;17020;17010:189;;17055:77;17052:1;17045:88;17156:4;17153:1;17146:15;17184:4;17181:1;17174:15;17010:189;-1:-1:-1;17213:9:1;;16954:274::o;17422:251::-;17492:6;17545:2;17533:9;17524:7;17520:23;17516:32;17513:52;;;17561:1;17558;17551:12;17513:52;17593:9;17587:16;17612:31;17637:5;17612:31;:::i;17678:1026::-;17940:4;17988:3;17977:9;17973:19;18019:6;18008:9;18001:25;18045:2;18083:6;18078:2;18067:9;18063:18;18056:34;18126:3;18121:2;18110:9;18106:18;18099:31;18150:6;18185;18179:13;18216:6;18208;18201:22;18254:3;18243:9;18239:19;18232:26;;18293:2;18285:6;18281:15;18267:29;;18314:1;18324:218;18338:6;18335:1;18332:13;18324:218;;;18403:13;;-1:-1:-1;;;;;18399:62:1;18387:75;;18517:15;;;;18482:12;;;;18360:1;18353:9;18324:218;;;-1:-1:-1;;;;;;;18598:55:1;;;;18593:2;18578:18;;18571:83;-1:-1:-1;;;18685:3:1;18670:19;18663:35;18559:3;17678:1026;-1:-1:-1;;;17678:1026:1:o;19746:306::-;19834:6;19842;19850;19903:2;19891:9;19882:7;19878:23;19874:32;19871:52;;;19919:1;19916;19909:12;19871:52;19948:9;19942:16;19932:26;;19998:2;19987:9;19983:18;19977:25;19967:35;;20042:2;20031:9;20027:18;20021:25;20011:35;;19746:306;;;;;:::o

Swarm Source

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