ETH Price: $3,334.30 (-1.47%)
Gas: 30 Gwei

Token

Chungalunga (CL)
 

Overview

Max Total Supply

10,000,000,000 CL

Holders

236 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
stopjeetingyoustupidfuck.eth
Balance
0.209573527146020729 CL

Value
$0.00
0x9e4b679e716e302a2116fba6614e1fe8777c9758
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Chungalunga is a fresh, bold, and community-driven project. Chungalunga vision is to make CL one of the most used cryptocurrencies in the world by using it for payments on our upcoming ecom platform.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Chungalunga

Compiler Version
v0.8.3+commit.8d00100c

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**
*
* https://www.chungalungacoin.com/
* https://t.me/chungalunga
* https://twitter.com/chungalungacoin
*
*/

// SPDX-License-Identifier: MIT

// File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol

pragma solidity >=0.5.0;


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

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

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

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

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

// File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol

pragma solidity >=0.5.0;


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

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

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

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

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

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

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

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

    function initialize(address, address) external;
}

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol

pragma solidity >=0.6.2;


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

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

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

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol

pragma solidity >=0.6.2;



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

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

// File: contracts/interfaces/ISafetyControl.sol

pragma solidity ^0.8.3;


/**
 * Enables safety and general transaction restrictions control.
 * 
 * Safety control :
 *  1. enabling/disabling anti pajeet system (APS). Can be called by admins to decide whether additional limitiations to sales should be imposed on not
 *  2. enabling/disabling trade control  system (TCS).
 *  3. enabling/disabling sending of tokens between accounts
 *  
 * General control:
 *  1. presale period. During presale all taxes are disabled
 *  2. trade. Before trade is open, no transactions are allowed
 *  3. LP state control. Before LP has been created, trade cannot be opened.
 * 
 */
interface ISafetyControl {

    /**
    * Defines state of APS after change of some of properties.
    * Properties:
    *   - enabled -> is APS enabled
    *   - thresh -> number of tokens(in wei). If one holds more that this number than he cannot sell more than 20% of his tokens at once
    *   - interval -> number of minutes between two consecutive sales
    */
    event APSStateUpdate (
        bool enabled,
        uint256 thresh,
        uint256 interval
    );
    
    /**
     * Enables/disables Anti pajeet system.
     * If enabled it will impose sale restrictions:
     *   - cannot sell more than 0.2% of total supply at once
	 *   - if owns more than 1% total supply:
	 *	    - can sell at most 20% at once (but not more than 0.2 of total supply)
	 *	    - can sell once every hour
     * 
     * emits APSStateUpdate
	 * 
	 * @param enabled   Defines state of APS. true or false
     */
    function setAPS(bool enabled) external;

    /**
     * Enables/disables Trade Control System.
     * If enabled it will impose sale restrictions:
     *   - max TX will be checked
	 *   - holders will not be able to purchase and hold more than _holderLimit tokens
	 *	 - single account can sell once every 2 mins
	 * 
	 * @param enabled   Defines state of TCS. true or false
     */
    function setTCS(bool enabled) external;

    /**
     * Defines new Anti pajeet system threshold in percentage. Value supports single digit, Meaning 10 means 1%.
     * Examples:
     *    to set 1%: 10
     *    to set 0.1%: 1
     * 
     * emits APSStateUpdate
     *
	 * @param thresh  New threshold in percentage of total supply. Value supports single digit.
     */
    function setAPSThreshPercent(uint256 thresh) external;

    /**
    * Defines new Anti pajeet system threshold in tokens. Minimal amount is 1000 tokens
    * 
    * emits APSStateUpdate
    *
	* @param thresh  New threshold in token amount
    */
    function setAPSThreshAmount(uint256 thresh) external;

    /**
    * Sets new interval user will have to wait in between two consecutive sales, if APS is enabled.
    * Default value is 1 hour
    * 
    * 
    * emits APSStateUpdate
    *
    * @param interval   interval between two consecutive sales, in minutes. E.g. 60 means 1 hour
    */
    function setAPSInterval(uint256 interval) external;
    
    /**
     * Upon start of presale all taxes are disabled
	 * Once presale is stopped, taxes are enabled once more
	 * 
	 * @param start     Defines state of Presale. started or stopped
     */
    function setPreSale(bool start) external;
    
    /**
     * Only once trading is open will transactions be allowed. 
     * Trading is disabled by default.
     * Liquidity MUST be proviided before trading can be opened
     *
     * @param on    true if trade is to be opened, otherwise false
     */
    function tradeCtrl(bool on) external;

    /**
    * Enables/disables sharing of tokens between accounts.
    * If enabled, sending tokens from one account to another is permitted. 
    * If disabled, sending tokens from one account to another will be blocked.
    *
    * @param enabled    True if sending between account is permitter, otherwise false      
    */
    function setAccountShare(bool enabled) external;

}
// File: contracts/interfaces/IFeeControl.sol

pragma solidity ^0.8.3;


/**
 * Defines control over:
 *  - who will be paying fees
 *  - when will fees be applied
 */
interface IFeeControl {
    event ExcludeFromFees (
        address indexed account,
        bool isExcluded
    );
    
    event TakeFeeOnlyOnSwap (
        bool enabled
    );
	
	event MinTokensBeforeSwapUpdated (
        uint256 minTokensBeforeSwap
    );
    
    /**
     * Exclude or include account in fee system. Excluded accounts don't pay any fee.
     *
     * @param account   Account address
     * @param exclude   If true account will be excluded, otherwise it will be included in fee
     */
    function feeControl(address account, bool exclude) external;

    /**
     * Is account excluded from paying fees?
     *
     * @param account   Account address
     */
    function isExcludedFromFee(address account) external view returns(bool);
    /**
     * Taking fee only on swaps.
     * Emits TakeFeeOnlyOnSwap(true) event.
     * 
     * @param onSwap    Take fee only on swap (true) or always (false)
     */
     function takeFeeOnlyOnSwap(bool onSwap) external;
     
    /**
	* Changes number of tokens collected before swap can be triggered
    * - emits MinTokensBeforeSwapUpdated event
    *
    * @param thresh     New number of tokens that must be collected before swap is triggered
	*/
	function changeSwapThresh(uint256 thresh) external;
}
// File: contracts/interfaces/IFee.sol

pragma solidity ^0.8.3;


/**
 * Defines Fees:
 *  - marketing
 *  - liquidity
 * All fees are using 1 decimal: 1000 means 100%, 100 means 10%, 10 means 1%, 1 means 0.1%
 */
interface IFee {
    /**
     * Struct of fees.
     */
    struct Fees {
      uint256 marketingFee;
      uint256 liquidityFee;
    }
    
    /**
     * Marketing wallet can be changed
     *
     * @param newWallet     Address of new marketing wallet
     */
    function changeMarketingWallet(address newWallet) external;

    /**
	* Changing fees. Distinguishes between buy and sell fees
    *
    * @param liquidityFee   New liquidity fee in percentage written as integer divisible by 1000. E.g. 5% => 0.05 => 50/1000 => 50
    * @param marketingFee   New marketing fee in percentage written as integer divisible by 1000. E.g. 5% => 0.05 => 50/1000 => 50
    * @param isBuy          Are fees for buy or not(for sale)
	*/
    function setFees(uint256 liquidityFee, uint256 marketingFee, bool isBuy)  external;
    
    /**
     * Control whether tokens collected from fees will be automatically swapped or not
     *
     * @param enable        True if swap should be enabled, otherwise false
     */
    function setSwapOfFeeTokens(bool enable) external;
}
// File: contracts/interfaces/IBlacklisting.sol

pragma solidity ^0.8.3;


/**
 * Some blacklisting/whitelisting functionalities:
 *  - adding account to list of blacklisted/whitelisted accounts
 *  - removing account from list of blacklisted/whitelisted accounts
 *  - check whether account is blacklisted/whitelisted accounts (against internal list)
 */
interface IBlacklisting {

    /**
    * Sent once address is blacklisted.
    */
    event BlacklistedAddress(
        address account
    );

    /**
     * Define account status in blacklist
	 *
	 * @param account   Account to be added or removed to/from blacklist
	 * @param add       Should account be added or removed from blacklist
     */
    function setBlacklist(address account, bool add) external;

    /**
     * Define account status in whitelist
	 *
	 * @param account   Account to be added or removed to/from whitelist
	 * @param add       Should account be added or removed from whitelist
     */
    function setWhitelist(address account, bool add) external;
    /**
     * Checks whether account is blacklisted
     */
    function isBlacklisted(address account) external view returns(bool);
	/**
     * Checks whether account is whitelisted
     */
    function isWhitelisted(address account) external view returns(bool);

    /**
    *  Define fee charged to blacklist. Fee supports singe decimal place, i.e it should be multiplied by 10 to get unsigned int: 100 means 10%, 10 means 1% and 1 means 0.1%
    */
    function setBlacklistFee(uint256 blacklistFee) external;
    
}
// File: @openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

// File: contracts/interfaces/IChungalunga.sol

pragma solidity ^0.8.3;







interface IChungalunga is IERC20, IERC20Metadata, IBlacklisting, ISafetyControl, IFee, IFeeControl {
    
    event UpdateSwapV2Router (
        address indexed newAddress
    );
    
    event SwapAndLiquifyEnabledUpdated (
        bool enabled
    );

    event MarketingSwap (
        uint256 tokensSwapped,
        uint256 ethReceived,
        bool success
    );
    
    event SwapAndLiquify (
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );

    /**
    * Defines new state of properties TCS uses after some property was changed
    * Properties:
    *   - enabled ->is TCS system enabled
    *   - maxTxLimit -> max number of tokens (in wei) one can sell/buy at once
    *   - holderLimit -> max number of tokens one account can hold
    *   - interval ->interval between two consecutive sales in minutes
    */
    event TCSStateUpdate (
        bool enabled,
        uint256 maxTxLimit,
        uint256 holderLimit,
        uint256 interval
    );


    /**
    * (un)Setting *swapV2Pair address.
    *
    * @param pair       address of AMM pair
    * @param value      true if it's to be treated as AMM pair, otherwise false
    */
    function setLPP(address pair, bool value) external;
    
    /**
     * Max TX can be set either by providing percentage of total supply or exact amount.
     *
     * !MAX TX percentage MUST be between 1 and 10!
     * 
     * emits TCSStateUpdate
     *
     * @param maxTxPercent    new percentage used to calculate max number of tokens that can be transferred at the same time
     */
    function setMaxTxPercent(uint256 maxTxPercent) external;
    /**
     * max TX can be set either by providing percentage of total supply or exact amount.
     *
     * emits TCSStateUpdate
     *
     * @param maxTxAmount    new max number of tokens that can be transferred at the same time
     */
    function setMaxTxAmount(uint256 maxTxAmount) external;

    /**
     * Excluded accounts are not limited by max TX amount.
	 * Included accounts are limited by max TX amount.
     *
     * @param account   account address
     * @param exclude   true if account is to be excluded from max TX control. Otherwise false
     */
    function maxTxControl(address account, bool exclude) external;
    /**
     * Is account excluded from MAX TX limitations?
     *
     * @param account   account address
     * @return          true if account is excluded, otherwise false
     */
    function isExcludedFromMaxTx(address account) external view returns(bool);

    /**
    * Defines new limit to max token amount holder can possess.
    *
    * ! Holder limit MUST be greater than 0.5% total supply
    *
    * emits TCSStateUpdate
    *
    * @param limit      Max number of tokens one holder can possess
    */
    function setHolderLimit(uint256 limit) external;
    
    /**
     * Once set, LP provisioning from liquidity fees will start. 
     * Disabled by default. 
     * Must be called manually
     * - emits SwapAndLiquifyEnabledUpdated event
     *
     * @param enabled   true if swap is enabled, otherwise false
     */
    function setSwapAndLiquifyEnabled(bool enabled) external;
    
    /**
     * It will exclude sale helper router address and presale router address from fee's and rewards
     *
     * @param helperRouter  address of router used by helper 
     * @param presaleRouter address of presale router(contract) used by helper 
     */
    function setHelperSaleAddress(address helperRouter, address presaleRouter) external;
    
    /**
     * Any leftover coin balance on contract can be transferred (withdrawn) to chosen account.
     * Used to clear contract state.
     *
     * @param recipient     address of recipient
     */
    function withdrawLocked(address payable recipient) external;

    /**
     * Function to withdraw collected fees to marketing wallet in case automatic swap is disabled.
     * 
     * ! Will fail it swap is not disabled
     */
    function withdrawFees() external;
    
    /**
     * Updates address of V2 swap router
     * - emits UpdateSwapV2Router event
     *
     * @param newAddress    address of swap router
     */
    function updateSwapV2Router(address newAddress) external;

    /**
     * Starts whitelisted process. 
     * Whitelisted process will is valid for limited time only starting from current time. 
     * It will last for at most provided duration in minutes.
     *
     * @param duration      Duration in minutes. 
     */
    function wlProcess(uint256 duration) external;    
}
// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @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");

        (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");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        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
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;




/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

// File: @openzeppelin/contracts/utils/structs/EnumerableSet.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/structs/EnumerableSet.sol)

pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 *
 * [WARNING]
 * ====
 *  Trying to delete such a structure from storage will likely result in data corruption, rendering the structure unusable.
 *  See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info.
 *
 *  In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an array of EnumerableSet.
 * ====
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;
        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) {
            // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            if (lastIndex != toDeleteIndex) {
                bytes32 lastValue = set._values[lastIndex];

                // Move the last value to the index where the value to delete is
                set._values[toDeleteIndex] = lastValue;
                // Update the index for the moved value
                set._indexes[lastValue] = valueIndex; // Replace lastValue's index to valueIndex
            }

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        return set._values[index];
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function _values(Set storage set) private view returns (bytes32[] memory) {
        return set._values;
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
        return _values(set._inner);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(AddressSet storage set) internal view returns (address[] memory) {
        bytes32[] memory store = _values(set._inner);
        address[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(UintSet storage set) internal view returns (uint256[] memory) {
        bytes32[] memory store = _values(set._inner);
        uint256[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// File: @openzeppelin/contracts/access/IAccessControl.sol


// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}

// File: @openzeppelin/contracts/access/IAccessControlEnumerable.sol


// OpenZeppelin Contracts v4.4.1 (access/IAccessControlEnumerable.sol)

pragma solidity ^0.8.0;


/**
 * @dev External interface of AccessControlEnumerable declared to support ERC165 detection.
 */
interface IAccessControlEnumerable is IAccessControl {
    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) external view returns (address);

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) external view returns (uint256);
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions 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 {
        _transferOwnership(address(0));
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/access/AccessControl.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/AccessControl.sol)

pragma solidity ^0.8.0;





/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role);
        _;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view virtual override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `_msgSender()` is missing `role`.
     * Overriding this function changes the behavior of the {onlyRole} modifier.
     *
     * Format of the revert message is described in {_checkRole}.
     *
     * _Available since v4.6._
     */
    function _checkRole(bytes32 role) internal view virtual {
        _checkRole(role, _msgSender());
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view virtual {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleGranted} event.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleRevoked} event.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     *
     * May emit a {RoleRevoked} event.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * May emit a {RoleGranted} event.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleGranted} event.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleRevoked} event.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

// File: @openzeppelin/contracts/access/AccessControlEnumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (access/AccessControlEnumerable.sol)

pragma solidity ^0.8.0;




/**
 * @dev Extension of {AccessControl} that allows enumerating the members of each role.
 */
abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl {
    using EnumerableSet for EnumerableSet.AddressSet;

    mapping(bytes32 => EnumerableSet.AddressSet) private _roleMembers;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IAccessControlEnumerable).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) public view virtual override returns (address) {
        return _roleMembers[role].at(index);
    }

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) public view virtual override returns (uint256) {
        return _roleMembers[role].length();
    }

    /**
     * @dev Overload {_grantRole} to track enumerable memberships
     */
    function _grantRole(bytes32 role, address account) internal virtual override {
        super._grantRole(role, account);
        _roleMembers[role].add(account);
    }

    /**
     * @dev Overload {_revokeRole} to track enumerable memberships
     */
    function _revokeRole(bytes32 role, address account) internal virtual override {
        super._revokeRole(role, account);
        _roleMembers[role].remove(account);
    }
}

// File: contracts/Chungalunga.sol


pragma solidity ^0.8.3;
















/**
*
* https://www.chungalungacoin.com/
* https://t.me/chungalunga
* https://twitter.com/chungalungacoin
*
*/
contract Chungalunga is IChungalunga, ERC20, Ownable, AccessControlEnumerable {
    using SafeMath for uint256;
    using Address for address;
    using SafeERC20 for IERC20;

    event StateProgress (
        bool liquidityAdded,
        bool whitelistStarted,
        bool tradeOpened
    );

    event WHStart (
        uint256 duration
    );
    
    struct TaxedValues{
      uint256 amount;
      uint256 tAmount;
      uint256 tMarketing;
      uint256 tLiquidity;
    }
	
	struct SwapValues{
		uint256 tMarketing;
		uint256 tLiquidity;
		uint256 tHalfLiquidity;
		uint256 tTotal;
		uint256 swappedBalance;
	}
	
	// 
	// CONSTANTS
	//
	//uint256 private constant MAX = ~uint256(0);

	/* Using 18 decimals */
	uint8 private constant DECIMALS = 18;
	
	/* Total supply : 10_000_000_000 tokens (10 Billion) */
	uint256 private constant TOKENS_INITIAL = 10 * 10 ** 9;
	
	/* Minimal number of tokens that must be collected before swap can be triggered: 1000. Real threshold cannot be set below this value */
	uint256 private constant MIN_SWAP_THRESHOLD = 1 * 10 ** 3 * 10 ** uint256(DECIMALS);

    /* By what to divide calculated fee to compensate for supported decimals */
    uint256 private constant DECIMALS_FEES = 1000;
	
	/* Max amount of individual fee. 9.0% */
	uint256 private constant LIMIT_FEES = 90;
	
	/* Max amount of total fees. 10.0% */
	uint256 private constant LIMIT_TOTAL_FEES = 100;

    /* Number of minutes between 2 sales. 117 seconds */
    uint256 private constant TCS_TIME_INTERVAL = 117;
	
	/* Dead address */
	address private constant deadAddress = 0x000000000000000000000000000000000000dEaD;
	
	bytes32 private constant ADMIN_ROLE = keccak256("CL_ADMIN_ROLE");
    bytes32 private constant CTRL_ROLE = keccak256("CL_CTRL_ROLE");
	
	// 
	// MEMBERS
	//
	
	/* How much can each address allow for another address */
    mapping (address => mapping (address => uint256)) private _allowances;
	
	/* Map of addresses and whether they are excluded from fee */
    mapping (address => bool) private _isExcludedFromFee;
    
    /* Map of addresses and whether they are excluded from max TX check */
    mapping (address => bool) private _isExcludedFromMaxTx;
    
    /* Map of blacklisted addresses */
    mapping(address => bool) private _blacklist;
	
	/* Map of whitelisted addresses */
    mapping(address => bool) private _whitelist;
	
	/* Fee that will be charged to blacklisted accounts. Default is 90% */
	uint256 private _blacklistFee = 900;
    
    /* Marketing wallet address */
    address public marketingWalletAddress;

    /* Number of tokens currently pending swap for marketing */
    uint256 public tPendingMarketing;
    /* Number of tokens currently pending swap for liquidity */
    uint256 public tPendingLiquidity;
	
	/* Total tokens in wei. Will be created during initial mint in constructor */
    uint256 private _tokensTotal = TOKENS_INITIAL * 10 ** uint256(DECIMALS);
	
	/* Total fees taken so far */
    Fees private _totalTakenFees = Fees(
    {marketingFee: 0,
      liquidityFee: 0
    });
    
    Fees private _buyFees = Fees(
    {marketingFee: 40,
      liquidityFee: 10
    });
    
    Fees private _previousBuyFees = Fees(
     {marketingFee: _buyFees.marketingFee,
      liquidityFee: _buyFees.liquidityFee
    });
    
    Fees private _sellFees = Fees(
     {marketingFee: 40,
      liquidityFee: 10
    });
    
    Fees private _previousSellFees = Fees(
     {marketingFee: _sellFees.marketingFee,
      liquidityFee: _sellFees.liquidityFee
    });
    
	/* Swap and liquify safety flag */
    bool private _inSwapAndLiquify;
	
	/* Whether swap and liquify is enabled or not. Enabled by default */
    bool private _swapAndLiquifyEnabled = true;
    
	/* Anti Pajeet system */
    bool public apsEnabled = false;

    /* Trade control system */
    bool public tcsEnabled = false;

    /* Is whitelisted process active */
    bool private _whProcActive = false;

    /* When did whitelisted process start? */
    uint256 private _whStart = 0;

    /* Duration of whitelisted process */
    uint256 private _whDuration = 1;

    /* Account sharing system (sending of tokens between accounts. Disabled by default */
    bool private _accSharing = false;

    /* Anti Pajeet system threshold. If a single account holds more that that number of tokens APS limits will be applied */
    uint256 private _apsThresh = 20 * 10 ** 6 * 10 ** uint256(DECIMALS);

    /* Anti Pajeet system interval between two consecutive sales. In minutes. It defines when is the earlies user can sell depending on his last sale. Can be as low as 1 min. Defaults to 1440 mins (24 hours).  */
    uint256 private _apsInterval = 1440;
	
	/* Was LP provided? False by default */
	bool public liquidityAdded = false;
	
	/* Is trade open? False by default */
	bool public tradingOpen = false;
	
	/* Should tokens in marketing wallet be swapped automatically */
	bool private _swapMarketingTokens = true;
	
	/* Should fees be applied only on swaps? Otherwise, all transactions will be taxed */
	bool public feeOnlyOnSwap = false;
	
	/* Mapping of previous sales by address. Used to limit sell occurrence */
    mapping (address => uint256) private _previousSale;

    /* Mapping of previous buys by address. Used to limit buy occurrence */
    mapping (address => uint256) private _previousBuy;
    
	/* Maximal transaction amount -> cannot be higher than available token supply. It will be dynamically adjusted upon start */
    uint256 private _maxTxAmount = 0;

    /* Maximal amount single holder can possess -> cannot be higher than available token supply. Initially it will be set to 1% of total supply. It will be dynamically adjusted */
    uint256 private _maxHolderAmount = (_tokensTotal * 1) / 100;
	
	/* Min number of tokens to trigger sell and add to liquidity. Initially, 300k tokens */
    uint256 private _swapThresh =  300 * 10 ** 3 * 10 ** uint256(DECIMALS);

    /* Number of block when liquidity was added */
    uint256 private _lpCreateBlock = 0;

    /* Number of block when WH process was started */
    uint256 private _whStartBlock = 0;
    
    /* *Swap V2 router */
    IUniswapV2Router02 private _swapV2Router;
    
    /* Swap V2 pair */
    address private _swapV2Pair;
	
	/* Map of AMMs. Special rules apply when AMM is "to" */
	mapping (address => bool) public ammPairs;
    
    constructor () ERC20("Chungalunga", "CL") {
		
        _changeMarketingWallet(address(0x69cEC9B2FFDfE02481fBDC372Cd885FE83F3f694));
		
		_setupRole(CTRL_ROLE, msg.sender);
	
        // 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D is RouterV2 on mainnet
        _setupSwap(address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D));
        _setupExclusions();
		
		_setRoleAdmin(ADMIN_ROLE, ADMIN_ROLE);
        _setRoleAdmin(CTRL_ROLE, ADMIN_ROLE);

        _setupRole(ADMIN_ROLE, msg.sender);
        _setupRole(ADMIN_ROLE, address(this));

        _setupRole(CTRL_ROLE, msg.sender);
        _setupRole(CTRL_ROLE, address(this));
		
        _mint(msg.sender, _tokensTotal);
		
		transferOwnership(msg.sender);
    }
    
    //
    // EXTERNAL ACCESS
    //

	function addCTRLMember(address account) public virtual onlyRole(ADMIN_ROLE) {
        grantRole(CTRL_ROLE, account);
    }

    function removeCTRLMember(address account) public virtual onlyRole(ADMIN_ROLE) {
        revokeRole(CTRL_ROLE, account);
    }

    function renounceAdminRole() public virtual onlyRole(ADMIN_ROLE) {
        revokeRole(CTRL_ROLE, msg.sender);
        revokeRole(ADMIN_ROLE, msg.sender);
    }

    /**
    * Fetches how many tokens were taken as fee so far
    *
    * @return (marketingFeeTokens, liquidityFeeTokens)
    */
    function totalTakenFees() public view returns (uint256, uint256) {
        return (_totalTakenFees.marketingFee, _totalTakenFees.liquidityFee);
    }

    /**
    * Fetches current fee settings: buy or sell.
    *
    * @param isBuy  true if buy fees are requested, otherwise false
    * @return (marketingFee, liquidityFee)
    */
    function currentFees(bool isBuy) public view returns (uint256, uint256) {
        if(isBuy){
            return (_buyFees.marketingFee, _buyFees.liquidityFee);
        } else {
            return (_sellFees.marketingFee, _sellFees.liquidityFee);
        }
    }
    
    function feeControl(address account, bool exclude) override external onlyRole(CTRL_ROLE) {
        _isExcludedFromFee[account] = exclude;
    }
    
    /* Check whether account is exclude from fee */
    function isExcludedFromFee(address account) override external view returns(bool) {
        return _isExcludedFromFee[account];
    }
    
    function maxTxControl(address account, bool exclude) external override onlyRole(CTRL_ROLE) {
        _isExcludedFromMaxTx[account] = exclude;
    }
    
    function isExcludedFromMaxTx(address account) public view override returns(bool) {
        return _isExcludedFromMaxTx[account];
    }

    function setHolderLimit(uint256 limit) external override onlyRole(CTRL_ROLE) {
        require(limit > 0 && limit < TOKENS_INITIAL, "HOLDER_LIMIT1");

        uint256 new_limit = limit * 10 ** uint256(DECIMALS);

        // new limit cannot be less than 0.5%
        require(new_limit > ((_tokensTotal * 5) / DECIMALS_FEES), "HOLDER_LIMIT2");

        _maxHolderAmount = new_limit;

        emit TCSStateUpdate(tcsEnabled, _maxTxAmount, _maxHolderAmount, TCS_TIME_INTERVAL);
    }

    /* It will exclude sale helper router address and presale router address from fee's and rewards */
    function setHelperSaleAddress(address helperRouter, address presaleRouter) external override onlyRole(CTRL_ROLE) {
        _excludeAccount(helperRouter, true);
        _excludeAccount(presaleRouter, true);
    }

    /* Enable Trade control system. Imposes limitations on buy/sell */
    function setTCS(bool enabled) override external onlyRole(CTRL_ROLE) {
        tcsEnabled = enabled;

        emit TCSStateUpdate(tcsEnabled, _maxTxAmount, _maxHolderAmount, TCS_TIME_INTERVAL);
    }

    /**
     * Returns TCS state:
     * - max TX amount in wei
     * - max holder amount in wei
     * - TCS buy/sell interval in minutes
     */
    function getTCSState() public view onlyRole(CTRL_ROLE) returns(uint256, uint256, uint256) {
        return (_maxTxAmount, _maxHolderAmount, TCS_TIME_INTERVAL);
    }
    
	/* Enable anti-pajeet system. Imposes limitations on sale */
    function setAPS(bool enabled) override external onlyRole(CTRL_ROLE) {
        apsEnabled = enabled;

        emit APSStateUpdate(apsEnabled, _apsThresh, _apsInterval);
    }

	/* Sets new APS threshold. It cannot be set to more than 5% */
    function setAPSThreshPercent(uint256 thresh) override external onlyRole(CTRL_ROLE) {
        require(thresh < 50, "APS-THRESH-PERCENT");

        _apsThresh = _tokensTotal.mul(thresh).div(DECIMALS_FEES);

        emit APSStateUpdate(apsEnabled, _apsThresh, _apsInterval);
    }

    function setAPSThreshAmount(uint256 thresh) override external onlyRole(CTRL_ROLE) {
        require(thresh > 1000 && thresh < TOKENS_INITIAL, "APS-THRESH-AMOUNT");

        _apsThresh = thresh * 10 ** uint256(DECIMALS);

        emit APSStateUpdate(apsEnabled, _apsThresh, _apsInterval);
    }

    /* Sets new min APS sale interval. In minutes */
    function setAPSInterval(uint256 interval) override external onlyRole(CTRL_ROLE) {
        require(interval > 0, "APS-INTERVAL-0");

        _apsInterval = interval;

        emit APSStateUpdate(apsEnabled, _apsThresh, _apsInterval);
    }

    /**
     * Returns APS state:
     * - threshold in tokens
     * - interval in minutes
     */
    function getAPSState() public view onlyRole(CTRL_ROLE) returns(uint256, uint256) {
        return (_apsThresh, _apsInterval);
    }

    /* wnables/disables account sharing: sending of tokens between accounts */
    function setAccountShare(bool enabled) override external onlyRole(CTRL_ROLE) {
        _accSharing = enabled;
    }
    
	/* Changing marketing wallet */
    function changeMarketingWallet(address account) override external onlyRole(CTRL_ROLE) {
        _changeMarketingWallet(account);
    }
    
    function setFees(uint256 liquidityFee, uint256 marketingFee, bool isBuy) external override onlyRole(CTRL_ROLE) {
        // fees are setup so they can not exceed 10% in total
        // and specific limits for each one.
        require(marketingFee + liquidityFee <= LIMIT_TOTAL_FEES, "FEE-MAX");
       
        _setMarketingFeePercent(marketingFee, isBuy);
        _setLiquidityFeePercent(liquidityFee, isBuy);
    }
   
    /* Define MAX TX amount. In percentage of total supply */
    function setMaxTxPercent(uint256 maxTxPercent) override external onlyRole(CTRL_ROLE) {
        require(maxTxPercent <= 1000, "MAXTX_PERC_LIMIT");
        _maxTxAmount = _tokensTotal.mul(maxTxPercent).div(DECIMALS_FEES);

        emit TCSStateUpdate(tcsEnabled, _maxTxAmount, _maxHolderAmount, TCS_TIME_INTERVAL);
    }
    
	/* Define MAX TX amount. In token count */
    function setMaxTxAmount(uint256 maxTxAmount) override external onlyRole(CTRL_ROLE) {
        require(maxTxAmount <= TOKENS_INITIAL, "MAXTX_AMNT_LIMIT");
        _maxTxAmount = maxTxAmount * 10 ** uint256(DECIMALS);

        emit TCSStateUpdate(tcsEnabled, _maxTxAmount, _maxHolderAmount, TCS_TIME_INTERVAL);
    }

    /* Enable LP provisioning */
    function setSwapAndLiquifyEnabled(bool enabled) override external onlyRole(CTRL_ROLE) {
        _swapAndLiquifyEnabled = enabled;
        emit SwapAndLiquifyEnabledUpdated(enabled);
    }
	
	/* Define new swap threshold. Cannot be less than MIN_SWAP_THRESHOLD: 1000 tokens */
	function changeSwapThresh(uint256 thresh) override external onlyRole(CTRL_ROLE){
        uint256 newThresh = thresh * 10 ** uint256(DECIMALS);

		require(newThresh > MIN_SWAP_THRESHOLD, "THRESH-LOW");

		_swapThresh = newThresh;
	}

    /* take a look at current swap threshold */
    function swapThresh() public view onlyRole(CTRL_ROLE) returns(uint256) {
        return _swapThresh;
    }
    
	/* Once presale is done and LP is created, trading can be enabled for all. Only once this is set will normal transactions be completed successfully */
    function tradeCtrl(bool on) override external onlyRole(CTRL_ROLE) {
        require(liquidityAdded, "LIQ-NONE");
       _tradeCtrl(on);
    }

    function _tradeCtrl(bool on) internal {
        tradingOpen = on;

        emit StateProgress(true, true, true);
    }

    function wlProcess(uint256 duration) override external onlyRole(CTRL_ROLE) {
        require(liquidityAdded && _lpCreateBlock > 0, "LIQ-NONE");
        require(duration > 1, "WHT-DUR-LOW");

        _whStartBlock = block.number;

        _whProcActive = true;
        _whDuration = duration;
        _whStart = block.timestamp;

        // set MAX TX limit to 10M tokens
        _maxTxAmount = 10 * 10 ** 6 * 10 ** uint256(DECIMALS);

        // make sure trading is closed
        tradingOpen = false;

        // enable aps
        apsEnabled = true;

        // enable tcs
        tcsEnabled = true;

        // return APS thresh to 20M
        _apsThresh = 20 * 10 ** 6 * 10 ** uint256(DECIMALS);

        // emit current state
        emit StateProgress(true, true, false);

        // emit start of whitelist process
        emit WHStart(duration);
    }

	/* Sets should tokens collected through fees be automatically swapped to ETH or not */
    function setSwapOfFeeTokens(bool enabled) override external onlyRole(CTRL_ROLE) {
        _swapMarketingTokens = enabled;
    }
    
	/* Sets should fees be taken only on swap or on all transactions */
    function takeFeeOnlyOnSwap(bool onSwap) override external onlyRole(CTRL_ROLE) {
        feeOnlyOnSwap = onSwap;
        emit TakeFeeOnlyOnSwap(feeOnlyOnSwap);
    }
	
	/* Should be called once LP is created. Manually or programatically (by calling #addInitialLiquidity()) */
	function defineLiquidityAdded() public onlyRole(CTRL_ROLE) {
        liquidityAdded = true;

        if(_lpCreateBlock == 0) {
            _lpCreateBlock = block.number;
        }

        emit StateProgress(true, false, false);
    }
    
	/* withdraw any ETH balance stuck in contract */
    function withdrawLocked(address payable recipient) external override onlyRole(CTRL_ROLE) {
        require(recipient != address(0), 'ADDR-0');
        require(address(this).balance > 0, 'BAL-0');
	
        uint256 amount = address(this).balance;
        // address(this).balance = 0;
    
        (bool success,) = payable(recipient).call{value: amount}('');
    
        if(!success) {
          revert();
        }
    }

    function withdrawFees() external override onlyRole(CTRL_ROLE) {
        require(!_swapAndLiquifyEnabled, "WITHDRAW-SWAP");

        super._transfer(address(this), marketingWalletAddress, balanceOf(address(this)));

        tPendingMarketing = 0;
        tPendingLiquidity = 0;
    }
    
    function isBlacklisted(address account) external view override returns(bool) {
        return _blacklist[account];
    }
	
	function isWhitelisted(address account) external view override returns(bool) {
        return _whitelist[account];
    }
    
    function setBlacklist(address account, bool add) external override onlyRole(CTRL_ROLE) {
		_setBlacklist(account, add);
    }
    
    function setWhitelist(address account, bool add) external override onlyRole(CTRL_ROLE) {
        _whitelist[account] = add;
    }
	
	function setBlacklistFee(uint256 blacklistFee) external override onlyRole(CTRL_ROLE) {
		_blacklistFee = blacklistFee;
	}

    function _setBlacklist(address account, bool add) private {
        _blacklist[account] = add;

        emit BlacklistedAddress(account);
    }

    function bulkWhitelist(address[] calldata addrs, bool add) external onlyRole(CTRL_ROLE) {
        for (uint i=0; i<addrs.length; i++){
            _whitelist[addrs[i]] = add;
        }
    }

    function bulkBlacklist(address[] calldata addrs, bool add) external onlyRole(CTRL_ROLE) {
        for (uint i=0; i<addrs.length; i++){
            _blacklist[addrs[i]] = add;
        }
    }

    function provisionPrivate(address[] calldata addrs, uint256 amount) external onlyRole(CTRL_ROLE) {
        for (uint i=0; i<addrs.length; i++){
            super.transfer(addrs[i], amount);
        }
    }
	
	/* To be called whan presale begins/ends. It will remove/add fees */
	function setPreSale(bool start) external override onlyRole(CTRL_ROLE) {
		if(start) { // presale started
			// remove all fees (buy)
			_removeAllFee(true);
			// remove all fees (sell)
			_removeAllFee(false);
		} else { // presale stopped
			// restore all fees (buy)
			_restoreAllFee(true);
			// restore all fees (sell)
			_restoreAllFee(false);
		}
    }
    
    function updateSwapV2Router(address newAddress) external override onlyRole(CTRL_ROLE) {
        require(newAddress != address(0), "R2-1");
        _setupSwap(newAddress);
    }
    
     //to receive ETH from *swapV2Router when swaping. msg.data must be empty
    receive() external payable {}

    // Fallback function is called when msg.data is not empty
    //fallback() external payable {}
    
    //
    // PRIVATE ACCESS
    //
    
    function _setupSwap(address routerAddress) private {
        // Uniswap V2 router: 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        
        _swapV2Router = IUniswapV2Router02(routerAddress);
    
        // create a swap pair for this new token
        _swapV2Pair = IUniswapV2Factory(_swapV2Router.factory()).createPair(address(this), _swapV2Router.WETH());

		_setAMMPair(address(_swapV2Pair), true);

        //_approve(owner(), address(_swapV2Router), type(uint256).max);

        _isExcludedFromMaxTx[address(_swapV2Router)] = true;

        _approve(owner(), address(_swapV2Router), type(uint256).max);
        ERC20(address(_swapV2Router.WETH())).approve(address(_swapV2Router), type(uint256).max);
        ERC20(address(_swapV2Router.WETH())).approve(address(this), type(uint256).max);
		
		emit UpdateSwapV2Router(routerAddress);
    }
	
	function setLPP(address pair, bool value) external override onlyRole(CTRL_ROLE) {
        _setAMMPair(pair, value);

        if (!liquidityAdded) {
            defineLiquidityAdded();
        }
    }

    function _setAMMPair(address pair, bool value) private {
        ammPairs[pair] = value;

        _isExcludedFromMaxTx[pair] = value;
    }
    
    function _excludeAccount(address addr, bool ex) private {
         _isExcludedFromFee[addr] = ex;
         _isExcludedFromMaxTx[addr] = ex;
    }
    
    function _setupExclusions() private {
        _excludeAccount(msg.sender, true);
        _excludeAccount(address(this), true);
        _excludeAccount(owner(), true);
		_excludeAccount(deadAddress, true);
        _excludeAccount(marketingWalletAddress, true);
    }
    
    function _changeMarketingWallet(address addr) internal {
        require(addr != address(0), "ADDR-0");
        _excludeAccount(marketingWalletAddress, false);
		
        marketingWalletAddress = addr;
		
		_excludeAccount(addr, true);
    }
    
    function _isBuy(address from) internal view returns(bool) {
        //return from == address(_swapV2Pair) || ammPairs[from];
        return ammPairs[from];
    }
    
    function _isSell(address to) internal view returns(bool) {
        //return to == address(_swapV2Pair) || ammPairs[to];
        return ammPairs[to];
    }
    
    function _checkTxLimit(address from, address to, uint256 amount) internal view {
        if (_isBuy(from)) { // buy
			require(amount <= _maxTxAmount || _isExcludedFromMaxTx[to], "TX-LIMIT-BUY");
        } else  if (_isSell(to)) { // sell
            require(amount <= _maxTxAmount || _isExcludedFromMaxTx[from], "TX-LIMIT-SELL");
        } else { // transfer
			require(amount <= _maxTxAmount || (_isExcludedFromMaxTx[from] || _isExcludedFromMaxTx[to]), "TX-LIMIT");
        }
    }
    
    function _setMarketingFeePercent(uint256 fee, bool isBuy) internal {
        require(fee <= LIMIT_FEES, "FEE-LIMIT-M");
        
        if(isBuy){
            _previousBuyFees.marketingFee = _buyFees.marketingFee;
            _buyFees.marketingFee = fee;
        } else {
            _previousSellFees.marketingFee = _sellFees.marketingFee;
            _sellFees.marketingFee = fee;
        }
    }
    
    function _setLiquidityFeePercent(uint256 liquidityFee, bool isBuy) internal {
        require(liquidityFee <= LIMIT_FEES, "FEE-LIMIT-L");
        
         if(isBuy){
            _previousBuyFees.liquidityFee = _buyFees.liquidityFee;
            _buyFees.liquidityFee = liquidityFee;
        } else {
            _previousSellFees.liquidityFee = _sellFees.liquidityFee;
            _sellFees.liquidityFee = liquidityFee;
        }
    }

    function _getValues(uint256 amount, bool isBuy) private view returns (TaxedValues memory totalValues) {
        totalValues.amount = amount;
        totalValues.tMarketing = _calculateMarketingFee(amount, isBuy);
        totalValues.tLiquidity = _calculateLiquidityFee(amount, isBuy);
        
        totalValues.tAmount = amount.sub(totalValues.tMarketing).sub(totalValues.tLiquidity);
        
        return totalValues;
    }
    
    function _calculateMarketingFee(uint256 amount, bool isBuy) private view returns (uint256) {
        if(isBuy){
            return _buyFees.marketingFee > 0 ?
                amount.mul(_buyFees.marketingFee).div(DECIMALS_FEES) : 0;
        } else {
            return _sellFees.marketingFee > 0 ?
                amount.mul(_sellFees.marketingFee).div(DECIMALS_FEES) : 0;
        }
    }

    function _calculateLiquidityFee(uint256 amount, bool isBuy) private view returns (uint256) {
        if(isBuy){
            return _buyFees.liquidityFee > 0 ?
                amount.mul(_buyFees.liquidityFee).div(DECIMALS_FEES) : 0;
        } else {
            return _sellFees.liquidityFee > 0 ?
                amount.mul(_sellFees.liquidityFee).div(DECIMALS_FEES) : 0; 
        }
    }
    
    function _removeAllFee(bool isBuy) private {
        if(isBuy){
            _previousBuyFees = _buyFees;
            _buyFees.liquidityFee = 0;
            _buyFees.marketingFee = 0;
        } else {
            _previousSellFees = _sellFees;
            _sellFees.liquidityFee = 0;
            _sellFees.marketingFee = 0;
        }
    }
    
    function _restoreAllFee(bool isBuy) private {
        if(isBuy){
            _buyFees = _previousBuyFees;
        } else {
            _sellFees = _previousSellFees;
        }
    }
    
    /**
    * Transfer codes:
    *   - FROM-ADDR-0 -> from address is 0
    *   - TO-ADDR-0 -> to address is 0
    *   - ADDR-0 -> if some address is 0 
    *   - CNT-0 -> if some amount is 0
    */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "FROM-ADDR-0");
        require(to != address(0), "TO-ADDR-0");
        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if(_blacklist[from] || _blacklist[to]) {
			_blacklistDefense(from, to, amount);
            return;
        }

        if (!_inSwapAndLiquify) {

            // whitelist process check
            _whitelistProcessCheck();

            // general rules of conduct
            _generalRules(from, to, amount);

            // TCS  (Trade Control System) check
            _tcsCheck(from, to, amount);
            
            // APS (Anti Pajeet System) check
            _apsCheck(from, to, amount);

            // DLP (Delayed Provision)
            _delayedProvision(from, to);
        }

        //indicates if fee should be deducted from transfer
        bool takeFee = !_inSwapAndLiquify;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFee[from] || _isExcludedFromFee[to] ) {
            takeFee = false;
        }

        /*
        // take fee only on swaps depending on input flag
        if (feeOnlyOnSwap && !_isBuy(from) && !_isSell(to)) {
            takeFee = false;
        }
        */
        
        //transfer amount, it will take tax, special, liquidity fee
        _tokenTransfer(from, to, amount, takeFee);
    }

    function _defense(address from, address to, uint256 amount, uint256 fee) private {
		uint256 tFee = amount * fee / DECIMALS_FEES;
		uint256 tRest = amount - tFee;

        super._transfer(from, address(this), tFee);
        super._transfer(from, to, tRest);

        uint256 totalFeeP = 0;
        uint256 mFee = 0;
        uint256 lFee = 0;
        if (_isBuy(from)) {
            totalFeeP = _buyFees.liquidityFee + _buyFees.marketingFee;
            if (totalFeeP > 0) {
                lFee = _buyFees.liquidityFee > 0 ? tFee * _buyFees.liquidityFee / totalFeeP : 0;
                mFee = tFee - lFee;
            }
        } else {
            totalFeeP = _sellFees.liquidityFee + _sellFees.marketingFee;
            if (totalFeeP > 0) {
                lFee = _sellFees.liquidityFee > 0 ? tFee * _sellFees.liquidityFee / totalFeeP : 0;
                mFee = tFee - lFee;
            }
        }

        if (totalFeeP > 0) {
            tPendingMarketing += mFee;
            tPendingLiquidity += lFee;
            _totalTakenFees.marketingFee += mFee;
            _totalTakenFees.liquidityFee += lFee;
        }
		
	}
	
	function _blacklistDefense(address from, address to, uint256 amount) private {
        _defense(from, to, amount, _blacklistFee);		
	}

    function _whitelistProcessCheck() private {
        if (_whProcActive) {

            require(block.number - _whStartBlock >= 2, "SNIPER-WL");

            if (_whStart + (_whDuration * 1 minutes) < block.timestamp) {
                // whitelist process has expired. Disable it
                _whProcActive = false;

            	// set MAX TX limit to 15M tokens
                _maxTxAmount = 15 * 10 ** 6 * 10 ** uint256(DECIMALS);

                // open trading
                _tradeCtrl(true);
            }
        }
    }

    /**
    * GENERAL codes:
    *   - ACC-SHARE -> account sharing is disabled
    *   - TX-LIMIT-BUY -> transaction limit has been reached during buy
    *   - TX-LIMIT-SELL -> transaction limit has been reached during sell
    *   - TX-LIMIT -> transaction limit has been reached during share
    */
    function _generalRules(address from, address to, uint256 amount) private view {

        // acc sharing
        require(_accSharing || _isBuy(from) || _isSell(to) || from == owner() || to == owner(), "ACC-SHARE"); // either acc sharing is enabled, or at least one of from-to is AMM

        // anti bot
        if (!tradingOpen && liquidityAdded && from != owner() && to != owner()) {

            require(block.number - _lpCreateBlock >= 3, "SNIPER-LP" );

            require(_whProcActive && (_whitelist[from] || _whitelist[to]), "WH-ILLEGAL");
        }

        // check TX limit
        _checkTxLimit(from, to, amount);

    }
    
    
    /**
    * TCS codes:
    *   - TCS-HOLDER-LIMIT -> holder limit is exceeded
    *   - TCS-TIME -> must wait for at least 2min before another sell
    */
    function _tcsCheck(address from, address to, uint256 amount) private view {
        //
        // TCS (Trade Control System):
        // 1. trade imposes MAX tokens that single holder can possess
        // 2. buy/sell time limits of 2 mins
		//

        if (tcsEnabled) {

            // check max holder amount limit
            if (_isBuy(from)) {
                require(amount + balanceOf(to) <= _maxHolderAmount, "TCS-HOLDER-LIMIT");
            } else if(!_isSell(to)) {
                require(amount + balanceOf(to) <= _maxHolderAmount, "TCS-HOLDER-LIMIT");
            }

            // buy/sell limit
            if (_isSell(to)) {
                require( (_previousSale[from] + (TCS_TIME_INTERVAL * 1 seconds)) < block.timestamp, "TCS-TIME");
            } else if (_isBuy(from)) {
                require( (_previousBuy[to] + (TCS_TIME_INTERVAL * 1 seconds)) < block.timestamp, "TCS-TIME");
            } else {
                // token sharing 
                require( (_previousSale[from] + (TCS_TIME_INTERVAL * 1 seconds)) < block.timestamp, "TCS-TIME");
                require( (_previousBuy[to] + (TCS_TIME_INTERVAL * 1 seconds)) < block.timestamp, "TCS-TIME");
            }
        }
    }
    
    /**
    * APS codes:
    *   - APS-BALANCE -> cannot sell more than 20% of current balance if holds more than apsThresh tokens
    *   - APS-TIME -> must wait until _apsInterval passes before another sell
    */
    function _apsCheck(address from, address to, uint256 amount) view private {
        //
		// APS (Anti Pajeet System):
		// 1. can sell at most 20% of tokens in possession at once if holder has more than _apsThresh tokens
		// 2. can sell once every _apsInterval (60) minutes
		//
		
        if (apsEnabled) {
            
            // Sell in progress
            if(_isSell(to)) {

                uint256 fromBalance = balanceOf(from);	// how many tokens does account own

                // if total number of tokens is above threshold, only 20% of tokens can be sold at once!
                if(fromBalance >= _apsThresh) {
                    require(amount < (fromBalance / (5)), "APS-BALANCE");
                }

                // at most 1 sell every _apsInterval minutes (60 by default)
                require( (_previousSale[from] + (_apsInterval * 1 minutes)) < block.timestamp, "APS-TIME");
            }
			
        }
    }
	
	function _swapAndLiquifyAllFees() private {
        uint256 contractBalance = balanceOf(address(this));

        uint256 tTotal = tPendingLiquidity + tPendingMarketing;
        
        if(contractBalance == 0 || tTotal == 0 || tTotal < _swapThresh) {return;}
        
		uint256 tLiqHalf = tPendingLiquidity > 0 ? contractBalance.mul(tPendingLiquidity).div(tTotal).div(2) : 0;
        uint256 amountToSwapForETH = contractBalance.sub(tLiqHalf);
        
        // starting contract's ETH balance
        uint256 initialBalance = address(this).balance;

		// swap tokens for ETH
        _swapTokensForEth(amountToSwapForETH, address(this));
		
		// how much ETH did we just swap into?
        uint256 swappedBalance = address(this).balance.sub(initialBalance);
		
		// calculate ETH shares
		uint256 cMarketing = swappedBalance.mul(tPendingMarketing).div(tTotal);
        uint256 cLiq = swappedBalance - cMarketing;

		// liquify
		if(tPendingLiquidity > 0 && cLiq > 0){
		
			//
			// DLP (Delayed Liquidity Provision):
			// - adding to liquidity only after some threshold has been met to avoid LP provision on every transaction
			//  * NOTE: liquidity provision MUST be enabled first
			//  * NOTE: don't enrich liquidity if sender is swap pair
			//
		
			// add liquidity to LP
			_addLiquidity(tLiqHalf, cLiq);
        
			emit SwapAndLiquify(tLiqHalf, cLiq, tPendingLiquidity.sub(tLiqHalf));
		}
        
		// transfer to marketing
        (bool sent,) = address(marketingWalletAddress).call{value: cMarketing}("");
        emit MarketingSwap(tPendingMarketing, cMarketing, sent);

         // reset token count
        tPendingLiquidity = 0;
        tPendingMarketing = 0;
    }
    
    function _delayedProvision(address from, address to) private {

        if (
            !_inSwapAndLiquify &&
            !_isBuy(from) &&
            _swapAndLiquifyEnabled &&
            !_isExcludedFromFee[from] &&
            !_isExcludedFromFee[to]
        ) {
            _inSwapAndLiquify = true;
			_swapAndLiquifyAllFees();
            _inSwapAndLiquify = false;
		}
    }

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

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

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

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

        // add the liquidity
        _swapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            deadAddress,
            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 {
        bool isBuy = _isBuy(sender);

        uint256 fees = 0;
        if (takeFee) {
            TaxedValues memory totalValues = _getValues(amount, isBuy);

            fees = totalValues.tMarketing + totalValues.tLiquidity;

            if(fees > 0) {

                tPendingMarketing += totalValues.tMarketing;
                tPendingLiquidity += totalValues.tLiquidity;

                _totalTakenFees.marketingFee += totalValues.tMarketing;
                _totalTakenFees.liquidityFee += totalValues.tLiquidity;

                super._transfer(sender, address(this), fees);

                amount -= fees;
            }
        }

        if (isBuy) {
            _previousBuy[recipient] = block.timestamp;
        } else if(_isSell(recipient)) {
            _previousSale[sender] = block.timestamp;
        } else {
            // token sharing
            _previousBuy[recipient] = block.timestamp;
            _previousSale[sender] = block.timestamp;
        }

        super._transfer(sender, recipient, amount);

    }
    
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"},{"indexed":false,"internalType":"uint256","name":"thresh","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"interval","type":"uint256"}],"name":"APSStateUpdate","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":"address","name":"account","type":"address"}],"name":"BlacklistedAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"bool","name":"success","type":"bool"}],"name":"MarketingSwap","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":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"liquidityAdded","type":"bool"},{"indexed":false,"internalType":"bool","name":"whitelistStarted","type":"bool"},{"indexed":false,"internalType":"bool","name":"tradeOpened","type":"bool"}],"name":"StateProgress","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":false,"internalType":"bool","name":"enabled","type":"bool"},{"indexed":false,"internalType":"uint256","name":"maxTxLimit","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"holderLimit","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"interval","type":"uint256"}],"name":"TCSStateUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"TakeFeeOnlyOnSwap","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"}],"name":"UpdateSwapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"duration","type":"uint256"}],"name":"WHStart","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addCTRLMember","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"ammPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"apsEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"addrs","type":"address[]"},{"internalType":"bool","name":"add","type":"bool"}],"name":"bulkBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"},{"internalType":"bool","name":"add","type":"bool"}],"name":"bulkWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"changeMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"thresh","type":"uint256"}],"name":"changeSwapThresh","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isBuy","type":"bool"}],"name":"currentFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"defineLiquidityAdded","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"exclude","type":"bool"}],"name":"feeControl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeOnlyOnSwap","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAPSState","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTCSState","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBlacklisted","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":"isExcludedFromMaxTx","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityAdded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWalletAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"exclude","type":"bool"}],"name":"maxTxControl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"provisionPrivate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeCTRLMember","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceAdminRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setAPS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"interval","type":"uint256"}],"name":"setAPSInterval","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"thresh","type":"uint256"}],"name":"setAPSThreshAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"thresh","type":"uint256"}],"name":"setAPSThreshPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setAccountShare","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"add","type":"bool"}],"name":"setBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"blacklistFee","type":"uint256"}],"name":"setBlacklistFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"},{"internalType":"uint256","name":"marketingFee","type":"uint256"},{"internalType":"bool","name":"isBuy","type":"bool"}],"name":"setFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"helperRouter","type":"address"},{"internalType":"address","name":"presaleRouter","type":"address"}],"name":"setHelperSaleAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"limit","type":"uint256"}],"name":"setHolderLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setLPP","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxAmount","type":"uint256"}],"name":"setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"start","type":"bool"}],"name":"setPreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setSwapOfFeeTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setTCS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"add","type":"bool"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapThresh","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tPendingLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tPendingMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"onSwap","type":"bool"}],"name":"takeFeeOnlyOnSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tcsEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalTakenFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"on","type":"bool"}],"name":"tradeCtrl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tradingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateSwapV2Router","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"recipient","type":"address"}],"name":"withdrawLocked","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"duration","type":"uint256"}],"name":"wlProcess","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052610384600d55620000186012600a62000fdb565b62000029906402540be400620010c3565b6011556040805180820182526000808252602091820181905260128181556013829055835180850185526028808252600a918501829052601481905560158290558551808701875281815285018290526016819055601782905585518087018752818152850182905260188190556019829055855180870190965280865294909301839052601a93909355601b829055601c805464ffffffff001916610100179055601d556001601e55601f805460ff19169055620000e9919062000fdb565b620000f9906301312d00620010c3565b6020556105a06021556022805463ffffffff19166201000017905560006025556011546064906200012c906001620010c3565b62000138919062000f6d565b602655620001496012600a62000fdb565b6200015890620493e0620010c3565b602755600060285560006029553480156200017257600080fd5b50604080518082018252600b81526a4368756e67616c756e676160a81b60208083019182528351808501909452600284526110d360f21b908401528151919291620001c09160039162000e5a565b508051620001d690600490602084019062000e5a565b505050620001f3620001ed6200032c60201b60201c565b62000330565b620002127369cec9b2ffdfe02481fbdc372cd885fe83f3f69462000382565b6200022d60008051602062005d98833981519152336200043d565b6200024c737a250d5630b4cf539739df2c5dacb4c659f2488d6200044d565b62000256620008d9565b6200027160008051602062005d7883398151915280620009cf565b6200029b60008051602062005d9883398151915260008051602062005d78833981519152620009cf565b620002b660008051602062005d78833981519152336200043d565b620002d160008051602062005d78833981519152306200043d565b620002ec60008051602062005d98833981519152336200043d565b6200030760008051602062005d98833981519152306200043d565b6200031b3360115462000a1a60201b60201c565b620003263362000b01565b62001138565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038116620003c75760405162461bcd60e51b81526020600482015260066024820152650414444522d360d41b60448201526064015b60405180910390fd5b600e80546001600160a01b039081166000908152600960208181526040808420805460ff19908116909155600a80845282862080548316905587546001600160a01b0319169689169687179097559484529181528183208054851660019081179091559490529020805490911690911790555b50565b62000449828262000b7d565b5050565b602a80546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b8152905163c45a015591600480820192602092909190829003018186803b158015620004a257600080fd5b505afa158015620004b7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004dd919062000f00565b6001600160a01b031663c9c6539630602a60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200053b57600080fd5b505afa15801562000550573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000576919062000f00565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b158015620005bf57600080fd5b505af1158015620005d4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620005fa919062000f00565b602b80546001600160a01b0319166001600160a01b039283169081179091556000908152602c60209081526040808320805460ff199081166001908117909255600a9093528184208054841682179055602a54851684529220805490911690911790556005546200067b9116602a546001600160a01b031660001962000bc0565b602a60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620006ca57600080fd5b505afa158015620006df573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000705919062000f00565b602a5460405163095ea7b360e01b81526001600160a01b039182166004820152600019602482015291169063095ea7b390604401602060405180830381600087803b1580156200075457600080fd5b505af115801562000769573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200078f919062000f30565b50602a60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620007df57600080fd5b505afa158015620007f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200081a919062000f00565b60405163095ea7b360e01b815230600482015260001960248201526001600160a01b03919091169063095ea7b390604401602060405180830381600087803b1580156200086657600080fd5b505af11580156200087b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620008a1919062000f30565b506040516001600160a01b038216907f7e336871192a11cf6144610c966672324a2721225248a567fd1211203248469e90600090a250565b3360009081526009602081815260408084208054600160ff199182168117909255600a8085528387208054831684179055308752858552838720805483168417905580855283872080548316841790556005546001600160a01b039081168852868652848820805484168517905581865284882080548416851790557f960b1051749987b45b5679007fff577a1c2f763ec21c15a6c5eb19307500378580548416851790557f20677881080440a9b3c87e826370bb5d9c2f74efd4dede686d52d77a6a09f8bb8054841685179055600e54168752948452828620805482168317905593909252909220805490911690911790555b565b600082815260066020526040808220600101805490849055905190918391839186917fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff9190a4505050565b6001600160a01b03821662000a725760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620003be565b806002600082825462000a86919062000f52565b90915550506001600160a01b0382166000908152602081905260408120805483929062000ab590849062000f52565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a362000449565b62000b0b62000ce8565b6001600160a01b03811662000b725760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401620003be565b6200043a8162000330565b62000b94828262000d4460201b620022c51760201c565b600082815260076020908152604090912062000bbb9183906200234b62000de8821b17901c565b505050565b6001600160a01b03831662000c245760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401620003be565b6001600160a01b03821662000c875760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401620003be565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314620009cd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620003be565b60008281526006602090815260408083206001600160a01b038516845290915290205460ff16620004495760008281526006602090815260408083206001600160a01b03851684529091529020805460ff1916600117905562000da43390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600062000dff836001600160a01b03841662000e08565b90505b92915050565b600081815260018301602052604081205462000e515750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915562000e02565b50600062000e02565b82805462000e6890620010e5565b90600052602060002090601f01602090048101928262000e8c576000855562000ed7565b82601f1062000ea757805160ff191683800117855562000ed7565b8280016001018555821562000ed7579182015b8281111562000ed757825182559160200191906001019062000eba565b5062000ee592915062000ee9565b5090565b5b8082111562000ee5576000815560010162000eea565b60006020828403121562000f12578081fd5b81516001600160a01b038116811462000f29578182fd5b9392505050565b60006020828403121562000f42578081fd5b8151801515811462000f29578182fd5b6000821982111562000f685762000f6862001122565b500190565b60008262000f8957634e487b7160e01b81526012600452602481fd5b500490565b80825b600180861162000fa2575062000fd2565b81870482111562000fb75762000fb762001122565b8086161562000fc557918102915b9490941c93800262000f91565b94509492505050565b600062000dff600019848460008262000ff75750600162000f29565b81620010065750600062000f29565b81600181146200101f57600281146200102a576200105e565b600191505062000f29565b60ff8411156200103e576200103e62001122565b6001841b91508482111562001057576200105762001122565b5062000f29565b5060208310610133831016604e8410600b841016171562001096575081810a8381111562001090576200109062001122565b62000f29565b620010a5848484600162000f8e565b808604821115620010ba57620010ba62001122565b02949350505050565b6000816000190483118215151615620010e057620010e062001122565b500290565b600181811c90821680620010fa57607f821691505b602082108114156200111c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b614c3080620011486000396000f3fe60806040526004361061044a5760003560e01c806383b8a5ae11610234578063ca15c8731161012e578063e1a42067116100b6578063ee294a1b1161007a578063ee294a1b14610d89578063f2fde38b14610daa578063fe575a8714610dca578063ffb54a9914610e03578063ffbd7b3a14610e2257610451565b8063e1a4206714610ce9578063e720c7eb14610d09578063eae9bdb714610d29578063ec28438a14610d49578063ed7a9ca814610d6957610451565b8063d3c23c52116100fd578063d3c23c5214610c4f578063d543dbeb14610c6f578063d547741f14610c8f578063d944392314610caf578063dd62ed3e14610cc957610451565b8063ca15c87314610bcf578063cc6c914f14610bef578063d155639514610c0f578063d158272d14610c2f57610451565b8063a457c2d7116101bc578063bb095b9b11610180578063bb095b9b14610b3a578063bb85c6d114610b5a578063bbeb5db014610b7a578063c49b9a8014610b8f578063c8125a7814610baf57610451565b8063a457c2d714610a94578063a5f2aba514610ab4578063a72905a214610aca578063a9059cbb14610afa578063b743d07214610b1a57610451565b80639010d07c116102035780639010d07c14610a1557806391d1485414610a3557806395d89b4114610a55578063a15af6f714610a6a578063a217fddf14610a7f57610451565b806383b8a5ae1461099957806388ffe7db146109ae5780638cab3a66146109c35780638da5cb5b146109e357610451565b8063313ce5671161034557806353d6fd59116102cd57806370a082311161029157806370a08231146108ee578063715018a614610924578063761ce841146109395780637ac0d155146109595780637d9d10b31461097957610451565b806353d6fd59146108355780635738047a14610855578063658c27a914610875578063665e3728146108ae5780636f44902f146108ce57610451565b80633b25f85c116103145780633b25f85c14610786578063476343ee146107a6578063493d7957146107bb5780634ccf15ef146107db5780635342acb4146107fc57610451565b8063313ce567146106f157806336568abe1461070d578063395093511461072d5780633af32abf1461074d57610451565b8063153b0d1e116103d35780631b785218116103975780631b785218146106385780631bd96bd61461065857806323b872dd14610681578063248a9ca3146106a15780632f2ff15d146106d157610451565b8063153b0d1e1461059f578063165f16d0146105bf5780631756ce5d146105e357806318160ddd1461060357806319d659b51461061857610451565b806306fdde031161041a57806306fdde03146104ed57806309552a311461050f578063095ea7b31461053f5780630a7c01631461055f5780630d95ccc91461057f57610451565b80625dd8ed1461045657806301ffc9a71461047857806304046287146104ad57806306f91d59146104cd57610451565b3661045157005b600080fd5b34801561046257600080fd5b50610476610471366004614676565b610e42565b005b34801561048457600080fd5b506104986104933660046147aa565b610ee0565b60405190151581526020015b60405180910390f35b3480156104b957600080fd5b506104766104c8366004614715565b610f0b565b3480156104d957600080fd5b506104766104e836600461474d565b610f9d565b3480156104f957600080fd5b506105026110e2565b6040516104a491906148a1565b34801561051b57600080fd5b50610524611174565b604080519384526020840192909252908201526060016104a4565b34801561054b57600080fd5b5061049861055a36600461464b565b6111a4565b34801561056b57600080fd5b5061047661057a36600461474d565b6111bc565b34801561058b57600080fd5b5061047661059a366004614715565b6111da565b3480156105ab57600080fd5b506104766105ba36600461461e565b611229565b3480156105cb57600080fd5b506105d560105481565b6040519081526020016104a4565b3480156105ef57600080fd5b506104766105fe366004614715565b611250565b34801561060f57600080fd5b506002546105d5565b34801561062457600080fd5b5061047661063336600461456e565b6112ae565b34801561064457600080fd5b50610476610653366004614715565b61130e565b34801561066457600080fd5b506012546013545b604080519283526020830191909152016104a4565b34801561068d57600080fd5b5061049861069c3660046145de565b611343565b3480156106ad57600080fd5b506105d56106bc36600461474d565b60009081526006602052604090206001015490565b3480156106dd57600080fd5b506104766106ec366004614765565b611369565b3480156106fd57600080fd5b50604051601281526020016104a4565b34801561071957600080fd5b50610476610728366004614765565b61138e565b34801561073957600080fd5b5061049861074836600461464b565b611408565b34801561075957600080fd5b5061049861076836600461456e565b6001600160a01b03166000908152600c602052604090205460ff1690565b34801561079257600080fd5b506104766107a136600461461e565b61142a565b3480156107b257600080fd5b5061047661146e565b3480156107c757600080fd5b506104766107d6366004614676565b611501565b3480156107e757600080fd5b50601c54610498906301000000900460ff1681565b34801561080857600080fd5b5061049861081736600461456e565b6001600160a01b031660009081526009602052604090205460ff1690565b34801561084157600080fd5b5061047661085036600461461e565b611598565b34801561086157600080fd5b50601c546104989062010000900460ff1681565b34801561088157600080fd5b5061049861089036600461456e565b6001600160a01b03166000908152600a602052604090205460ff1690565b3480156108ba57600080fd5b506104766108c9366004614715565b6115dc565b3480156108da57600080fd5b5061066c6108e9366004614715565b611649565b3480156108fa57600080fd5b506105d561090936600461456e565b6001600160a01b031660009081526020819052604090205490565b34801561093057600080fd5b5061047661166d565b34801561094557600080fd5b506104766109543660046147d2565b611681565b34801561096557600080fd5b5061047661097436600461456e565b6116f7565b34801561098557600080fd5b506104766109943660046146cb565b6117e6565b3480156109a557600080fd5b5061047661185a565b3480156109ba57600080fd5b506105d56118a5565b3480156109cf57600080fd5b506104766109de36600461474d565b6118c7565b3480156109ef57600080fd5b506005546001600160a01b03165b6040516001600160a01b0390911681526020016104a4565b348015610a2157600080fd5b506109fd610a30366004614789565b611971565b348015610a4157600080fd5b50610498610a50366004614765565b611989565b348015610a6157600080fd5b506105026119b4565b348015610a7657600080fd5b5061066c6119c3565b348015610a8b57600080fd5b506105d5600081565b348015610aa057600080fd5b50610498610aaf36600461464b565b6119ed565b348015610ac057600080fd5b506105d5600f5481565b348015610ad657600080fd5b50610498610ae536600461456e565b602c6020526000908152604090205460ff1681565b348015610b0657600080fd5b50610498610b1536600461464b565b611a73565b348015610b2657600080fd5b50610476610b353660046145a6565b611a81565b348015610b4657600080fd5b50610476610b55366004614715565b611aaf565b348015610b6657600080fd5b50610476610b7536600461456e565b611b2d565b348015610b8657600080fd5b50610476611b4e565b348015610b9b57600080fd5b50610476610baa366004614715565b611bc8565b348015610bbb57600080fd5b50610476610bca36600461474d565b611c29565b348015610bdb57600080fd5b506105d5610bea36600461474d565b611cb5565b348015610bfb57600080fd5b50610476610c0a36600461456e565b611ccc565b348015610c1b57600080fd5b50610476610c2a36600461456e565b611cfc565b348015610c3b57600080fd5b50600e546109fd906001600160a01b031681565b348015610c5b57600080fd5b50610476610c6a36600461461e565b611d2c565b348015610c7b57600080fd5b50610476610c8a36600461474d565b611d60565b348015610c9b57600080fd5b50610476610caa366004614765565b611e3c565b348015610cbb57600080fd5b506022546104989060ff1681565b348015610cd557600080fd5b506105d5610ce43660046145a6565b611e61565b348015610cf557600080fd5b50610476610d0436600461474d565b611e8c565b348015610d1557600080fd5b50610476610d2436600461461e565b611f64565b348015610d3557600080fd5b50610476610d44366004614715565b611fa8565b348015610d5557600080fd5b50610476610d6436600461474d565b611fd4565b348015610d7557600080fd5b50610476610d8436600461474d565b61204a565b348015610d9557600080fd5b50602254610498906301000000900460ff1681565b348015610db657600080fd5b50610476610dc536600461456e565b6121d7565b348015610dd657600080fd5b50610498610de536600461456e565b6001600160a01b03166000908152600b602052604090205460ff1690565b348015610e0f57600080fd5b5060225461049890610100900460ff1681565b348015610e2e57600080fd5b50610476610e3d36600461474d565b61224d565b600080516020614bdb833981519152610e5a81612360565b60005b83811015610ed95782600b6000878785818110610e8a57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610e9f919061456e565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610ed181614b66565b915050610e5d565b5050505050565b60006001600160e01b03198216635a05180f60e01b1480610f055750610f058261236a565b92915050565b600080516020614bdb833981519152610f2381612360565b601c805463ff00000019166301000000841515810291909117918290556025546026546040805160ff949095049390931615158452602084019190915290820152607560608201527fbad6607e60ebaa752325e414eb1465d5d5c7546e00c70bf28daa2c704b926991906080015b60405180910390a15050565b600080516020614bdb833981519152610fb581612360565b600082118015610fc957506402540be40082105b61100a5760405162461bcd60e51b815260206004820152600d60248201526c484f4c4445525f4c494d49543160981b60448201526064015b60405180910390fd5b60006110186012600a6149e4565b6110229084614ab2565b90506103e860115460056110369190614ab2565b611040919061497e565b811161107e5760405162461bcd60e51b815260206004820152600d60248201526c2427a62222a92fa624a6a4aa1960991b6044820152606401611001565b6026819055601c5460255460408051630100000090930460ff161515835260208301919091528101829052607560608201527fbad6607e60ebaa752325e414eb1465d5d5c7546e00c70bf28daa2c704b9269919060800160405180910390a1505050565b6060600380546110f190614b2b565b80601f016020809104026020016040519081016040528092919081815260200182805461111d90614b2b565b801561116a5780601f1061113f5761010080835404028352916020019161116a565b820191906000526020600020905b81548152906001019060200180831161114d57829003601f168201915b5050505050905090565b6000806000600080516020614bdb83398151915261119181612360565b5050602554602654909390925060759150565b6000336111b281858561239f565b5060019392505050565b600080516020614bdb8339815191526111d481612360565b50600d55565b600080516020614bdb8339815191526111f281612360565b81156112115761120260016124c3565b61120c60006124c3565b611225565b61121b60016124fd565b61122560006124fd565b5050565b600080516020614bdb83398151915261124181612360565b61124b8383612523565b505050565b600080516020614bdb83398151915261126881612360565b60225460ff166112a55760405162461bcd60e51b81526020600482015260086024820152674c49512d4e4f4e4560c01b6044820152606401611001565b61122582612578565b600080516020614bdb8339815191526112c681612360565b6001600160a01b0382166113055760405162461bcd60e51b81526004016110019060208082526004908201526352322d3160e01b604082015260600190565b611225826125cc565b600080516020614bdb83398151915261132681612360565b5060228054911515620100000262ff000019909216919091179055565b600033611351858285612a33565b61135c858585612aa7565b60019150505b9392505050565b60008281526006602052604090206001015461138481612360565b61124b8383612c2b565b6001600160a01b03811633146113fe5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401611001565b6112258282612c4d565b6000336111b281858561141b8383611e61565b6114259190614966565b61239f565b600080516020614bdb83398151915261144281612360565b506001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b600080516020614bdb83398151915261148681612360565b601c54610100900460ff16156114ce5760405162461bcd60e51b815260206004820152600d60248201526c057495448445241572d5357415609c1b6044820152606401611001565b600e54306000818152602081905260409020546114f4926001600160a01b031690612c6f565b506000600f819055601055565b600080516020614bdb83398151915261151981612360565b60005b83811015610ed95782600c600087878581811061154957634e487b7160e01b600052603260045260246000fd5b905060200201602081019061155e919061456e565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061159081614b66565b91505061151c565b600080516020614bdb8339815191526115b081612360565b506001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b600080516020614bdb8339815191526115f481612360565b6022805463ff000000191663010000008415158102919091179182905560405160ff9190920416151581527fd11ee79597d5e7d44812e295744bbd79e940bae6dbdf9c6d2722e5788e4b381990602001610f91565b600080821561165f575050601454601554611668565b50506018546019545b915091565b611675612e3d565b61167f6000612e97565b565b600080516020614bdb83398151915261169981612360565b60646116a58585614966565b11156116dd5760405162461bcd60e51b815260206004820152600760248201526608c8a8a5a9a82b60cb1b6044820152606401611001565b6116e78383612ee9565b6116f18483612f48565b50505050565b600080516020614bdb83398151915261170f81612360565b6001600160a01b03821661174e5760405162461bcd60e51b81526020600482015260066024820152650414444522d360d41b6044820152606401611001565b600047116117865760405162461bcd60e51b8152602060048201526005602482015264042414c2d360dc1b6044820152606401611001565b60405147906000906001600160a01b0385169083908381818185875af1925050503d80600081146117d3576040519150601f19603f3d011682016040523d82523d6000602084013e6117d8565b606091505b50509050806116f157600080fd5b600080516020614bdb8339815191526117fe81612360565b60005b83811015610ed95761184785858381811061182c57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611841919061456e565b84611a73565b508061185281614b66565b915050611801565b600080516020614bbb83398151915261187281612360565b61188a600080516020614bdb83398151915233611e3c565b6118a2600080516020614bbb83398151915233611e3c565b50565b6000600080516020614bdb8339815191526118bf81612360565b505060275490565b600080516020614bdb8339815191526118df81612360565b600082116119205760405162461bcd60e51b815260206004820152600e60248201526d04150532d494e54455256414c2d360941b6044820152606401611001565b6021829055601c5460208054604080516201000090940460ff16151584529183015281018390527f58abb1550ee96d90118f764d80fe6b1292c94c6af536c9a9bada8e194c36826890606001610f91565b60008281526007602052604081206113629083612fa7565b60009182526006602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6060600480546110f190614b2b565b600080600080516020614bdb8339815191526119de81612360565b60205460215492509250509091565b600033816119fb8286611e61565b905083811015611a5b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401611001565b611a68828686840361239f565b506001949350505050565b6000336111b2818585612aa7565b600080516020614bdb833981519152611a9981612360565b611aa4836001612fb3565b61124b826001612fb3565b600080516020614bdb833981519152611ac781612360565b601c805462ff000019166201000084151581029190911791829055602080546021546040805160ff95909604949094161515855291840152908201527f58abb1550ee96d90118f764d80fe6b1292c94c6af536c9a9bada8e194c36826890606001610f91565b600080516020614bdb833981519152611b4581612360565b61122582612ff1565b600080516020614bdb833981519152611b6681612360565b6022805460ff19166001179055602854611b7f57436028555b6040805160018152600060208201819052918101919091527f20851fa0422d4f14abd10a67c93b0b65e055acfea35fd9d08e4c2489f6ed0d4f906060015b60405180910390a150565b600080516020614bdb833981519152611be081612360565b601c80548315156101000261ff00199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15990610f9190841515815260200190565b600080516020614bdb833981519152611c4181612360565b6000611c4f6012600a6149e4565b611c599084614ab2565b9050611c676012600a6149e4565b611c73906103e8614ab2565b8111611cae5760405162461bcd60e51b815260206004820152600a6024820152695448524553482d4c4f5760b01b6044820152606401611001565b6027555050565b6000818152600760205260408120610f059061306d565b600080516020614bbb833981519152611ce481612360565b611225600080516020614bdb83398151915283611369565b600080516020614bbb833981519152611d1481612360565b611225600080516020614bdb83398151915283611e3c565b600080516020614bdb833981519152611d4481612360565b611d4e8383613077565b60225460ff1661124b5761124b611b4e565b600080516020614bdb833981519152611d7881612360565b6103e8821115611dbd5760405162461bcd60e51b815260206004820152601060248201526f135056151617d4115490d7d31253525560821b6044820152606401611001565b611dde6103e8611dd8846011546130b590919063ffffffff16565b906130c1565b6025819055601c5460265460408051630100000090930460ff1615158352602083019390935291810191909152607560608201527fbad6607e60ebaa752325e414eb1465d5d5c7546e00c70bf28daa2c704b92699190608001610f91565b600082815260066020526040902060010154611e5781612360565b61124b8383612c4d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600080516020614bdb833981519152611ea481612360565b6103e882118015611eb957506402540be40082105b611ef95760405162461bcd60e51b8152602060048201526011602482015270105414cb5512149154d20b505353d55395607a1b6044820152606401611001565b611f056012600a6149e4565b611f0f9083614ab2565b6020818155601c54602154604080516201000090930460ff161515835292820193909352908101919091527f58abb1550ee96d90118f764d80fe6b1292c94c6af536c9a9bada8e194c36826890606001610f91565b600080516020614bdb833981519152611f7c81612360565b506001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b600080516020614bdb833981519152611fc081612360565b50601f805460ff1916911515919091179055565b600080516020614bdb833981519152611fec81612360565b6402540be4008211156120345760405162461bcd60e51b815260206004820152601060248201526f135056151617d053539517d31253525560821b6044820152606401611001565b6120406012600a6149e4565b611dde9083614ab2565b600080516020614bdb83398151915261206281612360565b60225460ff16801561207657506000602854115b6120ad5760405162461bcd60e51b81526020600482015260086024820152674c49512d4e4f4e4560c01b6044820152606401611001565b600182116120eb5760405162461bcd60e51b815260206004820152600b60248201526a5748542d4455522d4c4f5760a81b6044820152606401611001565b43602955601c805464ff000000001916640100000000179055601e82905542601d556121196012600a6149e4565b6121269062989680614ab2565b6025556022805461ff0019169055601c805463ffff0000191663010100001790556121536012600a6149e4565b612161906301312d00614ab2565b602090815560408051600180825292810192909252600082820152517f20851fa0422d4f14abd10a67c93b0b65e055acfea35fd9d08e4c2489f6ed0d4f9181900360600190a16040518281527f6f159885e19cfbd9af40f14257096211ec62bc3ee2cd18b633a493b4c60726d590602001610f91565b6121df612e3d565b6001600160a01b0381166122445760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401611001565b6118a281612e97565b600080516020614bdb83398151915261226581612360565b603282106122aa5760405162461bcd60e51b8152602060048201526012602482015271105414cb5512149154d20b54115490d1539560721b6044820152606401611001565b611f0f6103e8611dd8846011546130b590919063ffffffff16565b6122cf8282611989565b6112255760008281526006602090815260408083206001600160a01b03851684529091529020805460ff191660011790556123073390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000611362836001600160a01b0384166130cd565b6118a2813361311c565b60006001600160e01b03198216637965db0b60e01b1480610f0557506301ffc9a760e01b6001600160e01b0319831614610f05565b6001600160a01b0383166124015760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401611001565b6001600160a01b0382166124625760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401611001565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b80156124e457601480546016556015805460175560009081905590556118a2565b60188054601a5560198054601b55600090819055905550565b8015612514576016546014556017546015556118a2565b601a54601855601b5460195550565b6001600160a01b0382166000818152600b6020908152604091829020805460ff191685151517905590519182527fd33f19e7fa8232c5bc197847df1059ed61c4ac5deadafb05922b602eb71bcbf59101610f91565b6022805461ff0019166101008315150217905560408051600180825260208201819052918101919091527f20851fa0422d4f14abd10a67c93b0b65e055acfea35fd9d08e4c2489f6ed0d4f90606001611bbd565b602a80546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b8152905163c45a015591600480820192602092909190829003018186803b15801561262057600080fd5b505afa158015612634573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612658919061458a565b6001600160a01b031663c9c6539630602a60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156126b557600080fd5b505afa1580156126c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126ed919061458a565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b15801561273557600080fd5b505af1158015612749573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061276d919061458a565b602b80546001600160a01b0319166001600160a01b03929092169182179055612797906001613077565b602a546001600160a01b03166000908152600a60205260409020805460ff191660011790556127e56127d16005546001600160a01b031690565b602a546001600160a01b031660001961239f565b602a60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561283357600080fd5b505afa158015612847573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061286b919061458a565b602a5460405163095ea7b360e01b81526001600160a01b039182166004820152600019602482015291169063095ea7b390604401602060405180830381600087803b1580156128b957600080fd5b505af11580156128cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128f19190614731565b50602a60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561294057600080fd5b505afa158015612954573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612978919061458a565b60405163095ea7b360e01b815230600482015260001960248201526001600160a01b03919091169063095ea7b390604401602060405180830381600087803b1580156129c357600080fd5b505af11580156129d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129fb9190614731565b506040516001600160a01b038216907f7e336871192a11cf6144610c966672324a2721225248a567fd1211203248469e90600090a250565b6000612a3f8484611e61565b905060001981146116f15781811015612a9a5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401611001565b6116f1848484840361239f565b6001600160a01b038316612aeb5760405162461bcd60e51b815260206004820152600b60248201526a046524f4d2d414444522d360ac1b6044820152606401611001565b6001600160a01b038216612b2d5760405162461bcd60e51b81526020600482015260096024820152680544f2d414444522d360bc1b6044820152606401611001565b80612b4357612b3e83836000612c6f565b61124b565b6001600160a01b0383166000908152600b602052604090205460ff1680612b8257506001600160a01b0382166000908152600b602052604090205460ff165b15612b9257612b3e838383613180565b601c5460ff16612bcf57612ba461318e565b612baf838383613242565b612bba838383613403565b612bc5838383613636565b612bcf8383613729565b601c546001600160a01b03841660009081526009602052604090205460ff91821615911680612c1657506001600160a01b03831660009081526009602052604090205460ff165b15612c1f575060005b6116f1848484846137c7565b612c3582826122c5565b600082815260076020526040902061124b908261234b565b612c578282613926565b600082815260076020526040902061124b908261398d565b6001600160a01b038316612cd35760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401611001565b6001600160a01b038216612d355760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401611001565b6001600160a01b03831660009081526020819052604090205481811015612dad5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401611001565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290612de4908490614966565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612e3091815260200190565b60405180910390a36116f1565b6005546001600160a01b0316331461167f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401611001565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b605a821115612f285760405162461bcd60e51b815260206004820152600b60248201526a4645452d4c494d49542d4d60a81b6044820152606401611001565b8015612f3d5760148054601655829055611225565b5060188054601a5555565b605a821115612f875760405162461bcd60e51b815260206004820152600b60248201526a1191514b53125352550b5360aa1b6044820152606401611001565b8015612f9c5760158054601755829055611225565b5060198054601b5555565b600061136283836139a2565b6001600160a01b039091166000908152600960209081526040808320805494151560ff199586168117909155600a9092529091208054909216179055565b6001600160a01b0381166130305760405162461bcd60e51b81526020600482015260066024820152650414444522d360d41b6044820152606401611001565b600e54613047906001600160a01b03166000612fb3565b600e80546001600160a01b0319166001600160a01b0383161790556118a2816001612fb3565b6000610f05825490565b6001600160a01b039091166000908152602c60209081526040808320805494151560ff199586168117909155600a9092529091208054909216179055565b60006113628284614ab2565b6000611362828461497e565b600081815260018301602052604081205461311457508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610f05565b506000610f05565b6131268282611989565b6112255761313e816001600160a01b031660146139da565b6131498360206139da565b60405160200161315a92919061482c565b60408051601f198184030181529082905262461bcd60e51b8252611001916004016148a1565b61124b838383600d54613bbc565b601c54640100000000900460ff161561167f576002602954436131b19190614ad1565b10156131eb5760405162461bcd60e51b815260206004820152600960248201526814d3925411548b55d360ba1b6044820152606401611001565b42601e54603c6131fb9190614ab2565b601d546132089190614966565b101561167f57601c805464ff00000000191690556132286012600a6149e4565b6132359062e4e1c0614ab2565b60255561167f6001612578565b601f5460ff1680613257575061325783613d25565b80613266575061326682613d25565b8061327e57506005546001600160a01b038481169116145b8061329657506005546001600160a01b038381169116145b6132ce5760405162461bcd60e51b81526020600482015260096024820152684143432d534841524560b81b6044820152606401611001565b602254610100900460ff161580156132e8575060225460ff165b801561330257506005546001600160a01b03848116911614155b801561331c57506005546001600160a01b03838116911614155b156133f8576003602854436133319190614ad1565b101561336b5760405162461bcd60e51b81526020600482015260096024820152680534e495045522d4c560bc1b6044820152606401611001565b601c54640100000000900460ff1680156133bf57506001600160a01b0383166000908152600c602052604090205460ff16806133bf57506001600160a01b0382166000908152600c602052604090205460ff165b6133f85760405162461bcd60e51b815260206004820152600a60248201526915d20b5253131151d05360b21b6044820152606401611001565b61124b838383613d43565b601c546301000000900460ff161561124b5761341e83613d25565b1561348f576026546001600160a01b0383166000908152602081905260409020546134499083614966565b111561348a5760405162461bcd60e51b815260206004820152601060248201526f1510d4cb5213d31111548b531253525560821b6044820152606401611001565b613503565b61349882613d25565b613503576026546001600160a01b0383166000908152602081905260409020546134c29083614966565b11156135035760405162461bcd60e51b815260206004820152601060248201526f1510d4cb5213d31111548b531253525560821b6044820152606401611001565b61350c82613d25565b1561355e574261351e60756001614ab2565b6001600160a01b0385166000908152602360205260409020546135419190614966565b10612b3e5760405162461bcd60e51b8152600401611001906148d4565b61356783613d25565b1561359c574261357960756001614ab2565b6001600160a01b0384166000908152602460205260409020546135419190614966565b426135a960756001614ab2565b6001600160a01b0385166000908152602360205260409020546135cc9190614966565b106135e95760405162461bcd60e51b8152600401611001906148d4565b426135f660756001614ab2565b6001600160a01b0384166000908152602460205260409020546136199190614966565b1061124b5760405162461bcd60e51b8152600401611001906148d4565b601c5462010000900460ff161561124b5761365082613d25565b1561124b576001600160a01b03831660009081526020818152604090912054905481106136be5761368260058261497e565b82106136be5760405162461bcd60e51b815260206004820152600b60248201526a4150532d42414c414e434560a81b6044820152606401611001565b42602154603c6136ce9190614ab2565b6001600160a01b0386166000908152602360205260409020546136f19190614966565b106116f15760405162461bcd60e51b81526020600482015260086024820152674150532d54494d4560c01b6044820152606401611001565b601c5460ff16158015613742575061374082613d25565b155b80156137555750601c54610100900460ff165b801561377a57506001600160a01b03821660009081526009602052604090205460ff16155b801561379f57506001600160a01b03811660009081526009602052604090205460ff16155b1561122557601c805460ff191660011790556137b9613eaa565b601c805460ff191690555050565b60006137d285613d25565b9050600082156138905760006137e885846140a0565b9050806060015181604001516137fe9190614966565b9150811561388e578060400151600f600082825461381c9190614966565b9091555050606081015160108054600090613838908490614966565b9091555050604081015160128054600090613854908490614966565b9091555050606081015160138054600090613870908490614966565b909155506138819050873084612c6f565b61388b8286614ad1565b94505b505b81156138b6576001600160a01b0385166000908152602460205260409020429055613913565b6138bf85613d25565b156138e4576001600160a01b0386166000908152602360205260409020429055613913565b6001600160a01b0380861660009081526024602090815260408083204290819055938a16835260239091529020555b61391e868686612c6f565b505050505050565b6139308282611989565b156112255760008281526006602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6000611362836001600160a01b038416614114565b60008260000182815481106139c757634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905092915050565b606060006139e9836002614ab2565b6139f4906002614966565b67ffffffffffffffff811115613a1a57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015613a44576020820181803683370190505b509050600360fc1b81600081518110613a6d57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110613aaa57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000613ace846002614ab2565b613ad9906001614966565b90505b6001811115613b6d576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110613b1b57634e487b7160e01b600052603260045260246000fd5b1a60f81b828281518110613b3f57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c93613b6681614b14565b9050613adc565b5083156113625760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401611001565b60006103e8613bcb8385614ab2565b613bd5919061497e565b90506000613be38285614ad1565b9050613bf0863084612c6f565b613bfb868683612c6f565b6000806000613c0989613d25565b15613c6157601454601554613c1e9190614966565b92508215613c5c57601554613c34576000613c4d565b6015548390613c439087614ab2565b613c4d919061497e565b9050613c598186614ad1565b91505b613caf565b601854601954613c719190614966565b92508215613caf57601954613c87576000613ca0565b6019548390613c969087614ab2565b613ca0919061497e565b9050613cac8186614ad1565b91505b8215613d1a5781600f6000828254613cc79190614966565b925050819055508060106000828254613ce09190614966565b909155505060128054839190600090613cfa908490614966565b909155505060138054829190600090613d14908490614966565b90915550505b505050505050505050565b6001600160a01b03166000908152602c602052604090205460ff1690565b613d4c83613d25565b15613db55760255481111580613d7a57506001600160a01b0382166000908152600a602052604090205460ff165b612b3e5760405162461bcd60e51b815260206004820152600c60248201526b54582d4c494d49542d42555960a01b6044820152606401611001565b613dbe82613d25565b15613e285760255481111580613dec57506001600160a01b0383166000908152600a602052604090205460ff165b612b3e5760405162461bcd60e51b815260206004820152600d60248201526c15160b53125352550b54d15313609a1b6044820152606401611001565b60255481111580613e7357506001600160a01b0383166000908152600a602052604090205460ff1680613e7357506001600160a01b0382166000908152600a602052604090205460ff165b61124b5760405162461bcd60e51b815260206004820152600860248201526715160b531253525560c21b6044820152606401611001565b3060009081526020819052604081205490506000600f54601054613ece9190614966565b9050811580613edb575080155b80613ee7575060275481105b15613ef357505061167f565b60008060105411613f05576000613f23565b613f236002611dd884611dd8601054886130b590919063ffffffff16565b90506000613f318483614231565b905047613f3e823061423d565b6000613f4a4783614231565b90506000613f6786611dd8600f54856130b590919063ffffffff16565b90506000613f758284614ad1565b90506000601054118015613f895750600081115b15613fef57613f9886826143c3565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682613fd08960105461423190919063ffffffff16565b6040805193845260208401929092529082015260600160405180910390a15b600e546040516000916001600160a01b03169084908381818185875af1925050503d806000811461403c576040519150601f19603f3d011682016040523d82523d6000602084013e614041565b606091505b5050600f546040805191825260208201869052821515908201529091507fe4b0471ec14ebebbb513d957de87fec57e9abdbdf15f1afedcce783601dd89189060600160405180910390a1505060006010819055600f5550505050505050565b6140cb6040518060800160405280600081526020016000815260200160008152602001600081525090565b8281526140d8838361447d565b60408201526140e783836144d4565b6060820181905260408201516141099190614103908690614231565b90614231565b602082015292915050565b60008181526001830160205260408120548015614227576000614138600183614ad1565b855490915060009061414c90600190614ad1565b90508181146141cd57600086600001828154811061417a57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050808760000184815481106141ab57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255918252600188019052604090208390555b85548690806141ec57634e487b7160e01b600052603160045260246000fd5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610f05565b6000915050610f05565b60006113628284614ad1565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061428057634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152602a54604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b1580156142d457600080fd5b505afa1580156142e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061430c919061458a565b8160018151811061432d57634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152602a54614353913091168561239f565b602a5460405163791ac94760e01b81526001600160a01b039091169063791ac9479061438c9086906000908690889042906004016148f6565b600060405180830381600087803b1580156143a657600080fd5b505af11580156143ba573d6000803e3d6000fd5b50505050505050565b602a546143db9030906001600160a01b03168461239f565b602a5460405163f305d71960e01b815230600482015260248101849052600060448201819052606482015261dead60848201524260a48201526001600160a01b039091169063f305d71990839060c4016060604051808303818588803b15801561444457600080fd5b505af1158015614458573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610ed991906147ff565b600081156144b0576014546144935760006144a9565b6014546144a9906103e890611dd89086906130b5565b9050610f05565b6018546144be5760006144a9565b6018546144a9906103e890611dd89086906130b5565b60008115614500576015546144ea5760006144a9565b6015546144a9906103e890611dd89086906130b5565b60195461450e5760006144a9565b6019546144a9906103e890611dd89086906130b5565b60008083601f840112614535578182fd5b50813567ffffffffffffffff81111561454c578182fd5b6020830191508360208260051b850101111561456757600080fd5b9250929050565b60006020828403121561457f578081fd5b813561136281614b97565b60006020828403121561459b578081fd5b815161136281614b97565b600080604083850312156145b8578081fd5b82356145c381614b97565b915060208301356145d381614b97565b809150509250929050565b6000806000606084860312156145f2578081fd5b83356145fd81614b97565b9250602084013561460d81614b97565b929592945050506040919091013590565b60008060408385031215614630578182fd5b823561463b81614b97565b915060208301356145d381614bac565b6000806040838503121561465d578182fd5b823561466881614b97565b946020939093013593505050565b60008060006040848603121561468a578283fd5b833567ffffffffffffffff8111156146a0578384fd5b6146ac86828701614524565b90945092505060208401356146c081614bac565b809150509250925092565b6000806000604084860312156146df578283fd5b833567ffffffffffffffff8111156146f5578384fd5b61470186828701614524565b909790965060209590950135949350505050565b600060208284031215614726578081fd5b813561136281614bac565b600060208284031215614742578081fd5b815161136281614bac565b60006020828403121561475e578081fd5b5035919050565b60008060408385031215614777578182fd5b8235915060208301356145d381614b97565b6000806040838503121561479b578182fd5b50508035926020909101359150565b6000602082840312156147bb578081fd5b81356001600160e01b031981168114611362578182fd5b6000806000606084860312156147e6578081fd5b833592506020840135915060408401356146c081614bac565b600080600060608486031215614813578081fd5b8351925060208401519150604084015190509250925092565b60007f416363657373436f6e74726f6c3a206163636f756e742000000000000000000082528351614864816017850160208801614ae8565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351614895816028840160208801614ae8565b01602801949350505050565b60006020825282518060208401526148c0816040850160208701614ae8565b601f01601f19169190910160400192915050565b6020808252600890820152675443532d54494d4560c01b604082015260600190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b818110156149455784516001600160a01b031683529383019391830191600101614920565b50506001600160a01b03969096166060850152505050608001529392505050565b6000821982111561497957614979614b81565b500190565b60008261499957634e487b7160e01b81526012600452602481fd5b500490565b80825b60018086116149b057506149db565b8187048211156149c2576149c2614b81565b808616156149cf57918102915b9490941c9380026149a1565b94509492505050565b600061136260001984846000826149fd57506001611362565b81614a0a57506000611362565b8160018114614a205760028114614a2a57614a57565b6001915050611362565b60ff841115614a3b57614a3b614b81565b6001841b915084821115614a5157614a51614b81565b50611362565b5060208310610133831016604e8410600b8410161715614a8a575081810a83811115614a8557614a85614b81565b611362565b614a97848484600161499e565b808604821115614aa957614aa9614b81565b02949350505050565b6000816000190483118215151615614acc57614acc614b81565b500290565b600082821015614ae357614ae3614b81565b500390565b60005b83811015614b03578181015183820152602001614aeb565b838111156116f15750506000910152565b600081614b2357614b23614b81565b506000190190565b600181811c90821680614b3f57607f821691505b60208210811415614b6057634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415614b7a57614b7a614b81565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b03811681146118a257600080fd5b80151581146118a257600080fdfe4ebb3eb1732de51e78148107b1735f1eb406c54fc4634032f37c85769c2b55b9e33cade2d66e04fd0493fc676b10225974e8a5e7a703b4ffe78a5b4509bff0b9a2646970667358221220fd9c09856bebeb27e9a225485727b549a386b716b96ad6bd4289e98a238a7e0764736f6c634300080300334ebb3eb1732de51e78148107b1735f1eb406c54fc4634032f37c85769c2b55b9e33cade2d66e04fd0493fc676b10225974e8a5e7a703b4ffe78a5b4509bff0b9

Deployed Bytecode

0x60806040526004361061044a5760003560e01c806383b8a5ae11610234578063ca15c8731161012e578063e1a42067116100b6578063ee294a1b1161007a578063ee294a1b14610d89578063f2fde38b14610daa578063fe575a8714610dca578063ffb54a9914610e03578063ffbd7b3a14610e2257610451565b8063e1a4206714610ce9578063e720c7eb14610d09578063eae9bdb714610d29578063ec28438a14610d49578063ed7a9ca814610d6957610451565b8063d3c23c52116100fd578063d3c23c5214610c4f578063d543dbeb14610c6f578063d547741f14610c8f578063d944392314610caf578063dd62ed3e14610cc957610451565b8063ca15c87314610bcf578063cc6c914f14610bef578063d155639514610c0f578063d158272d14610c2f57610451565b8063a457c2d7116101bc578063bb095b9b11610180578063bb095b9b14610b3a578063bb85c6d114610b5a578063bbeb5db014610b7a578063c49b9a8014610b8f578063c8125a7814610baf57610451565b8063a457c2d714610a94578063a5f2aba514610ab4578063a72905a214610aca578063a9059cbb14610afa578063b743d07214610b1a57610451565b80639010d07c116102035780639010d07c14610a1557806391d1485414610a3557806395d89b4114610a55578063a15af6f714610a6a578063a217fddf14610a7f57610451565b806383b8a5ae1461099957806388ffe7db146109ae5780638cab3a66146109c35780638da5cb5b146109e357610451565b8063313ce5671161034557806353d6fd59116102cd57806370a082311161029157806370a08231146108ee578063715018a614610924578063761ce841146109395780637ac0d155146109595780637d9d10b31461097957610451565b806353d6fd59146108355780635738047a14610855578063658c27a914610875578063665e3728146108ae5780636f44902f146108ce57610451565b80633b25f85c116103145780633b25f85c14610786578063476343ee146107a6578063493d7957146107bb5780634ccf15ef146107db5780635342acb4146107fc57610451565b8063313ce567146106f157806336568abe1461070d578063395093511461072d5780633af32abf1461074d57610451565b8063153b0d1e116103d35780631b785218116103975780631b785218146106385780631bd96bd61461065857806323b872dd14610681578063248a9ca3146106a15780632f2ff15d146106d157610451565b8063153b0d1e1461059f578063165f16d0146105bf5780631756ce5d146105e357806318160ddd1461060357806319d659b51461061857610451565b806306fdde031161041a57806306fdde03146104ed57806309552a311461050f578063095ea7b31461053f5780630a7c01631461055f5780630d95ccc91461057f57610451565b80625dd8ed1461045657806301ffc9a71461047857806304046287146104ad57806306f91d59146104cd57610451565b3661045157005b600080fd5b34801561046257600080fd5b50610476610471366004614676565b610e42565b005b34801561048457600080fd5b506104986104933660046147aa565b610ee0565b60405190151581526020015b60405180910390f35b3480156104b957600080fd5b506104766104c8366004614715565b610f0b565b3480156104d957600080fd5b506104766104e836600461474d565b610f9d565b3480156104f957600080fd5b506105026110e2565b6040516104a491906148a1565b34801561051b57600080fd5b50610524611174565b604080519384526020840192909252908201526060016104a4565b34801561054b57600080fd5b5061049861055a36600461464b565b6111a4565b34801561056b57600080fd5b5061047661057a36600461474d565b6111bc565b34801561058b57600080fd5b5061047661059a366004614715565b6111da565b3480156105ab57600080fd5b506104766105ba36600461461e565b611229565b3480156105cb57600080fd5b506105d560105481565b6040519081526020016104a4565b3480156105ef57600080fd5b506104766105fe366004614715565b611250565b34801561060f57600080fd5b506002546105d5565b34801561062457600080fd5b5061047661063336600461456e565b6112ae565b34801561064457600080fd5b50610476610653366004614715565b61130e565b34801561066457600080fd5b506012546013545b604080519283526020830191909152016104a4565b34801561068d57600080fd5b5061049861069c3660046145de565b611343565b3480156106ad57600080fd5b506105d56106bc36600461474d565b60009081526006602052604090206001015490565b3480156106dd57600080fd5b506104766106ec366004614765565b611369565b3480156106fd57600080fd5b50604051601281526020016104a4565b34801561071957600080fd5b50610476610728366004614765565b61138e565b34801561073957600080fd5b5061049861074836600461464b565b611408565b34801561075957600080fd5b5061049861076836600461456e565b6001600160a01b03166000908152600c602052604090205460ff1690565b34801561079257600080fd5b506104766107a136600461461e565b61142a565b3480156107b257600080fd5b5061047661146e565b3480156107c757600080fd5b506104766107d6366004614676565b611501565b3480156107e757600080fd5b50601c54610498906301000000900460ff1681565b34801561080857600080fd5b5061049861081736600461456e565b6001600160a01b031660009081526009602052604090205460ff1690565b34801561084157600080fd5b5061047661085036600461461e565b611598565b34801561086157600080fd5b50601c546104989062010000900460ff1681565b34801561088157600080fd5b5061049861089036600461456e565b6001600160a01b03166000908152600a602052604090205460ff1690565b3480156108ba57600080fd5b506104766108c9366004614715565b6115dc565b3480156108da57600080fd5b5061066c6108e9366004614715565b611649565b3480156108fa57600080fd5b506105d561090936600461456e565b6001600160a01b031660009081526020819052604090205490565b34801561093057600080fd5b5061047661166d565b34801561094557600080fd5b506104766109543660046147d2565b611681565b34801561096557600080fd5b5061047661097436600461456e565b6116f7565b34801561098557600080fd5b506104766109943660046146cb565b6117e6565b3480156109a557600080fd5b5061047661185a565b3480156109ba57600080fd5b506105d56118a5565b3480156109cf57600080fd5b506104766109de36600461474d565b6118c7565b3480156109ef57600080fd5b506005546001600160a01b03165b6040516001600160a01b0390911681526020016104a4565b348015610a2157600080fd5b506109fd610a30366004614789565b611971565b348015610a4157600080fd5b50610498610a50366004614765565b611989565b348015610a6157600080fd5b506105026119b4565b348015610a7657600080fd5b5061066c6119c3565b348015610a8b57600080fd5b506105d5600081565b348015610aa057600080fd5b50610498610aaf36600461464b565b6119ed565b348015610ac057600080fd5b506105d5600f5481565b348015610ad657600080fd5b50610498610ae536600461456e565b602c6020526000908152604090205460ff1681565b348015610b0657600080fd5b50610498610b1536600461464b565b611a73565b348015610b2657600080fd5b50610476610b353660046145a6565b611a81565b348015610b4657600080fd5b50610476610b55366004614715565b611aaf565b348015610b6657600080fd5b50610476610b7536600461456e565b611b2d565b348015610b8657600080fd5b50610476611b4e565b348015610b9b57600080fd5b50610476610baa366004614715565b611bc8565b348015610bbb57600080fd5b50610476610bca36600461474d565b611c29565b348015610bdb57600080fd5b506105d5610bea36600461474d565b611cb5565b348015610bfb57600080fd5b50610476610c0a36600461456e565b611ccc565b348015610c1b57600080fd5b50610476610c2a36600461456e565b611cfc565b348015610c3b57600080fd5b50600e546109fd906001600160a01b031681565b348015610c5b57600080fd5b50610476610c6a36600461461e565b611d2c565b348015610c7b57600080fd5b50610476610c8a36600461474d565b611d60565b348015610c9b57600080fd5b50610476610caa366004614765565b611e3c565b348015610cbb57600080fd5b506022546104989060ff1681565b348015610cd557600080fd5b506105d5610ce43660046145a6565b611e61565b348015610cf557600080fd5b50610476610d0436600461474d565b611e8c565b348015610d1557600080fd5b50610476610d2436600461461e565b611f64565b348015610d3557600080fd5b50610476610d44366004614715565b611fa8565b348015610d5557600080fd5b50610476610d6436600461474d565b611fd4565b348015610d7557600080fd5b50610476610d8436600461474d565b61204a565b348015610d9557600080fd5b50602254610498906301000000900460ff1681565b348015610db657600080fd5b50610476610dc536600461456e565b6121d7565b348015610dd657600080fd5b50610498610de536600461456e565b6001600160a01b03166000908152600b602052604090205460ff1690565b348015610e0f57600080fd5b5060225461049890610100900460ff1681565b348015610e2e57600080fd5b50610476610e3d36600461474d565b61224d565b600080516020614bdb833981519152610e5a81612360565b60005b83811015610ed95782600b6000878785818110610e8a57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610e9f919061456e565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610ed181614b66565b915050610e5d565b5050505050565b60006001600160e01b03198216635a05180f60e01b1480610f055750610f058261236a565b92915050565b600080516020614bdb833981519152610f2381612360565b601c805463ff00000019166301000000841515810291909117918290556025546026546040805160ff949095049390931615158452602084019190915290820152607560608201527fbad6607e60ebaa752325e414eb1465d5d5c7546e00c70bf28daa2c704b926991906080015b60405180910390a15050565b600080516020614bdb833981519152610fb581612360565b600082118015610fc957506402540be40082105b61100a5760405162461bcd60e51b815260206004820152600d60248201526c484f4c4445525f4c494d49543160981b60448201526064015b60405180910390fd5b60006110186012600a6149e4565b6110229084614ab2565b90506103e860115460056110369190614ab2565b611040919061497e565b811161107e5760405162461bcd60e51b815260206004820152600d60248201526c2427a62222a92fa624a6a4aa1960991b6044820152606401611001565b6026819055601c5460255460408051630100000090930460ff161515835260208301919091528101829052607560608201527fbad6607e60ebaa752325e414eb1465d5d5c7546e00c70bf28daa2c704b9269919060800160405180910390a1505050565b6060600380546110f190614b2b565b80601f016020809104026020016040519081016040528092919081815260200182805461111d90614b2b565b801561116a5780601f1061113f5761010080835404028352916020019161116a565b820191906000526020600020905b81548152906001019060200180831161114d57829003601f168201915b5050505050905090565b6000806000600080516020614bdb83398151915261119181612360565b5050602554602654909390925060759150565b6000336111b281858561239f565b5060019392505050565b600080516020614bdb8339815191526111d481612360565b50600d55565b600080516020614bdb8339815191526111f281612360565b81156112115761120260016124c3565b61120c60006124c3565b611225565b61121b60016124fd565b61122560006124fd565b5050565b600080516020614bdb83398151915261124181612360565b61124b8383612523565b505050565b600080516020614bdb83398151915261126881612360565b60225460ff166112a55760405162461bcd60e51b81526020600482015260086024820152674c49512d4e4f4e4560c01b6044820152606401611001565b61122582612578565b600080516020614bdb8339815191526112c681612360565b6001600160a01b0382166113055760405162461bcd60e51b81526004016110019060208082526004908201526352322d3160e01b604082015260600190565b611225826125cc565b600080516020614bdb83398151915261132681612360565b5060228054911515620100000262ff000019909216919091179055565b600033611351858285612a33565b61135c858585612aa7565b60019150505b9392505050565b60008281526006602052604090206001015461138481612360565b61124b8383612c2b565b6001600160a01b03811633146113fe5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401611001565b6112258282612c4d565b6000336111b281858561141b8383611e61565b6114259190614966565b61239f565b600080516020614bdb83398151915261144281612360565b506001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b600080516020614bdb83398151915261148681612360565b601c54610100900460ff16156114ce5760405162461bcd60e51b815260206004820152600d60248201526c057495448445241572d5357415609c1b6044820152606401611001565b600e54306000818152602081905260409020546114f4926001600160a01b031690612c6f565b506000600f819055601055565b600080516020614bdb83398151915261151981612360565b60005b83811015610ed95782600c600087878581811061154957634e487b7160e01b600052603260045260246000fd5b905060200201602081019061155e919061456e565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061159081614b66565b91505061151c565b600080516020614bdb8339815191526115b081612360565b506001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b600080516020614bdb8339815191526115f481612360565b6022805463ff000000191663010000008415158102919091179182905560405160ff9190920416151581527fd11ee79597d5e7d44812e295744bbd79e940bae6dbdf9c6d2722e5788e4b381990602001610f91565b600080821561165f575050601454601554611668565b50506018546019545b915091565b611675612e3d565b61167f6000612e97565b565b600080516020614bdb83398151915261169981612360565b60646116a58585614966565b11156116dd5760405162461bcd60e51b815260206004820152600760248201526608c8a8a5a9a82b60cb1b6044820152606401611001565b6116e78383612ee9565b6116f18483612f48565b50505050565b600080516020614bdb83398151915261170f81612360565b6001600160a01b03821661174e5760405162461bcd60e51b81526020600482015260066024820152650414444522d360d41b6044820152606401611001565b600047116117865760405162461bcd60e51b8152602060048201526005602482015264042414c2d360dc1b6044820152606401611001565b60405147906000906001600160a01b0385169083908381818185875af1925050503d80600081146117d3576040519150601f19603f3d011682016040523d82523d6000602084013e6117d8565b606091505b50509050806116f157600080fd5b600080516020614bdb8339815191526117fe81612360565b60005b83811015610ed95761184785858381811061182c57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611841919061456e565b84611a73565b508061185281614b66565b915050611801565b600080516020614bbb83398151915261187281612360565b61188a600080516020614bdb83398151915233611e3c565b6118a2600080516020614bbb83398151915233611e3c565b50565b6000600080516020614bdb8339815191526118bf81612360565b505060275490565b600080516020614bdb8339815191526118df81612360565b600082116119205760405162461bcd60e51b815260206004820152600e60248201526d04150532d494e54455256414c2d360941b6044820152606401611001565b6021829055601c5460208054604080516201000090940460ff16151584529183015281018390527f58abb1550ee96d90118f764d80fe6b1292c94c6af536c9a9bada8e194c36826890606001610f91565b60008281526007602052604081206113629083612fa7565b60009182526006602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6060600480546110f190614b2b565b600080600080516020614bdb8339815191526119de81612360565b60205460215492509250509091565b600033816119fb8286611e61565b905083811015611a5b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401611001565b611a68828686840361239f565b506001949350505050565b6000336111b2818585612aa7565b600080516020614bdb833981519152611a9981612360565b611aa4836001612fb3565b61124b826001612fb3565b600080516020614bdb833981519152611ac781612360565b601c805462ff000019166201000084151581029190911791829055602080546021546040805160ff95909604949094161515855291840152908201527f58abb1550ee96d90118f764d80fe6b1292c94c6af536c9a9bada8e194c36826890606001610f91565b600080516020614bdb833981519152611b4581612360565b61122582612ff1565b600080516020614bdb833981519152611b6681612360565b6022805460ff19166001179055602854611b7f57436028555b6040805160018152600060208201819052918101919091527f20851fa0422d4f14abd10a67c93b0b65e055acfea35fd9d08e4c2489f6ed0d4f906060015b60405180910390a150565b600080516020614bdb833981519152611be081612360565b601c80548315156101000261ff00199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15990610f9190841515815260200190565b600080516020614bdb833981519152611c4181612360565b6000611c4f6012600a6149e4565b611c599084614ab2565b9050611c676012600a6149e4565b611c73906103e8614ab2565b8111611cae5760405162461bcd60e51b815260206004820152600a6024820152695448524553482d4c4f5760b01b6044820152606401611001565b6027555050565b6000818152600760205260408120610f059061306d565b600080516020614bbb833981519152611ce481612360565b611225600080516020614bdb83398151915283611369565b600080516020614bbb833981519152611d1481612360565b611225600080516020614bdb83398151915283611e3c565b600080516020614bdb833981519152611d4481612360565b611d4e8383613077565b60225460ff1661124b5761124b611b4e565b600080516020614bdb833981519152611d7881612360565b6103e8821115611dbd5760405162461bcd60e51b815260206004820152601060248201526f135056151617d4115490d7d31253525560821b6044820152606401611001565b611dde6103e8611dd8846011546130b590919063ffffffff16565b906130c1565b6025819055601c5460265460408051630100000090930460ff1615158352602083019390935291810191909152607560608201527fbad6607e60ebaa752325e414eb1465d5d5c7546e00c70bf28daa2c704b92699190608001610f91565b600082815260066020526040902060010154611e5781612360565b61124b8383612c4d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600080516020614bdb833981519152611ea481612360565b6103e882118015611eb957506402540be40082105b611ef95760405162461bcd60e51b8152602060048201526011602482015270105414cb5512149154d20b505353d55395607a1b6044820152606401611001565b611f056012600a6149e4565b611f0f9083614ab2565b6020818155601c54602154604080516201000090930460ff161515835292820193909352908101919091527f58abb1550ee96d90118f764d80fe6b1292c94c6af536c9a9bada8e194c36826890606001610f91565b600080516020614bdb833981519152611f7c81612360565b506001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b600080516020614bdb833981519152611fc081612360565b50601f805460ff1916911515919091179055565b600080516020614bdb833981519152611fec81612360565b6402540be4008211156120345760405162461bcd60e51b815260206004820152601060248201526f135056151617d053539517d31253525560821b6044820152606401611001565b6120406012600a6149e4565b611dde9083614ab2565b600080516020614bdb83398151915261206281612360565b60225460ff16801561207657506000602854115b6120ad5760405162461bcd60e51b81526020600482015260086024820152674c49512d4e4f4e4560c01b6044820152606401611001565b600182116120eb5760405162461bcd60e51b815260206004820152600b60248201526a5748542d4455522d4c4f5760a81b6044820152606401611001565b43602955601c805464ff000000001916640100000000179055601e82905542601d556121196012600a6149e4565b6121269062989680614ab2565b6025556022805461ff0019169055601c805463ffff0000191663010100001790556121536012600a6149e4565b612161906301312d00614ab2565b602090815560408051600180825292810192909252600082820152517f20851fa0422d4f14abd10a67c93b0b65e055acfea35fd9d08e4c2489f6ed0d4f9181900360600190a16040518281527f6f159885e19cfbd9af40f14257096211ec62bc3ee2cd18b633a493b4c60726d590602001610f91565b6121df612e3d565b6001600160a01b0381166122445760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401611001565b6118a281612e97565b600080516020614bdb83398151915261226581612360565b603282106122aa5760405162461bcd60e51b8152602060048201526012602482015271105414cb5512149154d20b54115490d1539560721b6044820152606401611001565b611f0f6103e8611dd8846011546130b590919063ffffffff16565b6122cf8282611989565b6112255760008281526006602090815260408083206001600160a01b03851684529091529020805460ff191660011790556123073390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000611362836001600160a01b0384166130cd565b6118a2813361311c565b60006001600160e01b03198216637965db0b60e01b1480610f0557506301ffc9a760e01b6001600160e01b0319831614610f05565b6001600160a01b0383166124015760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401611001565b6001600160a01b0382166124625760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401611001565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b80156124e457601480546016556015805460175560009081905590556118a2565b60188054601a5560198054601b55600090819055905550565b8015612514576016546014556017546015556118a2565b601a54601855601b5460195550565b6001600160a01b0382166000818152600b6020908152604091829020805460ff191685151517905590519182527fd33f19e7fa8232c5bc197847df1059ed61c4ac5deadafb05922b602eb71bcbf59101610f91565b6022805461ff0019166101008315150217905560408051600180825260208201819052918101919091527f20851fa0422d4f14abd10a67c93b0b65e055acfea35fd9d08e4c2489f6ed0d4f90606001611bbd565b602a80546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b8152905163c45a015591600480820192602092909190829003018186803b15801561262057600080fd5b505afa158015612634573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612658919061458a565b6001600160a01b031663c9c6539630602a60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156126b557600080fd5b505afa1580156126c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126ed919061458a565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b15801561273557600080fd5b505af1158015612749573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061276d919061458a565b602b80546001600160a01b0319166001600160a01b03929092169182179055612797906001613077565b602a546001600160a01b03166000908152600a60205260409020805460ff191660011790556127e56127d16005546001600160a01b031690565b602a546001600160a01b031660001961239f565b602a60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561283357600080fd5b505afa158015612847573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061286b919061458a565b602a5460405163095ea7b360e01b81526001600160a01b039182166004820152600019602482015291169063095ea7b390604401602060405180830381600087803b1580156128b957600080fd5b505af11580156128cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128f19190614731565b50602a60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561294057600080fd5b505afa158015612954573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612978919061458a565b60405163095ea7b360e01b815230600482015260001960248201526001600160a01b03919091169063095ea7b390604401602060405180830381600087803b1580156129c357600080fd5b505af11580156129d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129fb9190614731565b506040516001600160a01b038216907f7e336871192a11cf6144610c966672324a2721225248a567fd1211203248469e90600090a250565b6000612a3f8484611e61565b905060001981146116f15781811015612a9a5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401611001565b6116f1848484840361239f565b6001600160a01b038316612aeb5760405162461bcd60e51b815260206004820152600b60248201526a046524f4d2d414444522d360ac1b6044820152606401611001565b6001600160a01b038216612b2d5760405162461bcd60e51b81526020600482015260096024820152680544f2d414444522d360bc1b6044820152606401611001565b80612b4357612b3e83836000612c6f565b61124b565b6001600160a01b0383166000908152600b602052604090205460ff1680612b8257506001600160a01b0382166000908152600b602052604090205460ff165b15612b9257612b3e838383613180565b601c5460ff16612bcf57612ba461318e565b612baf838383613242565b612bba838383613403565b612bc5838383613636565b612bcf8383613729565b601c546001600160a01b03841660009081526009602052604090205460ff91821615911680612c1657506001600160a01b03831660009081526009602052604090205460ff165b15612c1f575060005b6116f1848484846137c7565b612c3582826122c5565b600082815260076020526040902061124b908261234b565b612c578282613926565b600082815260076020526040902061124b908261398d565b6001600160a01b038316612cd35760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401611001565b6001600160a01b038216612d355760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401611001565b6001600160a01b03831660009081526020819052604090205481811015612dad5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401611001565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290612de4908490614966565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612e3091815260200190565b60405180910390a36116f1565b6005546001600160a01b0316331461167f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401611001565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b605a821115612f285760405162461bcd60e51b815260206004820152600b60248201526a4645452d4c494d49542d4d60a81b6044820152606401611001565b8015612f3d5760148054601655829055611225565b5060188054601a5555565b605a821115612f875760405162461bcd60e51b815260206004820152600b60248201526a1191514b53125352550b5360aa1b6044820152606401611001565b8015612f9c5760158054601755829055611225565b5060198054601b5555565b600061136283836139a2565b6001600160a01b039091166000908152600960209081526040808320805494151560ff199586168117909155600a9092529091208054909216179055565b6001600160a01b0381166130305760405162461bcd60e51b81526020600482015260066024820152650414444522d360d41b6044820152606401611001565b600e54613047906001600160a01b03166000612fb3565b600e80546001600160a01b0319166001600160a01b0383161790556118a2816001612fb3565b6000610f05825490565b6001600160a01b039091166000908152602c60209081526040808320805494151560ff199586168117909155600a9092529091208054909216179055565b60006113628284614ab2565b6000611362828461497e565b600081815260018301602052604081205461311457508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610f05565b506000610f05565b6131268282611989565b6112255761313e816001600160a01b031660146139da565b6131498360206139da565b60405160200161315a92919061482c565b60408051601f198184030181529082905262461bcd60e51b8252611001916004016148a1565b61124b838383600d54613bbc565b601c54640100000000900460ff161561167f576002602954436131b19190614ad1565b10156131eb5760405162461bcd60e51b815260206004820152600960248201526814d3925411548b55d360ba1b6044820152606401611001565b42601e54603c6131fb9190614ab2565b601d546132089190614966565b101561167f57601c805464ff00000000191690556132286012600a6149e4565b6132359062e4e1c0614ab2565b60255561167f6001612578565b601f5460ff1680613257575061325783613d25565b80613266575061326682613d25565b8061327e57506005546001600160a01b038481169116145b8061329657506005546001600160a01b038381169116145b6132ce5760405162461bcd60e51b81526020600482015260096024820152684143432d534841524560b81b6044820152606401611001565b602254610100900460ff161580156132e8575060225460ff165b801561330257506005546001600160a01b03848116911614155b801561331c57506005546001600160a01b03838116911614155b156133f8576003602854436133319190614ad1565b101561336b5760405162461bcd60e51b81526020600482015260096024820152680534e495045522d4c560bc1b6044820152606401611001565b601c54640100000000900460ff1680156133bf57506001600160a01b0383166000908152600c602052604090205460ff16806133bf57506001600160a01b0382166000908152600c602052604090205460ff165b6133f85760405162461bcd60e51b815260206004820152600a60248201526915d20b5253131151d05360b21b6044820152606401611001565b61124b838383613d43565b601c546301000000900460ff161561124b5761341e83613d25565b1561348f576026546001600160a01b0383166000908152602081905260409020546134499083614966565b111561348a5760405162461bcd60e51b815260206004820152601060248201526f1510d4cb5213d31111548b531253525560821b6044820152606401611001565b613503565b61349882613d25565b613503576026546001600160a01b0383166000908152602081905260409020546134c29083614966565b11156135035760405162461bcd60e51b815260206004820152601060248201526f1510d4cb5213d31111548b531253525560821b6044820152606401611001565b61350c82613d25565b1561355e574261351e60756001614ab2565b6001600160a01b0385166000908152602360205260409020546135419190614966565b10612b3e5760405162461bcd60e51b8152600401611001906148d4565b61356783613d25565b1561359c574261357960756001614ab2565b6001600160a01b0384166000908152602460205260409020546135419190614966565b426135a960756001614ab2565b6001600160a01b0385166000908152602360205260409020546135cc9190614966565b106135e95760405162461bcd60e51b8152600401611001906148d4565b426135f660756001614ab2565b6001600160a01b0384166000908152602460205260409020546136199190614966565b1061124b5760405162461bcd60e51b8152600401611001906148d4565b601c5462010000900460ff161561124b5761365082613d25565b1561124b576001600160a01b03831660009081526020818152604090912054905481106136be5761368260058261497e565b82106136be5760405162461bcd60e51b815260206004820152600b60248201526a4150532d42414c414e434560a81b6044820152606401611001565b42602154603c6136ce9190614ab2565b6001600160a01b0386166000908152602360205260409020546136f19190614966565b106116f15760405162461bcd60e51b81526020600482015260086024820152674150532d54494d4560c01b6044820152606401611001565b601c5460ff16158015613742575061374082613d25565b155b80156137555750601c54610100900460ff165b801561377a57506001600160a01b03821660009081526009602052604090205460ff16155b801561379f57506001600160a01b03811660009081526009602052604090205460ff16155b1561122557601c805460ff191660011790556137b9613eaa565b601c805460ff191690555050565b60006137d285613d25565b9050600082156138905760006137e885846140a0565b9050806060015181604001516137fe9190614966565b9150811561388e578060400151600f600082825461381c9190614966565b9091555050606081015160108054600090613838908490614966565b9091555050604081015160128054600090613854908490614966565b9091555050606081015160138054600090613870908490614966565b909155506138819050873084612c6f565b61388b8286614ad1565b94505b505b81156138b6576001600160a01b0385166000908152602460205260409020429055613913565b6138bf85613d25565b156138e4576001600160a01b0386166000908152602360205260409020429055613913565b6001600160a01b0380861660009081526024602090815260408083204290819055938a16835260239091529020555b61391e868686612c6f565b505050505050565b6139308282611989565b156112255760008281526006602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6000611362836001600160a01b038416614114565b60008260000182815481106139c757634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905092915050565b606060006139e9836002614ab2565b6139f4906002614966565b67ffffffffffffffff811115613a1a57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015613a44576020820181803683370190505b509050600360fc1b81600081518110613a6d57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110613aaa57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000613ace846002614ab2565b613ad9906001614966565b90505b6001811115613b6d576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110613b1b57634e487b7160e01b600052603260045260246000fd5b1a60f81b828281518110613b3f57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c93613b6681614b14565b9050613adc565b5083156113625760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401611001565b60006103e8613bcb8385614ab2565b613bd5919061497e565b90506000613be38285614ad1565b9050613bf0863084612c6f565b613bfb868683612c6f565b6000806000613c0989613d25565b15613c6157601454601554613c1e9190614966565b92508215613c5c57601554613c34576000613c4d565b6015548390613c439087614ab2565b613c4d919061497e565b9050613c598186614ad1565b91505b613caf565b601854601954613c719190614966565b92508215613caf57601954613c87576000613ca0565b6019548390613c969087614ab2565b613ca0919061497e565b9050613cac8186614ad1565b91505b8215613d1a5781600f6000828254613cc79190614966565b925050819055508060106000828254613ce09190614966565b909155505060128054839190600090613cfa908490614966565b909155505060138054829190600090613d14908490614966565b90915550505b505050505050505050565b6001600160a01b03166000908152602c602052604090205460ff1690565b613d4c83613d25565b15613db55760255481111580613d7a57506001600160a01b0382166000908152600a602052604090205460ff165b612b3e5760405162461bcd60e51b815260206004820152600c60248201526b54582d4c494d49542d42555960a01b6044820152606401611001565b613dbe82613d25565b15613e285760255481111580613dec57506001600160a01b0383166000908152600a602052604090205460ff165b612b3e5760405162461bcd60e51b815260206004820152600d60248201526c15160b53125352550b54d15313609a1b6044820152606401611001565b60255481111580613e7357506001600160a01b0383166000908152600a602052604090205460ff1680613e7357506001600160a01b0382166000908152600a602052604090205460ff165b61124b5760405162461bcd60e51b815260206004820152600860248201526715160b531253525560c21b6044820152606401611001565b3060009081526020819052604081205490506000600f54601054613ece9190614966565b9050811580613edb575080155b80613ee7575060275481105b15613ef357505061167f565b60008060105411613f05576000613f23565b613f236002611dd884611dd8601054886130b590919063ffffffff16565b90506000613f318483614231565b905047613f3e823061423d565b6000613f4a4783614231565b90506000613f6786611dd8600f54856130b590919063ffffffff16565b90506000613f758284614ad1565b90506000601054118015613f895750600081115b15613fef57613f9886826143c3565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682613fd08960105461423190919063ffffffff16565b6040805193845260208401929092529082015260600160405180910390a15b600e546040516000916001600160a01b03169084908381818185875af1925050503d806000811461403c576040519150601f19603f3d011682016040523d82523d6000602084013e614041565b606091505b5050600f546040805191825260208201869052821515908201529091507fe4b0471ec14ebebbb513d957de87fec57e9abdbdf15f1afedcce783601dd89189060600160405180910390a1505060006010819055600f5550505050505050565b6140cb6040518060800160405280600081526020016000815260200160008152602001600081525090565b8281526140d8838361447d565b60408201526140e783836144d4565b6060820181905260408201516141099190614103908690614231565b90614231565b602082015292915050565b60008181526001830160205260408120548015614227576000614138600183614ad1565b855490915060009061414c90600190614ad1565b90508181146141cd57600086600001828154811061417a57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050808760000184815481106141ab57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255918252600188019052604090208390555b85548690806141ec57634e487b7160e01b600052603160045260246000fd5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610f05565b6000915050610f05565b60006113628284614ad1565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061428057634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152602a54604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b1580156142d457600080fd5b505afa1580156142e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061430c919061458a565b8160018151811061432d57634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152602a54614353913091168561239f565b602a5460405163791ac94760e01b81526001600160a01b039091169063791ac9479061438c9086906000908690889042906004016148f6565b600060405180830381600087803b1580156143a657600080fd5b505af11580156143ba573d6000803e3d6000fd5b50505050505050565b602a546143db9030906001600160a01b03168461239f565b602a5460405163f305d71960e01b815230600482015260248101849052600060448201819052606482015261dead60848201524260a48201526001600160a01b039091169063f305d71990839060c4016060604051808303818588803b15801561444457600080fd5b505af1158015614458573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610ed991906147ff565b600081156144b0576014546144935760006144a9565b6014546144a9906103e890611dd89086906130b5565b9050610f05565b6018546144be5760006144a9565b6018546144a9906103e890611dd89086906130b5565b60008115614500576015546144ea5760006144a9565b6015546144a9906103e890611dd89086906130b5565b60195461450e5760006144a9565b6019546144a9906103e890611dd89086906130b5565b60008083601f840112614535578182fd5b50813567ffffffffffffffff81111561454c578182fd5b6020830191508360208260051b850101111561456757600080fd5b9250929050565b60006020828403121561457f578081fd5b813561136281614b97565b60006020828403121561459b578081fd5b815161136281614b97565b600080604083850312156145b8578081fd5b82356145c381614b97565b915060208301356145d381614b97565b809150509250929050565b6000806000606084860312156145f2578081fd5b83356145fd81614b97565b9250602084013561460d81614b97565b929592945050506040919091013590565b60008060408385031215614630578182fd5b823561463b81614b97565b915060208301356145d381614bac565b6000806040838503121561465d578182fd5b823561466881614b97565b946020939093013593505050565b60008060006040848603121561468a578283fd5b833567ffffffffffffffff8111156146a0578384fd5b6146ac86828701614524565b90945092505060208401356146c081614bac565b809150509250925092565b6000806000604084860312156146df578283fd5b833567ffffffffffffffff8111156146f5578384fd5b61470186828701614524565b909790965060209590950135949350505050565b600060208284031215614726578081fd5b813561136281614bac565b600060208284031215614742578081fd5b815161136281614bac565b60006020828403121561475e578081fd5b5035919050565b60008060408385031215614777578182fd5b8235915060208301356145d381614b97565b6000806040838503121561479b578182fd5b50508035926020909101359150565b6000602082840312156147bb578081fd5b81356001600160e01b031981168114611362578182fd5b6000806000606084860312156147e6578081fd5b833592506020840135915060408401356146c081614bac565b600080600060608486031215614813578081fd5b8351925060208401519150604084015190509250925092565b60007f416363657373436f6e74726f6c3a206163636f756e742000000000000000000082528351614864816017850160208801614ae8565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351614895816028840160208801614ae8565b01602801949350505050565b60006020825282518060208401526148c0816040850160208701614ae8565b601f01601f19169190910160400192915050565b6020808252600890820152675443532d54494d4560c01b604082015260600190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b818110156149455784516001600160a01b031683529383019391830191600101614920565b50506001600160a01b03969096166060850152505050608001529392505050565b6000821982111561497957614979614b81565b500190565b60008261499957634e487b7160e01b81526012600452602481fd5b500490565b80825b60018086116149b057506149db565b8187048211156149c2576149c2614b81565b808616156149cf57918102915b9490941c9380026149a1565b94509492505050565b600061136260001984846000826149fd57506001611362565b81614a0a57506000611362565b8160018114614a205760028114614a2a57614a57565b6001915050611362565b60ff841115614a3b57614a3b614b81565b6001841b915084821115614a5157614a51614b81565b50611362565b5060208310610133831016604e8410600b8410161715614a8a575081810a83811115614a8557614a85614b81565b611362565b614a97848484600161499e565b808604821115614aa957614aa9614b81565b02949350505050565b6000816000190483118215151615614acc57614acc614b81565b500290565b600082821015614ae357614ae3614b81565b500390565b60005b83811015614b03578181015183820152602001614aeb565b838111156116f15750506000910152565b600081614b2357614b23614b81565b506000190190565b600181811c90821680614b3f57607f821691505b60208210811415614b6057634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415614b7a57614b7a614b81565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b03811681146118a257600080fd5b80151581146118a257600080fdfe4ebb3eb1732de51e78148107b1735f1eb406c54fc4634032f37c85769c2b55b9e33cade2d66e04fd0493fc676b10225974e8a5e7a703b4ffe78a5b4509bff0b9a2646970667358221220fd9c09856bebeb27e9a225485727b549a386b716b96ad6bd4289e98a238a7e0764736f6c63430008030033

Deployed Bytecode Sourcemap

97126:36975:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115529:194;;;;;;;;;;-1:-1:-1;115529:194:0;;;;;:::i;:::-;;:::i;:::-;;95092:214;;;;;;;;;;-1:-1:-1;95092:214:0;;;;;:::i;:::-;;:::i;:::-;;;9031:14:1;;9024:22;9006:41;;8994:2;8979:18;95092:214:0;;;;;;;;107207:202;;;;;;;;;;-1:-1:-1;107207:202:0;;;;;:::i;:::-;;:::i;106310:491::-;;;;;;;;;;-1:-1:-1;106310:491:0;;;;;:::i;:::-;;:::i;72768:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;107571:167::-;;;;;;;;;;;;;:::i;:::-;;;;27199:25:1;;;27255:2;27240:18;;27233:34;;;;27283:18;;;27276:34;27187:2;27172:18;107571:167:0;27154:162:1;75119:201:0;;;;;;;;;;-1:-1:-1;75119:201:0;;;;;:::i;:::-;;:::i;115041:123::-;;;;;;;;;;-1:-1:-1;115041:123:0;;;;;:::i;:::-;;:::i;116017:372::-;;;;;;;;;;-1:-1:-1;116017:372:0;;;;;:::i;:::-;;:::i;114765:127::-;;;;;;;;;;-1:-1:-1;114765:127:0;;;;;:::i;:::-;;:::i;99945:32::-;;;;;;;;;;;;;;;;;;;10298:25:1;;;10286:2;10271:18;99945:32:0;10253:76:1;111693:144:0;;;;;;;;;;-1:-1:-1;111693:144:0;;;;;:::i;:::-;;:::i;73888:108::-;;;;;;;;;;-1:-1:-1;73976:12:0;;73888:108;;116401:179;;;;;;;;;;-1:-1:-1;116401:179:0;;;;;:::i;:::-;;:::i;112962:129::-;;;;;;;;;;-1:-1:-1;112962:129:0;;;;;:::i;:::-;;:::i;105024:151::-;;;;;;;;;;-1:-1:-1;105108:15:0;:28;105138;;105024:151;;;;26584:25:1;;;26640:2;26625:18;;26618:34;;;;26557:18;105024:151:0;26539:119:1;75900:295:0;;;;;;;;;;-1:-1:-1;75900:295:0;;;;;:::i;:::-;;:::i;90667:131::-;;;;;;;;;;-1:-1:-1;90667:131:0;;;;;:::i;:::-;90741:7;90768:12;;;:6;:12;;;;;:22;;;;90667:131;91108:147;;;;;;;;;;-1:-1:-1;91108:147:0;;;;;:::i;:::-;;:::i;73730:93::-;;;;;;;;;;-1:-1:-1;73730:93:0;;73813:2;27463:36:1;;27451:2;27436:18;73730:93:0;27418:87:1;92252:218:0;;;;;;;;;;-1:-1:-1;92252:218:0;;;;;:::i;:::-;;:::i;76604:238::-;;;;;;;;;;-1:-1:-1;76604:238:0;;;;;:::i;:::-;;:::i;114631:122::-;;;;;;;;;;-1:-1:-1;114631:122:0;;;;;:::i;:::-;-1:-1:-1;;;;;114726:19:0;114702:4;114726:19;;;:10;:19;;;;;;;;;114631:122;106005:149;;;;;;;;;;-1:-1:-1;106005:149:0;;;;;:::i;:::-;;:::i;114202:289::-;;;;;;;;;;;;;:::i;115327:194::-;;;;;;;;;;-1:-1:-1;115327:194:0;;;;;:::i;:::-;;:::i;101075:30::-;;;;;;;;;;-1:-1:-1;101075:30:0;;;;;;;;;;;105859:134;;;;;;;;;;-1:-1:-1;105859:134:0;;;;;:::i;:::-;-1:-1:-1;;;;;105958:27:0;105934:4;105958:27;;;:18;:27;;;;;;;;;105859:134;114904:131;;;;;;;;;;-1:-1:-1;114904:131:0;;;;;:::i;:::-;;:::i;101004:30::-;;;;;;;;;;-1:-1:-1;101004:30:0;;;;;;;;;;;106166:136;;;;;;;;;;-1:-1:-1;106166:136:0;;;;;:::i;:::-;-1:-1:-1;;;;;106265:29:0;106241:4;106265:29;;;:20;:29;;;;;;;;;106166:136;113173:167;;;;;;;;;;-1:-1:-1;113173:167:0;;;;;:::i;:::-;;:::i;105370:267::-;;;;;;;;;;-1:-1:-1;105370:267:0;;;;;:::i;:::-;;:::i;74059:127::-;;;;;;;;;;-1:-1:-1;74059:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;74160:18:0;74133:7;74160:18;;;;;;;;;;;;74059:127;85437:103;;;;;;;;;;;;;:::i;109604:425::-;;;;;;;;;;-1:-1:-1;109604:425:0;;;;;:::i;:::-;;:::i;113760:434::-;;;;;;;;;;-1:-1:-1;113760:434:0;;;;;:::i;:::-;;:::i;115731:209::-;;;;;;;;;;-1:-1:-1;115731:209:0;;;;;:::i;:::-;;:::i;104718:162::-;;;;;;;;;;;;;:::i;111420:108::-;;;;;;;;;;;;;:::i;108715:244::-;;;;;;;;;;-1:-1:-1;108715:244:0;;;;;:::i;:::-;;:::i;84789:87::-;;;;;;;;;;-1:-1:-1;84862:6:0;;-1:-1:-1;;;;;84862:6:0;84789:87;;;-1:-1:-1;;;;;7622:32:1;;;7604:51;;7592:2;7577:18;84789:87:0;7559:102:1;95905:153:0;;;;;;;;;;-1:-1:-1;95905:153:0;;;;;:::i;:::-;;:::i;89127:147::-;;;;;;;;;;-1:-1:-1;89127:147:0;;;;;:::i;:::-;;:::i;72987:104::-;;;;;;;;;;;;;:::i;109072:133::-;;;;;;;;;;;;;:::i;88232:49::-;;;;;;;;;;-1:-1:-1;88232:49:0;88277:4;88232:49;;77345:436;;;;;;;;;;-1:-1:-1;77345:436:0;;;;;:::i;:::-;;:::i;99841:32::-;;;;;;;;;;;;;;;;103614:41;;;;;;;;;;-1:-1:-1;103614:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;74392:193;;;;;;;;;;-1:-1:-1;74392:193:0;;;;;:::i;:::-;;:::i;106913:214::-;;;;;;;;;;-1:-1:-1;106913:214:0;;;;;:::i;:::-;;:::i;107813:177::-;;;;;;;;;;-1:-1:-1;107813:177:0;;;;;:::i;:::-;;:::i;109456:136::-;;;;;;;;;;-1:-1:-1;109456:136:0;;;;;:::i;:::-;;:::i;113455:242::-;;;;;;;;;;;;;:::i;110843:190::-;;;;;;;;;;-1:-1:-1;110843:190:0;;;;;:::i;:::-;;:::i;111126:237::-;;;;;;;;;;-1:-1:-1;111126:237:0;;;;;:::i;:::-;;:::i;96232:142::-;;;;;;;;;;-1:-1:-1;96232:142:0;;;;;:::i;:::-;;:::i;104450:124::-;;;;;;;;;;-1:-1:-1;104450:124:0;;;;;:::i;:::-;;:::i;104582:128::-;;;;;;;;;;-1:-1:-1;104582:128:0;;;;;:::i;:::-;;:::i;99730:37::-;;;;;;;;;;-1:-1:-1;99730:37:0;;;;-1:-1:-1;;;;;99730:37:0;;;117732:205;;;;;;;;;;-1:-1:-1;117732:205:0;;;;;:::i;:::-;;:::i;110103:323::-;;;;;;;;;;-1:-1:-1;110103:323:0;;;;;:::i;:::-;;:::i;91548:149::-;;;;;;;;;;-1:-1:-1;91548:149:0;;;;;:::i;:::-;;:::i;101997:34::-;;;;;;;;;;-1:-1:-1;101997:34:0;;;;;;;;74648:151;;;;;;;;;;-1:-1:-1;74648:151:0;;;;;:::i;:::-;;:::i;108354:299::-;;;;;;;;;;-1:-1:-1;108354:299:0;;;;;:::i;:::-;;:::i;105649:145::-;;;;;;;;;;-1:-1:-1;105649:145:0;;;;;:::i;:::-;;:::i;109293:117::-;;;;;;;;;;-1:-1:-1;109293:117:0;;;;;:::i;:::-;;:::i;110483:318::-;;;;;;;;;;-1:-1:-1;110483:318:0;;;;;:::i;:::-;;:::i;111975:890::-;;;;;;;;;;-1:-1:-1;111975:890:0;;;;;:::i;:::-;;:::i;102318:33::-;;;;;;;;;;-1:-1:-1;102318:33:0;;;;;;;;;;;85695:201;;;;;;;;;;-1:-1:-1;85695:201:0;;;;;:::i;:::-;;:::i;114503:122::-;;;;;;;;;;-1:-1:-1;114503:122:0;;;;;:::i;:::-;-1:-1:-1;;;;;114598:19:0;114574:4;114598:19;;;:10;:19;;;;;;;;;114503:122;102078:31;;;;;;;;;;-1:-1:-1;102078:31:0;;;;;;;;;;;108063:283;;;;;;;;;;-1:-1:-1;108063:283:0;;;;;:::i;:::-;;:::i;115529:194::-;-1:-1:-1;;;;;;;;;;;88723:16:0;88734:4;88723:10;:16::i;:::-;115633:6:::1;115628:88;115643:14:::0;;::::1;115628:88;;;115701:3;115678:10;:20;115689:5;;115695:1;115689:8;;;;;-1:-1:-1::0;;;115689:8:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;115678:20:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;115678:20:0;:26;;-1:-1:-1;;115678:26:0::1;::::0;::::1;;::::0;;;::::1;::::0;;115659:3;::::1;::::0;::::1;:::i;:::-;;;;115628:88;;;;115529:194:::0;;;;:::o;95092:214::-;95177:4;-1:-1:-1;;;;;;95201:57:0;;-1:-1:-1;;;95201:57:0;;:97;;;95262:36;95286:11;95262:23;:36::i;:::-;95194:104;95092:214;-1:-1:-1;;95092:214:0:o;107207:202::-;-1:-1:-1;;;;;;;;;;;88723:16:0;88734:4;88723:10;:16::i;:::-;107286:10:::1;:20:::0;;-1:-1:-1;;107286:20:0::1;::::0;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;;107351:12:::1;::::0;107365:16:::1;::::0;107324:77:::1;::::0;;107286:20:::1;107339:10:::0;;;::::1;::::0;;;::::1;9996:14:1::0;9989:22;9971:41;;10043:2;10028:18;;10021:34;;;;10071:18;;;10064:34;98693:3:0::1;10129:2:1::0;10114:18;;10107:34;107324:77:0::1;::::0;9958:3:1;9943:19;107324:77:0::1;;;;;;;;107207:202:::0;;:::o;106310:491::-;-1:-1:-1;;;;;;;;;;;88723:16:0;88734:4;88723:10;:16::i;:::-;106414:1:::1;106406:5;:9;:35;;;;;98022:12;106419:5;:22;106406:35;106398:61;;;::::0;-1:-1:-1;;;106398:61:0;;12700:2:1;106398:61:0::1;::::0;::::1;12682:21:1::0;12739:2;12719:18;;;12712:30;-1:-1:-1;;;12758:18:1;;;12751:43;12811:18;;106398:61:0::1;;;;;;;;;106472:17;106500:23;97913:2;106500;:23;:::i;:::-;106492:31;::::0;:5;:31:::1;:::i;:::-;106472:51;;98393:4;106605:12;;106620:1;106605:16;;;;:::i;:::-;106604:34;;;;:::i;:::-;106591:9;:48;106583:74;;;::::0;-1:-1:-1;;;106583:74:0;;15621:2:1;106583:74:0::1;::::0;::::1;15603:21:1::0;15660:2;15640:18;;;15633:30;-1:-1:-1;;;15679:18:1;;;15672:43;15732:18;;106583:74:0::1;15593:163:1::0;106583:74:0::1;106670:16;:28:::0;;;106731:10:::1;::::0;106743:12:::1;::::0;106716:77:::1;::::0;;106731:10;;;::::1;;;9996:14:1::0;9989:22;9971:41;;10043:2;10028:18;;10021:34;;;;10071:18;;10064:34;;;98693:3:0::1;10129:2:1::0;10114:18;;10107:34;106716:77:0::1;::::0;9958:3:1;9943:19;106716:77:0::1;;;;;;;88750:1;106310:491:::0;;:::o;72768:100::-;72822:13;72855:5;72848:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72768:100;:::o;107571:167::-;107634:7;107643;107652;-1:-1:-1;;;;;;;;;;;88723:16:0;88734:4;88723:10;:16::i;:::-;-1:-1:-1;;107680:12:0::1;::::0;107694:16:::1;::::0;107680:12;;107694:16;;-1:-1:-1;98693:3:0::1;::::0;-1:-1:-1;107571:167:0:o;75119:201::-;75202:4;70488:10;75258:32;70488:10;75274:7;75283:6;75258:8;:32::i;:::-;-1:-1:-1;75308:4:0;;75119:201;-1:-1:-1;;;75119:201:0:o;115041:123::-;-1:-1:-1;;;;;;;;;;;88723:16:0;88734:4;88723:10;:16::i;:::-;-1:-1:-1;115131:13:0::1;:28:::0;115041:123::o;116017:372::-;-1:-1:-1;;;;;;;;;;;88723:16:0;88734:4;88723:10;:16::i;:::-;116095:5:::1;116092:290;;;116156:19;116170:4;116156:13;:19::i;:::-;116211:20;116225:5;116211:13;:20::i;:::-;116092:290;;;116298:20;116313:4;116298:14;:20::i;:::-;116355:21;116370:5;116355:14;:21::i;:::-;116017:372:::0;;:::o;114765:127::-;-1:-1:-1;;;;;;;;;;;88723:16:0;88734:4;88723:10;:16::i;:::-;114857:27:::1;114871:7;114880:3;114857:13;:27::i;:::-;114765:127:::0;;;:::o;111693:144::-;-1:-1:-1;;;;;;;;;;;88723:16:0;88734:4;88723:10;:16::i;:::-;111778:14:::1;::::0;::::1;;111770:35;;;::::0;-1:-1:-1;;;111770:35:0;;13852:2:1;111770:35:0::1;::::0;::::1;13834:21:1::0;13891:1;13871:18;;;13864:29;-1:-1:-1;;;13909:18:1;;;13902:38;13957:18;;111770:35:0::1;13824:157:1::0;111770:35:0::1;111815:14;111826:2;111815:10;:14::i;116401:179::-:0;-1:-1:-1;;;;;;;;;;;88723:16:0;88734:4;88723:10;:16::i;:::-;-1:-1:-1;;;;;116506:24:0;::::1;116498:41;;;;-1:-1:-1::0;;;116498:41:0::1;;;;;;14546:2:1::0;14528:21;;;14585:1;14565:18;;;14558:29;-1:-1:-1;;;14618:2:1;14603:18;;14596:34;14662:2;14647:18;;14518:153;116498:41:0::1;116550:22;116561:10;116550;:22::i;112962:129::-:0;-1:-1:-1;;;;;;;;;;;88723:16:0;88734:4;88723:10;:16::i;:::-;-1:-1:-1;113053:20:0::1;:30:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;113053:30:0;;::::1;::::0;;;::::1;::::0;;112962:129::o;75900:295::-;76031:4;70488:10;76089:38;76105:4;70488:10;76120:6;76089:15;:38::i;:::-;76138:27;76148:4;76154:2;76158:6;76138:9;:27::i;:::-;76183:4;76176:11;;;75900:295;;;;;;:::o;91108:147::-;90741:7;90768:12;;;:6;:12;;;;;:22;;;88723:16;88734:4;88723:10;:16::i;:::-;91222:25:::1;91233:4;91239:7;91222:10;:25::i;92252:218::-:0;-1:-1:-1;;;;;92348:23:0;;70488:10;92348:23;92340:83;;;;-1:-1:-1;;;92340:83:0;;25026:2:1;92340:83:0;;;25008:21:1;25065:2;25045:18;;;25038:30;25104:34;25084:18;;;25077:62;-1:-1:-1;;;25155:18:1;;;25148:45;25210:19;;92340:83:0;24998:237:1;92340:83:0;92436:26;92448:4;92454:7;92436:11;:26::i;76604:238::-;76692:4;70488:10;76748:64;70488:10;76764:7;76801:10;76773:25;70488:10;76764:7;76773:9;:25::i;:::-;:38;;;;:::i;:::-;76748:8;:64::i;106005:149::-;-1:-1:-1;;;;;;;;;;;88723:16:0;88734:4;88723:10;:16::i;:::-;-1:-1:-1;;;;;;106107:29:0;;;::::1;;::::0;;;:20:::1;:29;::::0;;;;:39;;-1:-1:-1;;106107:39:0::1;::::0;::::1;;::::0;;;::::1;::::0;;106005:149::o;114202:289::-;-1:-1:-1;;;;;;;;;;;88723:16:0;88734:4;88723:10;:16::i;:::-;114284:22:::1;::::0;::::1;::::0;::::1;;;114283:23;114275:49;;;::::0;-1:-1:-1;;;114275:49:0;;23594:2:1;114275:49:0::1;::::0;::::1;23576:21:1::0;23633:2;23613:18;;;23606:30;-1:-1:-1;;;23652:18:1;;;23645:43;23705:18;;114275:49:0::1;23566:163:1::0;114275:49:0::1;114368:22;::::0;114361:4:::1;74133:7:::0;74160:18;;;;;;;;;;;114337:80:::1;::::0;-1:-1:-1;;;;;114368:22:0::1;::::0;114337:15:::1;:80::i;:::-;-1:-1:-1::0;114450:1:0::1;114430:17;:21:::0;;;114462:17:::1;:21:::0;114202:289::o;115327:194::-;-1:-1:-1;;;;;;;;;;;88723:16:0;88734:4;88723:10;:16::i;:::-;115431:6:::1;115426:88;115441:14:::0;;::::1;115426:88;;;115499:3;115476:10;:20;115487:5;;115493:1;115487:8;;;;;-1:-1:-1::0;;;115487:8:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;115476:20:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;115476:20:0;:26;;-1:-1:-1;;115476:26:0::1;::::0;::::1;;::::0;;;::::1;::::0;;115457:3;::::1;::::0;::::1;:::i;:::-;;;;115426:88;;114904:131:::0;-1:-1:-1;;;;;;;;;;;88723:16:0;88734:4;88723:10;:16::i;:::-;-1:-1:-1;;;;;;115002:19:0;;;::::1;;::::0;;;:10:::1;:19;::::0;;;;:25;;-1:-1:-1;;115002:25:0::1;::::0;::::1;;::::0;;;::::1;::::0;;114904:131::o;113173:167::-;-1:-1:-1;;;;;;;;;;;88723:16:0;88734:4;88723:10;:16::i;:::-;113262:13:::1;:22:::0;;-1:-1:-1;;113262:22:0::1;::::0;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;;113300:32:::1;::::0;113262:22:::1;113318:13:::0;;;::::1;;9031:14:1::0;9024:22;9006:41;;113300:32:0::1;::::0;8994:2:1;8979:18;113300:32:0::1;8961:92:1::0;105370:267:0;105424:7;105433;105456:5;105453:177;;;-1:-1:-1;;105485:8:0;:21;105508;;105477:53;;105453:177;-1:-1:-1;;105571:9:0;:22;105595;;105453:177;105370:267;;;:::o;85437:103::-;84675:13;:11;:13::i;:::-;85502:30:::1;85529:1;85502:18;:30::i;:::-;85437:103::o:0;109604:425::-;-1:-1:-1;;;;;;;;;;;88723:16:0;88734:4;88723:10;:16::i;:::-;98578:3:::1;109843:27;109858:12:::0;109843;:27:::1;:::i;:::-;:47;;109835:67;;;::::0;-1:-1:-1;;;109835:67:0;;20809:2:1;109835:67:0::1;::::0;::::1;20791:21:1::0;20848:1;20828:18;;;20821:29;-1:-1:-1;;;20866:18:1;;;20859:37;20913:18;;109835:67:0::1;20781:156:1::0;109835:67:0::1;109922:44;109946:12;109960:5;109922:23;:44::i;:::-;109977;110001:12;110015:5;109977:23;:44::i;:::-;109604:425:::0;;;;:::o;113760:434::-;-1:-1:-1;;;;;;;;;;;88723:16:0;88734:4;88723:10;:16::i;:::-;-1:-1:-1;;;;;113868:23:0;::::1;113860:42;;;::::0;-1:-1:-1;;;113860:42:0;;17323:2:1;113860:42:0::1;::::0;::::1;17305:21:1::0;17362:1;17342:18;;;17335:29;-1:-1:-1;;;17380:18:1;;;17373:36;17426:18;;113860:42:0::1;17295:155:1::0;113860:42:0::1;113945:1;113921:21;:25;113913:43;;;::::0;-1:-1:-1;;;113913:43:0;;19051:2:1;113913:43:0::1;::::0;::::1;19033:21:1::0;19090:1;19070:18;;;19063:29;-1:-1:-1;;;19108:18:1;;;19101:35;19153:18;;113913:43:0::1;19023:154:1::0;113913:43:0::1;114082:42;::::0;113987:21:::1;::::0;113970:14:::1;::::0;-1:-1:-1;;;;;114082:23:0;::::1;::::0;113987:21;;113970:14;114082:42;113970:14;114082:42;113987:21;114082:23;:42:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;114064:60;;;114145:7;114141:46;;114167:8;::::0;::::1;115731:209:::0;-1:-1:-1;;;;;;;;;;;88723:16:0;88734:4;88723:10;:16::i;:::-;115844:6:::1;115839:94;115854:14:::0;;::::1;115839:94;;;115889:32;115904:5;;115910:1;115904:8;;;;;-1:-1:-1::0;;;115904:8:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;115914:6;115889:14;:32::i;:::-;-1:-1:-1::0;115870:3:0;::::1;::::0;::::1;:::i;:::-;;;;115839:94;;104718:162:::0;-1:-1:-1;;;;;;;;;;;88723:16:0;88734:4;88723:10;:16::i;:::-;104794:33:::1;-1:-1:-1::0;;;;;;;;;;;104816:10:0::1;104794;:33::i;:::-;104838:34;-1:-1:-1::0;;;;;;;;;;;104861:10:0::1;104838;:34::i;:::-;104718:162:::0;:::o;111420:108::-;111482:7;-1:-1:-1;;;;;;;;;;;88723:16:0;88734:4;88723:10;:16::i;:::-;-1:-1:-1;;111509:11:0::1;::::0;;111420:108::o;108715:244::-;-1:-1:-1;;;;;;;;;;;88723:16:0;88734:4;88723:10;:16::i;:::-;108825:1:::1;108814:8;:12;108806:39;;;::::0;-1:-1:-1;;;108806:39:0;;21144:2:1;108806:39:0::1;::::0;::::1;21126:21:1::0;21183:2;21163:18;;;21156:30;-1:-1:-1;;;21202:18:1;;;21195:44;21256:18;;108806:39:0::1;21116:164:1::0;108806:39:0::1;108858:12;:23:::0;;;108914:10:::1;::::0;108926::::1;::::0;;108899:52:::1;::::0;;108914:10;;;::::1;;;9633:14:1::0;9626:22;9608:41;;9665:18;;;9658:34;9708:18;;9701:34;;;108899:52:0::1;::::0;9596:2:1;9581:18;108899:52:0::1;9563:178:1::0;95905:153:0;95995:7;96022:18;;;:12;:18;;;;;:28;;96044:5;96022:21;:28::i;89127:147::-;89213:4;89237:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;89237:29:0;;;;;;;;;;;;;;;89127:147::o;72987:104::-;73043:13;73076:7;73069:14;;;;;:::i;109072:133::-;109135:7;109144;-1:-1:-1;;;;;;;;;;;88723:16:0;88734:4;88723:10;:16::i;:::-;109172:10:::1;;109184:12;;109164:33;;;;109072:133:::0;;;:::o;77345:436::-;77438:4;70488:10;77438:4;77521:25;70488:10;77538:7;77521:9;:25::i;:::-;77494:52;;77585:15;77565:16;:35;;77557:85;;;;-1:-1:-1;;;77557:85:0;;24620:2:1;77557:85:0;;;24602:21:1;24659:2;24639:18;;;24632:30;24698:34;24678:18;;;24671:62;-1:-1:-1;;;24749:18:1;;;24742:35;24794:19;;77557:85:0;24592:227:1;77557:85:0;77678:60;77687:5;77694:7;77722:15;77703:16;:34;77678:8;:60::i;:::-;-1:-1:-1;77769:4:0;;77345:436;-1:-1:-1;;;;77345:436:0:o;74392:193::-;74471:4;70488:10;74527:28;70488:10;74544:2;74548:6;74527:9;:28::i;106913:214::-;-1:-1:-1;;;;;;;;;;;88723:16:0;88734:4;88723:10;:16::i;:::-;107037:35:::1;107053:12;107067:4;107037:15;:35::i;:::-;107083:36;107099:13;107114:4;107083:15;:36::i;107813:177::-:0;-1:-1:-1;;;;;;;;;;;88723:16:0;88734:4;88723:10;:16::i;:::-;107892:10:::1;:20:::0;;-1:-1:-1;;107892:20:0::1;::::0;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;;107957:10:::1;::::0;;107969:12:::1;::::0;107930:52:::1;::::0;;107892:20:::1;107945:10:::0;;;::::1;::::0;;;::::1;9633:14:1::0;9626:22;9608:41;;9665:18;;;9658:34;9708:18;;;9701:34;107930:52:0::1;::::0;9596:2:1;9581:18;107930:52:0::1;9563:178:1::0;109456:136:0;-1:-1:-1;;;;;;;;;;;88723:16:0;88734:4;88723:10;:16::i;:::-;109553:31:::1;109576:7;109553:22;:31::i;113455:242::-:0;-1:-1:-1;;;;;;;;;;;88723:16:0;88734:4;88723:10;:16::i;:::-;113525:14:::1;:21:::0;;-1:-1:-1;;113525:21:0::1;113542:4;113525:21;::::0;;113562:14:::1;::::0;113559:80:::1;;113615:12;113598:14;:29:::0;113559:80:::1;113656:33;::::0;;113670:4:::1;9242:41:1::0;;113676:5:0::1;9314:2:1::0;9299:18;;9292:50;;;9358:18;;;9351:50;;;;113656:33:0::1;::::0;9230:2:1;9215:18;113656:33:0::1;;;;;;;;113455:242:::0;:::o;110843:190::-;-1:-1:-1;;;;;;;;;;;88723:16:0;88734:4;88723:10;:16::i;:::-;110940:22:::1;:32:::0;;;::::1;;;;-1:-1:-1::0;;110940:32:0;;::::1;;::::0;;110988:37:::1;::::0;::::1;::::0;::::1;::::0;110965:7;9031:14:1;9024:22;9006:41;;8994:2;8979:18;;8961:92;111126:237:0;-1:-1:-1;;;;;;;;;;;88723:16:0;88734:4;88723:10;:16::i;:::-;111216:17:::1;111245:23;97913:2;111245;:23;:::i;:::-;111236:32;::::0;:6;:32:::1;:::i;:::-;111216:52:::0;-1:-1:-1;98239:23:0::1;97913:2;98239;:23;:::i;:::-;98225:37;::::0;:11:::1;:37;:::i;:::-;111283:9;:30;111275:53;;;::::0;-1:-1:-1;;;111275:53:0;;23936:2:1;111275:53:0::1;::::0;::::1;23918:21:1::0;23975:2;23955:18;;;23948:30;-1:-1:-1;;;23994:18:1;;;23987:40;24044:18;;111275:53:0::1;23908:160:1::0;111275:53:0::1;111335:11;:23:::0;-1:-1:-1;;111126:237:0:o;96232:142::-;96312:7;96339:18;;;:12;:18;;;;;:27;;:25;:27::i;104450:124::-;-1:-1:-1;;;;;;;;;;;88723:16:0;88734:4;88723:10;:16::i;:::-;104537:29:::1;-1:-1:-1::0;;;;;;;;;;;104558:7:0::1;104537:9;:29::i;104582:128::-:0;-1:-1:-1;;;;;;;;;;;88723:16:0;88734:4;88723:10;:16::i;:::-;104672:30:::1;-1:-1:-1::0;;;;;;;;;;;104694:7:0::1;104672:10;:30::i;117732:205::-:0;-1:-1:-1;;;;;;;;;;;88723:16:0;88734:4;88723:10;:16::i;:::-;117823:24:::1;117835:4;117841:5;117823:11;:24::i;:::-;117865:14;::::0;::::1;;117860:70;;117896:22;:20;:22::i;110103:323::-:0;-1:-1:-1;;;;;;;;;;;88723:16:0;88734:4;88723:10;:16::i;:::-;110223:4:::1;110207:12;:20;;110199:49;;;::::0;-1:-1:-1;;;110199:49:0;;18706:2:1;110199:49:0::1;::::0;::::1;18688:21:1::0;18745:2;18725:18;;;18718:30;-1:-1:-1;;;18764:18:1;;;18757:46;18820:18;;110199:49:0::1;18678:166:1::0;110199:49:0::1;110274;98393:4;110274:30;110291:12;110274;;:16;;:30;;;;:::i;:::-;:34:::0;::::1;:49::i;:::-;110259:12;:64:::0;;;110356:10:::1;::::0;110382:16:::1;::::0;110341:77:::1;::::0;;110356:10;;;::::1;;;9996:14:1::0;9989:22;9971:41;;10043:2;10028:18;;10021:34;;;;10071:18;;;10064:34;;;;98693:3:0::1;10129:2:1::0;10114:18;;10107:34;110341:77:0::1;::::0;9958:3:1;9943:19;110341:77:0::1;9925:222:1::0;91548:149:0;90741:7;90768:12;;;:6;:12;;;;;:22;;;88723:16;88734:4;88723:10;:16::i;:::-;91663:26:::1;91675:4;91681:7;91663:11;:26::i;74648:151::-:0;-1:-1:-1;;;;;74764:18:0;;;74737:7;74764:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;74648:151::o;108354:299::-;-1:-1:-1;;;;;;;;;;;88723:16:0;88734:4;88723:10;:16::i;:::-;108464:4:::1;108455:6;:13;:40;;;;;98022:12;108472:6;:23;108455:40;108447:70;;;::::0;-1:-1:-1;;;108447:70:0;;21824:2:1;108447:70:0::1;::::0;::::1;21806:21:1::0;21863:2;21843:18;;;21836:30;-1:-1:-1;;;21882:18:1;;;21875:47;21939:18;;108447:70:0::1;21796:167:1::0;108447:70:0::1;108552:23;97913:2;108552;:23;:::i;:::-;108543:32;::::0;:6;:32:::1;:::i;:::-;108530:10;:45:::0;;;108608:10:::1;::::0;108632:12:::1;::::0;108593:52:::1;::::0;;108608:10;;;::::1;;;9633:14:1::0;9626:22;9608:41;;9665:18;;;9658:34;;;;9708:18;;;9701:34;;;;108593:52:0::1;::::0;9596:2:1;9581:18;108593:52:0::1;9563:178:1::0;105649:145:0;-1:-1:-1;;;;;;;;;;;88723:16:0;88734:4;88723:10;:16::i;:::-;-1:-1:-1;;;;;;105749:27:0;;;::::1;;::::0;;;:18:::1;:27;::::0;;;;:37;;-1:-1:-1;;105749:37:0::1;::::0;::::1;;::::0;;;::::1;::::0;;105649:145::o;109293:117::-;-1:-1:-1;;;;;;;;;;;88723:16:0;88734:4;88723:10;:16::i;:::-;-1:-1:-1;109381:11:0::1;:21:::0;;-1:-1:-1;;109381:21:0::1;::::0;::::1;;::::0;;;::::1;::::0;;109293:117::o;110483:318::-;-1:-1:-1;;;;;;;;;;;88723:16:0;88734:4;88723:10;:16::i;:::-;98022:12:::1;110585:11;:29;;110577:58;;;::::0;-1:-1:-1;;;110577:58:0;;24275:2:1;110577:58:0::1;::::0;::::1;24257:21:1::0;24314:2;24294:18;;;24287:30;-1:-1:-1;;;24333:18:1;;;24326:46;24389:18;;110577:58:0::1;24247:166:1::0;110577:58:0::1;110675:23;97913:2;110675;:23;:::i;:::-;110661:37;::::0;:11;:37:::1;:::i;111975:890::-:0;-1:-1:-1;;;;;;;;;;;88723:16:0;88734:4;88723:10;:16::i;:::-;112069:14:::1;::::0;::::1;;:36:::0;::::1;;;;112104:1;112087:14;;:18;112069:36;112061:57;;;::::0;-1:-1:-1;;;112061:57:0;;13852:2:1;112061:57:0::1;::::0;::::1;13834:21:1::0;13891:1;13871:18;;;13864:29;-1:-1:-1;;;13909:18:1;;;13902:38;13957:18;;112061:57:0::1;13824:157:1::0;112061:57:0::1;112148:1;112137:8;:12;112129:36;;;::::0;-1:-1:-1;;;112129:36:0;;23254:2:1;112129:36:0::1;::::0;::::1;23236:21:1::0;23293:2;23273:18;;;23266:30;-1:-1:-1;;;23312:18:1;;;23305:41;23363:18;;112129:36:0::1;23226:161:1::0;112129:36:0::1;112194:12;112178:13;:28:::0;112219:13:::1;:20:::0;;-1:-1:-1;;112219:20:0::1;::::0;::::1;::::0;;112250:11:::1;:22:::0;;;112294:15:::1;112283:8;:26:::0;112395:23:::1;97913:2;112395;:23;:::i;:::-;112380:38;::::0;:12:::1;:38;:::i;:::-;112365:12;:53:::0;112471:11:::1;:19:::0;;-1:-1:-1;;112471:19:0::1;::::0;;112526:10:::1;:17:::0;;-1:-1:-1;;112579:17:0;;;;;112674:23:::1;97913:2;112674;:23;:::i;:::-;112659:38;::::0;:12:::1;:38;:::i;:::-;112646:10;:51:::0;;;112746:32:::1;::::0;;112760:4:::1;9242:41:1::0;;;9299:18;;;9292:50;;;;-1:-1:-1;9358:18:1;;;9351:50;112746:32:0;::::1;::::0;;;;9230:2:1;112746:32:0;;::::1;112840:17;::::0;10298:25:1;;;112840:17:0::1;::::0;10286:2:1;10271:18;112840:17:0::1;10253:76:1::0;85695:201:0;84675:13;:11;:13::i;:::-;-1:-1:-1;;;;;85784:22:0;::::1;85776:73;;;::::0;-1:-1:-1;;;85776:73:0;;13042:2:1;85776:73:0::1;::::0;::::1;13024:21:1::0;13081:2;13061:18;;;13054:30;13120:34;13100:18;;;13093:62;-1:-1:-1;;;13171:18:1;;;13164:36;13217:19;;85776:73:0::1;13014:228:1::0;85776:73:0::1;85860:28;85879:8;85860:18;:28::i;108063:283::-:0;-1:-1:-1;;;;;;;;;;;88723:16:0;88734:4;88723:10;:16::i;:::-;108174:2:::1;108165:6;:11;108157:42;;;::::0;-1:-1:-1;;;108157:42:0;;17998:2:1;108157:42:0::1;::::0;::::1;17980:21:1::0;18037:2;18017:18;;;18010:30;-1:-1:-1;;;18056:18:1;;;18049:48;18114:18;;108157:42:0::1;17970:168:1::0;108157:42:0::1;108225:43;98393:4;108225:24;108242:6;108225:12;;:16;;:24;;;;:::i;93849:238::-:0;93933:22;93941:4;93947:7;93933;:22::i;:::-;93928:152;;93972:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;93972:29:0;;;;;;;;;:36;;-1:-1:-1;;93972:36:0;94004:4;93972:36;;;94055:12;70488:10;70408:98;;94055:12;-1:-1:-1;;;;;94028:40:0;94046:7;-1:-1:-1;;;;;94028:40:0;94040:4;94028:40;;;;;;;;;;93849:238;;:::o;56182:152::-;56252:4;56276:50;56281:3;-1:-1:-1;;;;;56301:23:0;;56276:4;:50::i;89578:105::-;89645:30;89656:4;70488:10;89645;:30::i;88831:204::-;88916:4;-1:-1:-1;;;;;;88940:47:0;;-1:-1:-1;;;88940:47:0;;:87;;-1:-1:-1;;;;;;;;;;62866:40:0;;;88991:36;62757:157;80970:380;-1:-1:-1;;;;;81106:19:0;;81098:68;;;;-1:-1:-1;;;81098:68:0;;22512:2:1;81098:68:0;;;22494:21:1;22551:2;22531:18;;;22524:30;22590:34;22570:18;;;22563:62;-1:-1:-1;;;22641:18:1;;;22634:34;22685:19;;81098:68:0;22484:226:1;81098:68:0;-1:-1:-1;;;;;81185:21:0;;81177:68;;;;-1:-1:-1;;;81177:68:0;;13449:2:1;81177:68:0;;;13431:21:1;13488:2;13468:18;;;13461:30;13527:34;13507:18;;;13500:62;-1:-1:-1;;;13578:18:1;;;13571:32;13620:19;;81177:68:0;13421:224:1;81177:68:0;-1:-1:-1;;;;;81258:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;81310:32;;10298:25:1;;;81310:32:0;;10271:18:1;81310:32:0;;;;;;;80970:380;;;:::o;121789:348::-;121846:5;121843:287;;;121886:8;121867:27;;:16;:27;;;;;;;121909:25;;;;121949;;121843:287;;;122027:9;122007:29;;:17;:29;;;;;;;122051:26;;;;122092;;121789:348;:::o;122149:187::-;122207:5;122204:125;;;122239:16;122228:27;:8;:27;;;;;122204:125;;;122300:17;122288:29;:9;:29;;;;;122149:187;:::o;115172:147::-;-1:-1:-1;;;;;115241:19:0;;;;;;:10;:19;;;;;;;;;:25;;-1:-1:-1;;115241:25:0;;;;;;;115284:27;;7604:51:1;;;115284:27:0;;7577:18:1;115284:27:0;7559:102:1;111845:122:0;111894:11;:16;;-1:-1:-1;;111894:16:0;;;;;;;;;111928:31;;;-1:-1:-1;9242:41:1;;;9314:2;9299:18;;9292:50;;;9358:18;;;9351:50;;;;111928:31:0;;9230:2:1;9215:18;111928:31:0;9197:210:1;116860:866:0;117006:13;:49;;-1:-1:-1;;;;;;117006:49:0;-1:-1:-1;;;;;117006:49:0;;;;;;;;117154:23;;;-1:-1:-1;;;117154:23:0;;;;:21;;:23;;;;;;;;;;;;;;;117006:49;117154:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;117136:53:0;;117198:4;117205:13;;;;;;;;;-1:-1:-1;;;;;117205:13:0;-1:-1:-1;;;;;117205:18:0;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;117136:90;;-1:-1:-1;;;;;;117136:90:0;;;;;;;-1:-1:-1;;;;;7896:15:1;;;117136:90:0;;;7878:34:1;7948:15;;7928:18;;;7921:43;7813:18;;117136:90:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;117122:11;:104;;-1:-1:-1;;;;;;117122:104:0;-1:-1:-1;;;;;117122:104:0;;;;;;;;;117233:39;;-1:-1:-1;117233:11:0;:39::i;:::-;117389:13;;-1:-1:-1;;;;;117389:13:0;117360:44;;;;:20;:44;;;;;:51;;-1:-1:-1;;117360:51:0;117407:4;117360:51;;;117424:60;117433:7;84862:6;;-1:-1:-1;;;;;84862:6:0;84789:87;;117433:7;117450:13;;-1:-1:-1;;;;;117450:13:0;-1:-1:-1;;117424:8:0;:60::i;:::-;117509:13;;;;;;;;;-1:-1:-1;;;;;117509:13:0;-1:-1:-1;;;;;117509:18:0;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;117548:13;;117495:87;;-1:-1:-1;;;117495:87:0;;-1:-1:-1;;;;;117548:13:0;;;117495:87;;;8149:51:1;-1:-1:-1;;8216:18:1;;;8209:34;117495:44:0;;;;;8122:18:1;;117495:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;117607:13;;;;;;;;;-1:-1:-1;;;;;117607:13:0;-1:-1:-1;;;;;117607:18:0;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;117593:78;;-1:-1:-1;;;117593:78:0;;117646:4;117593:78;;;8149:51:1;-1:-1:-1;;8216:18:1;;;8209:34;-1:-1:-1;;;;;117593:44:0;;;;;;;8122:18:1;;117593:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;117685:33:0;;-1:-1:-1;;;;;117685:33:0;;;;;;;;116860:866;:::o;81641:453::-;81776:24;81803:25;81813:5;81820:7;81803:9;:25::i;:::-;81776:52;;-1:-1:-1;;81843:16:0;:37;81839:248;;81925:6;81905:16;:26;;81897:68;;;;-1:-1:-1;;;81897:68:0;;14188:2:1;81897:68:0;;;14170:21:1;14227:2;14207:18;;;14200:30;14266:31;14246:18;;;14239:59;14315:18;;81897:68:0;14160:179:1;81897:68:0;82009:51;82018:5;82025:7;82053:6;82034:16;:25;82009:8;:51::i;122555:1573::-;-1:-1:-1;;;;;122687:18:0;;122679:42;;;;-1:-1:-1;;;122679:42:0;;16983:2:1;122679:42:0;;;16965:21:1;17022:2;17002:18;;;16995:30;-1:-1:-1;;;17041:18:1;;;17034:41;17092:18;;122679:42:0;16955:161:1;122679:42:0;-1:-1:-1;;;;;122740:16:0;;122732:38;;;;-1:-1:-1;;;122732:38:0;;20066:2:1;122732:38:0;;;20048:21:1;20105:1;20085:18;;;20078:29;-1:-1:-1;;;20123:18:1;;;20116:39;20172:18;;122732:38:0;20038:158:1;122732:38:0;122785:11;122781:93;;122813:28;122829:4;122835:2;122839:1;122813:15;:28::i;:::-;122856:7;;122781:93;-1:-1:-1;;;;;122889:16:0;;;;;;:10;:16;;;;;;;;;:34;;-1:-1:-1;;;;;;122909:14:0;;;;;;:10;:14;;;;;;;;122889:34;122886:113;;;122931:35;122949:4;122955:2;122959:6;122931:17;:35::i;122886:113::-;123016:17;;;;123011:487;;123092:24;:22;:24::i;:::-;123174:31;123188:4;123194:2;123198:6;123174:13;:31::i;:::-;123272:27;123282:4;123288:2;123292:6;123272:9;:27::i;:::-;123375;123385:4;123391:2;123395:6;123375:9;:27::i;:::-;123459;123477:4;123483:2;123459:17;:27::i;:::-;123587:17;;-1:-1:-1;;;;;123706:24:0;;123571:12;123706:24;;;:18;:24;;;;;;123587:17;;;;123586:18;;123706:24;;:50;;-1:-1:-1;;;;;;123734:22:0;;;;;;:18;:22;;;;;;;;123706:50;123702:99;;;-1:-1:-1;123784:5:0;123702:99;124079:41;124094:4;124100:2;124104:6;124112:7;124079:14;:41::i;96467:169::-;96555:31;96572:4;96578:7;96555:16;:31::i;:::-;96597:18;;;;:12;:18;;;;;:31;;96620:7;96597:22;:31::i;96730:174::-;96819:32;96837:4;96843:7;96819:17;:32::i;:::-;96862:18;;;;:12;:18;;;;;:34;;96888:7;96862:25;:34::i;78251:671::-;-1:-1:-1;;;;;78382:18:0;;78374:68;;;;-1:-1:-1;;;78374:68:0;;20403:2:1;78374:68:0;;;20385:21:1;20442:2;20422:18;;;20415:30;20481:34;20461:18;;;20454:62;-1:-1:-1;;;20532:18:1;;;20525:35;20577:19;;78374:68:0;20375:227:1;78374:68:0;-1:-1:-1;;;;;78461:16:0;;78453:64;;;;-1:-1:-1;;;78453:64:0;;11621:2:1;78453:64:0;;;11603:21:1;11660:2;11640:18;;;11633:30;11699:34;11679:18;;;11672:62;-1:-1:-1;;;11750:18:1;;;11743:33;11793:19;;78453:64:0;11593:225:1;78453:64:0;-1:-1:-1;;;;;78603:15:0;;78581:19;78603:15;;;;;;;;;;;78637:21;;;;78629:72;;;;-1:-1:-1;;;78629:72:0;;14878:2:1;78629:72:0;;;14860:21:1;14917:2;14897:18;;;14890:30;14956:34;14936:18;;;14929:62;-1:-1:-1;;;15007:18:1;;;15000:36;15053:19;;78629:72:0;14850:228:1;78629:72:0;-1:-1:-1;;;;;78737:15:0;;;:9;:15;;;;;;;;;;;78755:20;;;78737:38;;78797:13;;;;;;;;:23;;78769:6;;78737:9;78797:23;;78769:6;;78797:23;:::i;:::-;;;;;;;;78853:2;-1:-1:-1;;;;;78838:26:0;78847:4;-1:-1:-1;;;;;78838:26:0;;78857:6;78838:26;;;;10298:25:1;;10286:2;10271:18;;10253:76;78838:26:0;;;;;;;;78877:37;114765:127;84954:132;84862:6;;-1:-1:-1;;;;;84862:6:0;70488:10;85018:23;85010:68;;;;-1:-1:-1;;;85010:68:0;;18345:2:1;85010:68:0;;;18327:21:1;;;18364:18;;;18357:30;18423:34;18403:18;;;18396:62;18475:18;;85010:68:0;18317:182:1;86056:191:0;86149:6;;;-1:-1:-1;;;;;86166:17:0;;;-1:-1:-1;;;;;;86166:17:0;;;;;;;86199:40;;86149:6;;;86166:17;86149:6;;86199:40;;86130:16;;86199:40;86056:191;;:::o;119651:409::-;98485:2;119737:3;:17;;119729:41;;;;-1:-1:-1;;;119729:41:0;;16643:2:1;119729:41:0;;;16625:21:1;16682:2;16662:18;;;16655:30;-1:-1:-1;;;16701:18:1;;;16694:41;16752:18;;119729:41:0;16615:161:1;119729:41:0;119794:5;119791:262;;;119847:8;:21;;119815:16;:53;119883:27;;;119791:262;;;-1:-1:-1;119976:9:0;:22;;119943:17;:55;120013:28;119651:409::o;120072:446::-;98485:2;120167:12;:26;;120159:50;;;;-1:-1:-1;;;120159:50:0;;15963:2:1;120159:50:0;;;15945:21:1;16002:2;15982:18;;;15975:30;-1:-1:-1;;;16021:18:1;;;16014:41;16072:18;;120159:50:0;15935:161:1;120159:50:0;120234:5;120231:280;;;120287:21;;;120255:29;:53;120323:36;;;120231:280;;;-1:-1:-1;120425:22:0;;;120392:30;:55;120462:37;120072:446::o;57478:158::-;57552:7;57603:22;57607:3;57619:5;57603:3;:22::i;118100:148::-;-1:-1:-1;;;;;118168:24:0;;;;;;;:18;:24;;;;;;;;:29;;;;;-1:-1:-1;;118168:29:0;;;;;;;;118209:20;:26;;;;;;:31;;;;;;;;118100:148::o;118543:248::-;-1:-1:-1;;;;;118617:18:0;;118609:37;;;;-1:-1:-1;;;118609:37:0;;17323:2:1;118609:37:0;;;17305:21:1;17362:1;17342:18;;;17335:29;-1:-1:-1;;;17380:18:1;;;17373:36;17426:18;;118609:37:0;17295:155:1;118609:37:0;118673:22;;118657:46;;-1:-1:-1;;;;;118673:22:0;;118657:15;:46::i;:::-;118718:22;:29;;-1:-1:-1;;;;;;118718:29:0;-1:-1:-1;;;;;118718:29:0;;;;;118756:27;118718:29;-1:-1:-1;118756:15:0;:27::i;57007:117::-;57070:7;57097:19;57105:3;52491:18;;52408:109;117945:143;-1:-1:-1;;;;;118011:14:0;;;;;;;:8;:14;;;;;;;;:22;;;;;-1:-1:-1;;118011:22:0;;;;;;;;118046:20;:26;;;;;;:34;;;;;;;;117945:143::o;31402:98::-;31460:7;31487:5;31491:1;31487;:5;:::i;31801:98::-;31859:7;31886:5;31890:1;31886;:5;:::i;50097:414::-;50160:4;52290:19;;;:12;;;:19;;;;;;50177:327;;-1:-1:-1;50220:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;50403:18;;50381:19;;;:12;;;:19;;;;;;:40;;;;50436:11;;50177:327;-1:-1:-1;50487:5:0;50480:12;;89973:505;90062:22;90070:4;90076:7;90062;:22::i;:::-;90057:414;;90250:41;90278:7;-1:-1:-1;;;;;90250:41:0;90288:2;90250:19;:41::i;:::-;90364:38;90392:4;90399:2;90364:19;:38::i;:::-;90155:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;90155:270:0;;;;;;;;;;-1:-1:-1;;;90101:358:0;;;;;;;:::i;125299:136::-;125387:41;125396:4;125402:2;125406:6;125414:13;;125387:8;:41::i;125443:549::-;125500:13;;;;;;;125496:489;;;125572:1;125555:13;;125540:12;:28;;;;:::i;:::-;:33;;125532:55;;;;-1:-1:-1;;;125532:55:0;;22917:2:1;125532:55:0;;;22899:21:1;22956:1;22936:18;;;22929:29;-1:-1:-1;;;22974:18:1;;;22967:39;23023:18;;125532:55:0;22889:158:1;125532:55:0;125647:15;125620:11;;125634:9;125620:23;;;;:::i;:::-;125608:8;;:36;;;;:::i;:::-;:54;125604:370;;;125745:13;:21;;-1:-1:-1;;125745:21:0;;;125865:23;97913:2;125865;:23;:::i;:::-;125850:38;;:12;:38;:::i;:::-;125835:12;:53;125942:16;125953:4;125942:10;:16::i;126310:648::-;126433:11;;;;;:27;;;126448:12;126455:4;126448:6;:12::i;:::-;126433:42;;;;126464:11;126472:2;126464:7;:11::i;:::-;126433:61;;;-1:-1:-1;84862:6:0;;-1:-1:-1;;;;;126479:15:0;;;84862:6;;126479:15;126433:61;:78;;;-1:-1:-1;84862:6:0;;-1:-1:-1;;;;;126498:13:0;;;84862:6;;126498:13;126433:78;126425:100;;;;-1:-1:-1;;;126425:100:0;;21487:2:1;126425:100:0;;;21469:21:1;21526:1;21506:18;;;21499:29;-1:-1:-1;;;21544:18:1;;;21537:39;21593:18;;126425:100:0;21459:158:1;126425:100:0;126632:11;;;;;;;126631:12;:30;;;;-1:-1:-1;126647:14:0;;;;126631:30;:49;;;;-1:-1:-1;84862:6:0;;-1:-1:-1;;;;;126665:15:0;;;84862:6;;126665:15;;126631:49;:66;;;;-1:-1:-1;84862:6:0;;-1:-1:-1;;;;;126684:13:0;;;84862:6;;126684:13;;126631:66;126627:251;;;126757:1;126739:14;;126724:12;:29;;;;:::i;:::-;:34;;126716:57;;;;-1:-1:-1;;;126716:57:0;;19729:2:1;126716:57:0;;;19711:21:1;19768:1;19748:18;;;19741:29;-1:-1:-1;;;19786:18:1;;;19779:39;19835:18;;126716:57:0;19701:158:1;126716:57:0;126798:13;;;;;;;:53;;;;-1:-1:-1;;;;;;126816:16:0;;;;;;:10;:16;;;;;;;;;:34;;-1:-1:-1;;;;;;126836:14:0;;;;;;:10;:14;;;;;;;;126816:34;126790:76;;;;-1:-1:-1;;;126790:76:0;;12025:2:1;126790:76:0;;;12007:21:1;12064:2;12044:18;;;12037:30;-1:-1:-1;;;12083:18:1;;;12076:40;12133:18;;126790:76:0;11997:160:1;126790:76:0;126917:31;126931:4;126937:2;126941:6;126917:13;:31::i;127138:1239::-;127404:10;;;;;;;127400:970;;;127483:12;127490:4;127483:6;:12::i;:::-;127479:253;;;127550:16;;-1:-1:-1;;;;;74160:18:0;;74133:7;74160:18;;;;;;;;;;;127524:22;;:6;:22;:::i;:::-;:42;;127516:71;;;;-1:-1:-1;;;127516:71:0;;19384:2:1;127516:71:0;;;19366:21:1;19423:2;19403:18;;;19396:30;-1:-1:-1;;;19442:18:1;;;19435:46;19498:18;;127516:71:0;19356:166:1;127516:71:0;127479:253;;;127613:11;127621:2;127613:7;:11::i;:::-;127609:123;;127679:16;;-1:-1:-1;;;;;74160:18:0;;74133:7;74160:18;;;;;;;;;;;127653:22;;:6;:22;:::i;:::-;:42;;127645:71;;;;-1:-1:-1;;;127645:71:0;;19384:2:1;127645:71:0;;;19366:21:1;19423:2;19403:18;;;19396:30;-1:-1:-1;;;19442:18:1;;;19435:46;19498:18;;127645:71:0;19356:166:1;127645:71:0;127783:11;127791:2;127783:7;:11::i;:::-;127779:580;;;127882:15;127848:29;98693:3;127868:9;127848:29;:::i;:::-;-1:-1:-1;;;;;127825:19:0;;;;;;:13;:19;;;;;;:53;;;;:::i;:::-;127824:73;127815:95;;;;-1:-1:-1;;;127815:95:0;;;;;;;:::i;127779:580::-;127936:12;127943:4;127936:6;:12::i;:::-;127932:427;;;128033:15;127999:29;98693:3;128019:9;127999:29;:::i;:::-;-1:-1:-1;;;;;127979:16:0;;;;;;:12;:16;;;;;;:50;;;;:::i;127932:427::-;128204:15;128170:29;98693:3;128190:9;128170:29;:::i;:::-;-1:-1:-1;;;;;128147:19:0;;;;;;:13;:19;;;;;;:53;;;;:::i;:::-;128146:73;128137:95;;;;-1:-1:-1;;;128137:95:0;;;;;;;:::i;:::-;128315:15;128281:29;98693:3;128301:9;128281:29;:::i;:::-;-1:-1:-1;;;;;128261:16:0;;;;;;:12;:16;;;;;;:50;;;;:::i;:::-;128260:70;128251:92;;;;-1:-1:-1;;;128251:92:0;;;;;;;:::i;128610:965::-;128912:10;;;;;;;128908:660;;;128989:11;128997:2;128989:7;:11::i;:::-;128986:566;;;-1:-1:-1;;;;;74160:18:0;;129023:19;74160:18;;;;;;;;;;;;129241:10;;129226:25;;129223:125;;129294:17;129309:1;129294:11;:17;:::i;:::-;129284:6;:28;129276:52;;;;-1:-1:-1;;;129276:52:0;;16303:2:1;129276:52:0;;;16285:21:1;16342:2;16322:18;;;16315:30;-1:-1:-1;;;16361:18:1;;;16354:41;16412:18;;129276:52:0;16275:161:1;129276:52:0;129508:15;129479:12;;129494:9;129479:24;;;;:::i;:::-;-1:-1:-1;;;;;129456:19:0;;;;;;:13;:19;;;;;;:48;;;;:::i;:::-;129455:68;129446:90;;;;-1:-1:-1;;;129446:90:0;;10924:2:1;129446:90:0;;;10906:21:1;10963:1;10943:18;;;10936:29;-1:-1:-1;;;10981:18:1;;;10974:38;11029:18;;129446:90:0;10896:157:1;131326:395:0;131419:17;;;;131418:18;:48;;;;;131454:12;131461:4;131454:6;:12::i;:::-;131453:13;131418:48;:87;;;;-1:-1:-1;131483:22:0;;;;;;;131418:87;:129;;;;-1:-1:-1;;;;;;131523:24:0;;;;;;:18;:24;;;;;;;;131522:25;131418:129;:169;;;;-1:-1:-1;;;;;;131565:22:0;;;;;;:18;:22;;;;;;;;131564:23;131418:169;131400:314;;;131614:17;:24;;-1:-1:-1;;131614:24:0;131634:4;131614:24;;;131644;:22;:24::i;:::-;131683:17;:25;;-1:-1:-1;;131683:25:0;;;131326:395;;:::o;132921:1171::-;133029:10;133042:14;133049:6;133042;:14::i;:::-;133029:27;;133069:12;133100:7;133096:588;;;133124:30;133157:25;133168:6;133176:5;133157:10;:25::i;:::-;133124:58;;133231:11;:22;;;133206:11;:22;;;:47;;;;:::i;:::-;133199:54;-1:-1:-1;133273:8:0;;133270:403;;133325:11;:22;;;133304:17;;:43;;;;;;;:::i;:::-;;;;-1:-1:-1;;133387:22:0;;;;133366:17;:43;;:17;;:43;;133387:22;;133366:43;:::i;:::-;;;;-1:-1:-1;;133462:22:0;;;;133430:15;:54;;:28;;:54;;133462:22;;133430:54;:::i;:::-;;;;-1:-1:-1;;133535:22:0;;;;133503:28;:54;;:28;;:54;;133535:22;;133503:54;:::i;:::-;;;;-1:-1:-1;133578:44:0;;-1:-1:-1;133594:6:0;133610:4;133617;133578:15;:44::i;:::-;133643:14;133653:4;133643:14;;:::i;:::-;;;133270:403;133096:588;;133700:5;133696:332;;;-1:-1:-1;;;;;133722:23:0;;;;;;:12;:23;;;;;133748:15;133722:41;;133696:332;;;133784:18;133792:9;133784:7;:18::i;:::-;133781:247;;;-1:-1:-1;;;;;133819:21:0;;;;;;:13;:21;;;;;133843:15;133819:39;;133781:247;;;-1:-1:-1;;;;;133921:23:0;;;;;;;:12;:23;;;;;;;;133947:15;133921:41;;;;133977:21;;;;;:13;:21;;;;;:39;133781:247;134040:42;134056:6;134064:9;134075:6;134040:15;:42::i;:::-;132921:1171;;;;;;:::o;94267:239::-;94351:22;94359:4;94365:7;94351;:22::i;:::-;94347:152;;;94422:5;94390:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;94390:29:0;;;;;;;;;;:37;;-1:-1:-1;;94390:37:0;;;94447:40;70488:10;;94390:12;;94447:40;;94422:5;94447:40;94267:239;;:::o;56510:158::-;56583:4;56607:53;56615:3;-1:-1:-1;;;;;56635:23:0;;56607:7;:53::i;52871:120::-;52938:7;52965:3;:11;;52977:5;52965:18;;;;;;-1:-1:-1;;;52965:18:0;;;;;;;;;;;;;;;;;52958:25;;52871:120;;;;:::o;64652:451::-;64727:13;64753:19;64785:10;64789:6;64785:1;:10;:::i;:::-;:14;;64798:1;64785:14;:::i;:::-;64775:25;;;;;;-1:-1:-1;;;64775:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64775:25:0;;64753:47;;-1:-1:-1;;;64811:6:0;64818:1;64811:9;;;;;;-1:-1:-1;;;64811:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;64811:15:0;;;;;;;;;-1:-1:-1;;;64837:6:0;64844:1;64837:9;;;;;;-1:-1:-1;;;64837:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;64837:15:0;;;;;;;;-1:-1:-1;64868:9:0;64880:10;64884:6;64880:1;:10;:::i;:::-;:14;;64893:1;64880:14;:::i;:::-;64868:26;;64863:135;64900:1;64896;:5;64863:135;;;-1:-1:-1;;;64948:5:0;64956:3;64948:11;64935:25;;;;;-1:-1:-1;;;64935:25:0;;;;;;;;;;;;64923:6;64930:1;64923:9;;;;;;-1:-1:-1;;;64923:9:0;;;;;;;;;;;;:37;-1:-1:-1;;;;;64923:37:0;;;;;;;;-1:-1:-1;64985:1:0;64975:11;;;;;64903:3;;;:::i;:::-;;;64863:135;;;-1:-1:-1;65016:10:0;;65008:55;;;;-1:-1:-1;;;65008:55:0;;11260:2:1;65008:55:0;;;11242:21:1;;;11279:18;;;11272:30;11338:34;11318:18;;;11311:62;11390:18;;65008:55:0;11232:182:1;124136:1157:0;124222:12;98393:4;124237:12;124246:3;124237:6;:12;:::i;:::-;:28;;;;:::i;:::-;124222:43;-1:-1:-1;124270:13:0;124286;124222:43;124286:6;:13;:::i;:::-;124270:29;;124312:42;124328:4;124342;124349;124312:15;:42::i;:::-;124365:32;124381:4;124387:2;124391:5;124365:15;:32::i;:::-;124410:17;124442:12;124469;124500;124507:4;124500:6;:12::i;:::-;124496:564;;;124565:8;:21;124541;;:45;;124565:21;124541:45;:::i;:::-;124529:57;-1:-1:-1;124605:13:0;;124601:170;;124646:21;;:72;;124717:1;124646:72;;;124681:21;;124705:9;;124674:28;;:4;:28;:::i;:::-;:40;;;;:::i;:::-;124639:79;-1:-1:-1;124744:11:0;124639:79;124744:4;:11;:::i;:::-;124737:18;;124601:170;124496:564;;;124840:9;:22;124815;;:47;;124840:22;124815:47;:::i;:::-;124803:59;-1:-1:-1;124881:13:0;;124877:172;;124922:22;;:74;;124995:1;124922:74;;;124958:22;;124983:9;;124951:29;;:4;:29;:::i;:::-;:41;;;;:::i;:::-;124915:81;-1:-1:-1;125022:11:0;124915:81;125022:4;:11;:::i;:::-;125015:18;;124877:172;125076:13;;125072:213;;125127:4;125106:17;;:25;;;;;;;:::i;:::-;;;;;;;;125167:4;125146:17;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;;125186:15:0;:36;;125218:4;;125186:15;:28;;:36;;125218:4;;125186:36;:::i;:::-;;;;-1:-1:-1;;125237:28:0;:36;;125269:4;;125237:28;;;:36;;125269:4;;125237:36;:::i;:::-;;;;-1:-1:-1;;125072:213:0;124136:1157;;;;;;;;;:::o;118803:164::-;-1:-1:-1;;;;;118945:14:0;118855:4;118945:14;;;:8;:14;;;;;;;;;118803:164::o;119148:491::-;119242:12;119249:4;119242:6;:12::i;:::-;119238:394;;;119287:12;;119277:6;:22;;:50;;;-1:-1:-1;;;;;;119303:24:0;;;;;;:20;:24;;;;;;;;119277:50;119269:75;;;;-1:-1:-1;;;119269:75:0;;17657:2:1;119269:75:0;;;17639:21:1;17696:2;17676:18;;;17669:30;-1:-1:-1;;;17715:18:1;;;17708:42;17767:18;;119269:75:0;17629:162:1;119238:394:0;119367:11;119375:2;119367:7;:11::i;:::-;119363:269;;;119421:12;;119411:6;:22;;:52;;;-1:-1:-1;;;;;;119437:26:0;;;;;;:20;:26;;;;;;;;119411:52;119403:78;;;;-1:-1:-1;;;119403:78:0;;22170:2:1;119403:78:0;;;22152:21:1;22209:2;22189:18;;;22182:30;-1:-1:-1;;;22228:18:1;;;22221:43;22281:18;;119403:78:0;22142:163:1;119363:269:0;119535:12;;119525:6;:22;;:82;;;-1:-1:-1;;;;;;119552:26:0;;;;;;:20;:26;;;;;;;;;:54;;-1:-1:-1;;;;;;119582:24:0;;;;;;:20;:24;;;;;;;;119552:54;119517:103;;;;-1:-1:-1;;;119517:103:0;;12364:2:1;119517:103:0;;;12346:21:1;12403:1;12383:18;;;12376:29;-1:-1:-1;;;12421:18:1;;;12414:38;12469:18;;119517:103:0;12336:157:1;129581:1733:0;129678:4;129634:23;74160:18;;;;;;;;;;;129634:50;;129697:14;129734:17;;129714;;:37;;;;:::i;:::-;129697:54;-1:-1:-1;129775:20:0;;;:35;;-1:-1:-1;129799:11:0;;129775:35;:59;;;;129823:11;;129814:6;:20;129775:59;129772:73;;;129837:7;;;;129772:73;129859:16;129898:1;129878:17;;:21;:85;;129962:1;129878:85;;;129902:57;129957:1;129902:50;129945:6;129902:38;129922:17;;129902:15;:19;;:38;;;;:::i;:57::-;129859:104;-1:-1:-1;129974:26:0;130003:29;:15;129859:104;130003:19;:29::i;:::-;129974:58;-1:-1:-1;130122:21:0;130182:52;129974:58;130228:4;130182:17;:52::i;:::-;130291:22;130316:41;:21;130342:14;130316:25;:41::i;:::-;130291:66;;130393:18;130414:49;130456:6;130414:37;130433:17;;130414:14;:18;;:37;;;;:::i;:49::-;130393:70;-1:-1:-1;130474:12:0;130489:27;130393:70;130489:14;:27;:::i;:::-;130474:42;;130560:1;130540:17;;:21;:33;;;;;130572:1;130565:4;:8;130540:33;130537:484;;;130902:29;130916:8;130926:4;130902:13;:29::i;:::-;130952:63;130967:8;130977:4;130983:31;131005:8;130983:17;;:21;;:31;;;;:::i;:::-;130952:63;;;27199:25:1;;;27255:2;27240:18;;27233:34;;;;27283:18;;;27276:34;27187:2;27172:18;130952:63:0;;;;;;;130537:484;131092:22;;131084:59;;131070:9;;-1:-1:-1;;;;;131092:22:0;;131128:10;;131070:9;131084:59;131070:9;131084:59;131128:10;131092:22;131084:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;131173:17:0;;131159:50;;;26859:25:1;;;26915:2;26900:18;;26893:34;;;26970:14;;26963:22;26943:18;;;26936:50;131069:74:0;;-1:-1:-1;131159:50:0;;26847:2:1;26832:18;131159:50:0;;;;;;;-1:-1:-1;;131273:1:0;131253:17;:21;;;131285:17;:21;-1:-1:-1;;;;;;;129581:1733:0:o;120526:438::-;120596:30;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120596:30:0;120639:27;;;120702:37;120660:6;120733:5;120702:22;:37::i;:::-;120677:22;;;:62;120775:37;120798:6;120806:5;120775:22;:37::i;:::-;120750:22;;;:62;;;120866:22;;;;120855:62;;120750;120855:34;;:6;;:10;:34::i;:::-;:38;;:62::i;:::-;120833:19;;;:84;120526:438;;;;:::o;50687:1420::-;50753:4;50892:19;;;:12;;;:19;;;;;;50928:15;;50924:1176;;51303:21;51327:14;51340:1;51327:10;:14;:::i;:::-;51376:18;;51303:38;;-1:-1:-1;51356:17:0;;51376:22;;51397:1;;51376:22;:::i;:::-;51356:42;;51432:13;51419:9;:26;51415:405;;51466:17;51486:3;:11;;51498:9;51486:22;;;;;;-1:-1:-1;;;51486:22:0;;;;;;;;;;;;;;;;;51466:42;;51640:9;51611:3;:11;;51623:13;51611:26;;;;;;-1:-1:-1;;;51611:26:0;;;;;;;;;;;;;;;;;;;;:38;;;;51725:23;;;:12;;;:23;;;;;:36;;;51415:405;51901:17;;:3;;:17;;;-1:-1:-1;;;51901:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;51996:3;:12;;:19;52009:5;51996:19;;;;;;;;;;;51989:26;;;52039:4;52032:11;;;;;;;50924:1176;52083:5;52076:12;;;;;31045:98;31103:7;31130:5;31134:1;31130;:5;:::i;131729:589::-;131891:16;;;131905:1;131891:16;;;;;;;;131867:21;;131891:16;;;;;;;;;;-1:-1:-1;131891:16:0;131867:40;;131936:4;131918;131923:1;131918:7;;;;;;-1:-1:-1;;;131918:7:0;;;;;;;;;-1:-1:-1;;;;;131918:23:0;;;:7;;;;;;;;;;:23;;;;131962:13;;:20;;;-1:-1:-1;;;131962:20:0;;;;:13;;;;;:18;;:20;;;;;131918:7;;131962:20;;;;;:13;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;131952:4;131957:1;131952:7;;;;;;-1:-1:-1;;;131952:7:0;;;;;;;;;-1:-1:-1;;;;;131952:30:0;;;:7;;;;;;;;;:30;132027:13;;131995:60;;132012:4;;132027:13;132043:11;131995:8;:60::i;:::-;132094:13;;:216;;-1:-1:-1;;;132094:216:0;;-1:-1:-1;;;;;132094:13:0;;;;:64;;:216;;132173:11;;132094:13;;132243:4;;132262:7;;132284:15;;132094:216;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;131729:589;;;:::o;132326:514::-;132507:13;;132475:60;;132492:4;;-1:-1:-1;;;;;132507:13:0;132523:11;132475:8;:60::i;:::-;132578:13;;:254;;-1:-1:-1;;;132578:254:0;;132648:4;132578:254;;;8595:34:1;8645:18;;;8638:34;;;132578:13:0;8688:18:1;;;8681:34;;;8731:18;;;8724:34;98763:42:0;8774:19:1;;;8767:44;132806:15:0;8827:19:1;;;8820:35;-1:-1:-1;;;;;132578:13:0;;;;:29;;132615:9;;8529:19:1;;132578:254:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;120976:396::-;121058:7;121081:5;121078:287;;;121109:8;:21;:101;;121209:1;121109:101;;;121165:8;:21;121154:52;;98393:4;;121154:33;;:6;;:10;:33::i;:52::-;121102:108;;;;121078:287;121250:9;:22;:103;;121352:1;121250:103;;;121307:9;:22;121296:53;;98393:4;;121296:34;;:6;;:10;:34::i;121380:397::-;121462:7;121485:5;121482:288;;;121513:21;;:101;;121613:1;121513:101;;;121569:21;;121558:52;;98393:4;;121558:33;;:6;;:10;:33::i;121482:288::-;121654:22;;:103;;121756:1;121654:103;;;121711:22;;121700:53;;98393:4;;121700:34;;:6;;:10;:34::i;14:395:1:-;;;141:3;134:4;126:6;122:17;118:27;108:2;;166:8;156;149:26;108:2;-1:-1:-1;196:20:1;;239:18;228:30;;225:2;;;278:8;268;261:26;225:2;322:4;314:6;310:17;298:29;;382:3;375:4;365:6;362:1;358:14;350:6;346:27;342:38;339:47;336:2;;;399:1;396;389:12;336:2;98:311;;;;;:::o;414:257::-;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;591:9;578:23;610:31;635:5;610:31;:::i;676:261::-;;799:2;787:9;778:7;774:23;770:32;767:2;;;820:6;812;805:22;767:2;857:9;851:16;876:31;901:5;876:31;:::i;1212:398::-;;;1341:2;1329:9;1320:7;1316:23;1312:32;1309:2;;;1362:6;1354;1347:22;1309:2;1406:9;1393:23;1425:31;1450:5;1425:31;:::i;:::-;1475:5;-1:-1:-1;1532:2:1;1517:18;;1504:32;1545:33;1504:32;1545:33;:::i;:::-;1597:7;1587:17;;;1299:311;;;;;:::o;1615:466::-;;;;1761:2;1749:9;1740:7;1736:23;1732:32;1729:2;;;1782:6;1774;1767:22;1729:2;1826:9;1813:23;1845:31;1870:5;1845:31;:::i;:::-;1895:5;-1:-1:-1;1952:2:1;1937:18;;1924:32;1965:33;1924:32;1965:33;:::i;:::-;1719:362;;2017:7;;-1:-1:-1;;;2071:2:1;2056:18;;;;2043:32;;1719:362::o;2086:392::-;;;2212:2;2200:9;2191:7;2187:23;2183:32;2180:2;;;2233:6;2225;2218:22;2180:2;2277:9;2264:23;2296:31;2321:5;2296:31;:::i;:::-;2346:5;-1:-1:-1;2403:2:1;2388:18;;2375:32;2416:30;2375:32;2416:30;:::i;2483:325::-;;;2612:2;2600:9;2591:7;2587:23;2583:32;2580:2;;;2633:6;2625;2618:22;2580:2;2677:9;2664:23;2696:31;2721:5;2696:31;:::i;:::-;2746:5;2798:2;2783:18;;;;2770:32;;-1:-1:-1;;;2570:238:1:o;2813:586::-;;;;2974:2;2962:9;2953:7;2949:23;2945:32;2942:2;;;2995:6;2987;2980:22;2942:2;3040:9;3027:23;3073:18;3065:6;3062:30;3059:2;;;3110:6;3102;3095:22;3059:2;3154:70;3216:7;3207:6;3196:9;3192:22;3154:70;:::i;:::-;3243:8;;-1:-1:-1;3128:96:1;-1:-1:-1;;3328:2:1;3313:18;;3300:32;3341:28;3300:32;3341:28;:::i;:::-;3388:5;3378:15;;;2932:467;;;;;:::o;3404:525::-;;;;3568:2;3556:9;3547:7;3543:23;3539:32;3536:2;;;3589:6;3581;3574:22;3536:2;3634:9;3621:23;3667:18;3659:6;3656:30;3653:2;;;3704:6;3696;3689:22;3653:2;3748:70;3810:7;3801:6;3790:9;3786:22;3748:70;:::i;:::-;3837:8;;3722:96;;-1:-1:-1;3919:2:1;3904:18;;;;3891:32;;3526:403;-1:-1:-1;;;;3526:403:1:o;3934:251::-;;4043:2;4031:9;4022:7;4018:23;4014:32;4011:2;;;4064:6;4056;4049:22;4011:2;4108:9;4095:23;4127:28;4149:5;4127:28;:::i;4190:255::-;;4310:2;4298:9;4289:7;4285:23;4281:32;4278:2;;;4331:6;4323;4316:22;4278:2;4368:9;4362:16;4387:28;4409:5;4387:28;:::i;4450:190::-;;4562:2;4550:9;4541:7;4537:23;4533:32;4530:2;;;4583:6;4575;4568:22;4530:2;-1:-1:-1;4611:23:1;;4520:120;-1:-1:-1;4520:120:1:o;4645:325::-;;;4774:2;4762:9;4753:7;4749:23;4745:32;4742:2;;;4795:6;4787;4780:22;4742:2;4836:9;4823:23;4813:33;;4896:2;4885:9;4881:18;4868:32;4909:31;4934:5;4909:31;:::i;4975:258::-;;;5104:2;5092:9;5083:7;5079:23;5075:32;5072:2;;;5125:6;5117;5110:22;5072:2;-1:-1:-1;;5153:23:1;;;5223:2;5208:18;;;5195:32;;-1:-1:-1;5062:171:1:o;5238:306::-;;5349:2;5337:9;5328:7;5324:23;5320:32;5317:2;;;5370:6;5362;5355:22;5317:2;5401:23;;-1:-1:-1;;;;;;5453:32:1;;5443:43;;5433:2;;5505:6;5497;5490:22;5744:387;;;;5887:2;5875:9;5866:7;5862:23;5858:32;5855:2;;;5908:6;5900;5893:22;5855:2;5949:9;5936:23;5926:33;;6006:2;5995:9;5991:18;5978:32;5968:42;;6060:2;6049:9;6045:18;6032:32;6073:28;6095:5;6073:28;:::i;6136:316::-;;;;6293:2;6281:9;6272:7;6268:23;6264:32;6261:2;;;6314:6;6306;6299:22;6261:2;6348:9;6342:16;6332:26;;6398:2;6387:9;6383:18;6377:25;6367:35;;6442:2;6431:9;6427:18;6421:25;6411:35;;6251:201;;;;;:::o;6667:786::-;;7078:25;7073:3;7066:38;7133:6;7127:13;7149:62;7204:6;7199:2;7194:3;7190:12;7183:4;7175:6;7171:17;7149:62;:::i;:::-;-1:-1:-1;;;7270:2:1;7230:16;;;7262:11;;;7255:40;7320:13;;7342:63;7320:13;7391:2;7383:11;;7376:4;7364:17;;7342:63;:::i;:::-;7425:17;7444:2;7421:26;;7056:397;-1:-1:-1;;;;7056:397:1:o;10334:383::-;;10483:2;10472:9;10465:21;10515:6;10509:13;10558:6;10553:2;10542:9;10538:18;10531:34;10574:66;10633:6;10628:2;10617:9;10613:18;10608:2;10600:6;10596:15;10574:66;:::i;:::-;10701:2;10680:15;-1:-1:-1;;10676:29:1;10661:45;;;;10708:2;10657:54;;10455:262;-1:-1:-1;;10455:262:1:o;15083:331::-;15285:2;15267:21;;;15324:1;15304:18;;;15297:29;-1:-1:-1;;;15357:2:1;15342:18;;15335:38;15405:2;15390:18;;15257:157::o;25422:983::-;;25732:3;25721:9;25717:19;25763:6;25752:9;25745:25;25789:2;25827:6;25822:2;25811:9;25807:18;25800:34;25870:3;25865:2;25854:9;25850:18;25843:31;25894:6;25929;25923:13;25960:6;25952;25945:22;25998:3;25987:9;25983:19;25976:26;;26037:2;26029:6;26025:15;26011:29;;26058:4;26071:195;26085:6;26082:1;26079:13;26071:195;;;26150:13;;-1:-1:-1;;;;;26146:39:1;26134:52;;26241:15;;;;26206:12;;;;26182:1;26100:9;26071:195;;;-1:-1:-1;;;;;;;26322:32:1;;;;26317:2;26302:18;;26295:60;-1:-1:-1;;;26386:3:1;26371:19;26364:35;26283:3;25693:712;-1:-1:-1;;;25693:712:1:o;27510:128::-;;27581:1;27577:6;27574:1;27571:13;27568:2;;;27587:18;;:::i;:::-;-1:-1:-1;27623:9:1;;27558:80::o;27643:217::-;;27709:1;27699:2;;-1:-1:-1;;;27734:31:1;;27788:4;27785:1;27778:15;27816:4;27741:1;27806:15;27699:2;-1:-1:-1;27845:9:1;;27689:171::o;27865:453::-;27961:6;27984:5;27998:314;28047:1;28084:2;28074:8;28071:16;28061:2;;28091:5;;;28061:2;28132:4;28127:3;28123:14;28117:4;28114:24;28111:2;;;28141:18;;:::i;:::-;28191:2;28181:8;28177:17;28174:2;;;28206:16;;;;28174:2;28285:17;;;;;28245:15;;27998:314;;;27942:376;;;;;;;:::o;28323:139::-;;28412:44;-1:-1:-1;;28439:8:1;28433:4;28467:922;28551:8;28541:2;;-1:-1:-1;28592:1:1;28606:5;;28541:2;28640:4;28630:2;;-1:-1:-1;28677:1:1;28691:5;;28630:2;28722:4;28740:1;28735:59;;;;28808:1;28803:183;;;;28715:271;;28735:59;28765:1;28756:10;;28779:5;;;28803:183;28840:3;28830:8;28827:17;28824:2;;;28847:18;;:::i;:::-;28903:1;28893:8;28889:16;28880:25;;28931:3;28924:5;28921:14;28918:2;;;28938:18;;:::i;:::-;28971:5;;;28715:271;;29070:2;29060:8;29057:16;29051:3;29045:4;29042:13;29038:36;29032:2;29022:8;29019:16;29014:2;29008:4;29005:12;29001:35;28998:77;28995:2;;;-1:-1:-1;29107:19:1;;;29142:14;;;29139:2;;;29159:18;;:::i;:::-;29192:5;;28995:2;29239:42;29277:3;29267:8;29261:4;29258:1;29239:42;:::i;:::-;29314:6;29309:3;29305:16;29296:7;29293:29;29290:2;;;29325:18;;:::i;:::-;29363:20;;28531:858;-1:-1:-1;;;;28531:858:1:o;29394:168::-;;29500:1;29496;29492:6;29488:14;29485:1;29482:21;29477:1;29470:9;29463:17;29459:45;29456:2;;;29507:18;;:::i;:::-;-1:-1:-1;29547:9:1;;29446:116::o;29567:125::-;;29635:1;29632;29629:8;29626:2;;;29640:18;;:::i;:::-;-1:-1:-1;29677:9:1;;29616:76::o;29697:258::-;29769:1;29779:113;29793:6;29790:1;29787:13;29779:113;;;29869:11;;;29863:18;29850:11;;;29843:39;29815:2;29808:10;29779:113;;;29910:6;29907:1;29904:13;29901:2;;;-1:-1:-1;;29945:1:1;29927:16;;29920:27;29750:205::o;29960:136::-;;30027:5;30017:2;;30036:18;;:::i;:::-;-1:-1:-1;;;30072:18:1;;30007:89::o;30101:380::-;30180:1;30176:12;;;;30223;;;30244:2;;30298:4;30290:6;30286:17;30276:27;;30244:2;30351;30343:6;30340:14;30320:18;30317:38;30314:2;;;30397:10;30392:3;30388:20;30385:1;30378:31;30432:4;30429:1;30422:15;30460:4;30457:1;30450:15;30314:2;;30156:325;;;:::o;30486:135::-;;-1:-1:-1;;30546:17:1;;30543:2;;;30566:18;;:::i;:::-;-1:-1:-1;30613:1:1;30602:13;;30533:88::o;30626:127::-;30687:10;30682:3;30678:20;30675:1;30668:31;30718:4;30715:1;30708:15;30742:4;30739:1;30732:15;30758:131;-1:-1:-1;;;;;30833:31:1;;30823:42;;30813:2;;30879:1;30876;30869:12;30894:118;30980:5;30973:13;30966:21;30959:5;30956:32;30946:2;;31002:1;30999;30992:12

Swarm Source

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