ETH Price: $2,419.29 (+0.00%)

Token

Triiad (TRII)
 

Overview

Max Total Supply

27,539,299.515969171 TRII

Holders

286

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
0.157916109 TRII

Value
$0.00
0xeabdff0463b08401218d8766e08f9b2dceb9db02
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
TRIIAD

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-12-18
*/

// SPDX-License-Identifier: MIT
/*

████████╗██████╗░██╗██╗░█████╗░██████╗░
╚══██╔══╝██╔══██╗██║██║██╔══██╗██╔══██╗
░░░██║░░░██████╔╝██║██║███████║██║░░██║
░░░██║░░░██╔══██╗██║██║██╔══██║██║░░██║
░░░██║░░░██║░░██║██║██║██║░░██║██████╔╝
░░░╚═╝░░░╚═╝░░╚═╝╚═╝╚═╝╚═╝░░╚═╝╚═════╝░
      -https://triiad.finance-
*/

pragma solidity ^0.6.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 GSN 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 payable) {
        return msg.sender;
    }

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



/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

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

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

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

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

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



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

        return c;
    }

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

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

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

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

        return c;
    }

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

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

        return c;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

interface IUniswapV2Pair {
    function sync() external;
}

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
      address token,
      uint liquidity,
      uint amountTokenMin,
      uint amountETHMin,
      address to,
      uint deadline
    ) external returns (uint amountETH);
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    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;
}

pragma solidity ^0.6.12;

contract RewardWallet {
    constructor() public {
    }
}

contract Balancer {
    using SafeMath for uint256;
    IUniswapV2Router02 public immutable _uniswapV2Router;
    TRIIAD private _tokenContract;
    
    constructor(TRIIAD tokenContract, IUniswapV2Router02 uniswapV2Router) public {
        _tokenContract =tokenContract;
        _uniswapV2Router = uniswapV2Router;
    }
    
    receive() external payable {}
    
    function rebalance() external returns (uint256) { 
        swapEthForTokens(address(this).balance);
    }

    function swapEthForTokens(uint256 EthAmount) private {
        address[] memory uniswapPairPath = new address[](2);
        uniswapPairPath[0] = _uniswapV2Router.WETH();
        uniswapPairPath[1] = address(_tokenContract);

        _uniswapV2Router
            .swapExactETHForTokensSupportingFeeOnTransferTokens{value: EthAmount}(
                0,
                uniswapPairPath,
                address(this),
                block.timestamp
            );
    }
}

contract Swaper {
    using SafeMath for uint256;
    IUniswapV2Router02 public immutable _uniswapV2Router;
    TRIIAD private _tokenContract;
    
    constructor(TRIIAD tokenContract, IUniswapV2Router02 uniswapV2Router) public {
        _tokenContract = tokenContract;
        _uniswapV2Router = uniswapV2Router;
    }
    
    function swapTokens(address pairTokenAddress, uint256 tokenAmount) external {
        uint256 initialPairTokenBalance = IERC20(pairTokenAddress).balanceOf(address(this));
        swapTokensForTokens(pairTokenAddress, tokenAmount);
        uint256 newPairTokenBalance = IERC20(pairTokenAddress).balanceOf(address(this)).sub(initialPairTokenBalance);
        IERC20(pairTokenAddress).transfer(address(_tokenContract), newPairTokenBalance);
    }
    
    function swapTokensForTokens(address pairTokenAddress, uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(_tokenContract);
        path[1] = pairTokenAddress;

        _tokenContract.approve(address(_uniswapV2Router), tokenAmount);

        // make the swap
        _uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of pair token
            path,
            address(this),
            block.timestamp
        );
    }
}

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

    IUniswapV2Router02 public immutable _uniswapV2Router;

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

    mapping (address => bool) private _isExcluded;
    address[] private _excluded;
    address public _rewardWallet;
    uint256 public _initialRewardLockAmount;
    address public _uniswapETHPool;
    
    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal = 33000000e9;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 public _tFeeTotal;
    uint256 public _tBurnTotal;

    string private _name = 'Triiad';
    string private _symbol = 'TRII';
    uint8 private _decimals = 9;
    
    uint256 public _feeDecimals = 1;
    uint256 public _taxFee = 0;
    uint256 public _lockFee = 0;
    uint256 public _maxTxAmount = 2000000e9;
    uint256 public _minTokensBeforeSwap = 10000e9;
    uint256 public _minInterestForReward = 10e9;
    uint256 private _autoSwapCallerFee = 200e9;
    
    bool private inSwapAndLiquify;
    bool public swapAndLiquifyEnabled;
    bool public tradingEnabled;
    
    address private currentPairTokenAddress;
    address private currentPoolAddress;
    
    uint256 private _liquidityRemoveFee = 3;
    uint256 private _sorceryCallerFee = 5;
    uint256 private _minTokenForSorcery = 3300e9;
    uint256 private _lastSorcery;
    uint256 private _sorceryInterval = 3 hours;
    

    event FeeDecimalsUpdated(uint256 taxFeeDecimals);
    event TaxFeeUpdated(uint256 taxFee);
    event LockFeeUpdated(uint256 lockFee);
    event MaxTxAmountUpdated(uint256 maxTxAmount);
    event WhitelistUpdated(address indexed pairTokenAddress);
    event TradingEnabled();
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        address indexed pairTokenAddress,
        uint256 tokensSwapped,
        uint256 pairTokenReceived,
        uint256 tokensIntoLiqudity
    );
    event Rebalance(uint256 tokenBurnt);
    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event AutoSwapCallerFeeUpdated(uint256 autoSwapCallerFee);
    event MinInterestForRewardUpdated(uint256 minInterestForReward);
    event LiquidityRemoveFeeUpdated(uint256 liquidityRemoveFee);
    event SorceryCallerFeeUpdated(uint256 rebalnaceCallerFee);
    event MinTokenForSorceryUpdated(uint256 minRebalanceAmount);
    event SorceryIntervalUpdated(uint256 rebalanceInterval);

    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }
    
    Balancer public balancer;
    Swaper public swaper;

    constructor (IUniswapV2Router02 uniswapV2Router, uint256 initialRewardLockAmount) public {
        _lastSorcery = now;
        
        _uniswapV2Router = uniswapV2Router;
        _rewardWallet = address(new RewardWallet());
        _initialRewardLockAmount = initialRewardLockAmount;
        
        balancer = new Balancer(this, uniswapV2Router);
        swaper = new Swaper(this, uniswapV2Router);
        
        currentPoolAddress = IUniswapV2Factory(uniswapV2Router.factory())
            .createPair(address(this), uniswapV2Router.WETH());
        currentPairTokenAddress = uniswapV2Router.WETH();
        _uniswapETHPool = currentPoolAddress;
        
        updateSwapAndLiquifyEnabled(false);
        
        _rOwned[_msgSender()] = reflectionFromToken(_tTotal.sub(_initialRewardLockAmount), false);
        _rOwned[_rewardWallet] = reflectionFromToken(_initialRewardLockAmount, false);
        
        emit Transfer(address(0), _msgSender(), _tTotal.sub(_initialRewardLockAmount));
        emit Transfer(address(0), _rewardWallet, _initialRewardLockAmount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function excludeAccount(address account) external onlyOwner() {
        require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'Triiad: We can not exclude Uniswap router.');
        require(account != address(this), 'Triiad: We can not exclude contract self.');
        require(account != _rewardWallet, 'Triiad: We can not exclude reweard wallet.');
        require(!_isExcluded[account], "Triiad: Account is already excluded");
        
        if(_rOwned[account] > 0) {
            _tOwned[account] = tokenFromReflection(_rOwned[account]);
        }
        _isExcluded[account] = true;
        _excluded.push(account);
    }

    function includeAccount(address account) external onlyOwner() {
        require(_isExcluded[account], "Triiad: Account is already included");
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_excluded[i] == account) {
                _excluded[i] = _excluded[_excluded.length - 1];
                _tOwned[account] = 0;
                _isExcluded[account] = false;
                _excluded.pop();
                break;
            }
        }
    }

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

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

    function _transfer(address sender, address recipient, uint256 amount) private {
        require(sender != address(0), "Triiad: transfer from the zero address");
        require(recipient != address(0), "Triiad: transfer to the zero address");
        require(amount > 0, "Triiad: Transfer amount must be greater than zero");
        
        if(sender != owner() && recipient != owner() && !inSwapAndLiquify) {
            require(amount <= _maxTxAmount, "Triiad: Transfer amount exceeds the maxTxAmount.");
            if((_msgSender() == currentPoolAddress || _msgSender() == address(_uniswapV2Router)) && !tradingEnabled)
                require(false, "Triiad: trading is disabled.");
        }
        
        if(!inSwapAndLiquify) {
            uint256 lockedBalanceForPool = balanceOf(address(this));
            bool overMinTokenBalance = lockedBalanceForPool >= _minTokensBeforeSwap;
            if (
                overMinTokenBalance &&
                msg.sender != currentPoolAddress &&
                swapAndLiquifyEnabled
            ) {
                if(currentPairTokenAddress == _uniswapV2Router.WETH())
                    swapAndLiquifyForEth(lockedBalanceForPool);
                else
                    swapAndLiquifyForTokens(currentPairTokenAddress, lockedBalanceForPool);
            }
        }
        
        if (_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferFromExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && _isExcluded[recipient]) {
            _transferToExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferStandard(sender, recipient, amount);
        } else if (_isExcluded[sender] && _isExcluded[recipient]) {
            _transferBothExcluded(sender, recipient, amount);
        } else {
            _transferStandard(sender, recipient, amount);
        }
    }
    
    receive() external payable {}
    
    function swapAndLiquifyForEth(uint256 lockedBalanceForPool) private lockTheSwap {
        // split the contract balance except swapCallerFee into halves
        uint256 lockedForSwap = lockedBalanceForPool.sub(_autoSwapCallerFee);
        uint256 half = lockedForSwap.div(2);
        uint256 otherHalf = lockedForSwap.sub(half);

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

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

        // add liquidity to uniswap
        addLiquidityForEth(otherHalf, newBalance);
        
        emit SwapAndLiquify(_uniswapV2Router.WETH(), half, newBalance, otherHalf);
        
        _transfer(address(this), tx.origin, _autoSwapCallerFee);
        
        _sendRewardInterestToPool();
    }
    
    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = _uniswapV2Router.WETH();

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

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

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

        // add the liquidity
        _uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            address(this),
            block.timestamp
        );
    }
    
    function swapAndLiquifyForTokens(address pairTokenAddress, uint256 lockedBalanceForPool) private lockTheSwap {
        // split the contract balance except swapCallerFee into halves
        uint256 lockedForSwap = lockedBalanceForPool.sub(_autoSwapCallerFee);
        uint256 half = lockedForSwap.div(2);
        uint256 otherHalf = lockedForSwap.sub(half);
        
        _transfer(address(this), address(swaper), half);
        
        uint256 initialPairTokenBalance = IERC20(pairTokenAddress).balanceOf(address(this));
        
        // swap tokens for pairToken
        swaper.swapTokens(pairTokenAddress, half);
        
        uint256 newPairTokenBalance = IERC20(pairTokenAddress).balanceOf(address(this)).sub(initialPairTokenBalance);

        // add liquidity to uniswap
        addLiquidityForTokens(pairTokenAddress, otherHalf, newPairTokenBalance);
        
        emit SwapAndLiquify(pairTokenAddress, half, newPairTokenBalance, otherHalf);
        
        _transfer(address(this), tx.origin, _autoSwapCallerFee);
        
        _sendRewardInterestToPool();
    }

    function addLiquidityForTokens(address pairTokenAddress, uint256 tokenAmount, uint256 pairTokenAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(_uniswapV2Router), tokenAmount);
        IERC20(pairTokenAddress).approve(address(_uniswapV2Router), pairTokenAmount);

        // add the liquidity
        _uniswapV2Router.addLiquidity(
            address(this),
            pairTokenAddress,
            tokenAmount,
            pairTokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            address(this),
            block.timestamp
        );
    }

    function sorcery() public lockTheSwap {
        require(balanceOf(_msgSender()) >= _minTokenForSorcery, "Triiad: You have not enough Triiad to ");
        require(now > _lastSorcery + _sorceryInterval, 'Triiad: Too Soon.');
        
        _lastSorcery = now;

        uint256 amountToRemove = IERC20(_uniswapETHPool).balanceOf(address(this)).mul(_liquidityRemoveFee).div(100);

        removeLiquidityETH(amountToRemove);
        balancer.rebalance();

        uint256 tNewTokenBalance = balanceOf(address(balancer));
        uint256 tRewardForCaller = tNewTokenBalance.mul(_sorceryCallerFee).div(100);
        uint256 tBurn = tNewTokenBalance.sub(tRewardForCaller);
        
        uint256 currentRate =  _getRate();
        uint256 rBurn =  tBurn.mul(currentRate);
        
        _rOwned[_msgSender()] = _rOwned[_msgSender()].add(tRewardForCaller.mul(currentRate));
        _rOwned[address(balancer)] = 0;
        
        _tBurnTotal = _tBurnTotal.add(tBurn);
        _tTotal = _tTotal.sub(tBurn);
        _rTotal = _rTotal.sub(rBurn);

        emit Transfer(address(balancer), _msgSender(), tRewardForCaller);
        emit Transfer(address(balancer), address(0), tBurn);
        emit Rebalance(tBurn);
    }
    
    function removeLiquidityETH(uint256 lpAmount) private returns(uint ETHAmount) {
        IERC20(_uniswapETHPool).approve(address(_uniswapV2Router), lpAmount);
        (ETHAmount) = _uniswapV2Router
            .removeLiquidityETHSupportingFeeOnTransferTokens(
                address(this),
                lpAmount,
                0,
                0,
                address(balancer),
                block.timestamp
            );
    }

    function _sendRewardInterestToPool() private {
        uint256 tRewardInterest = balanceOf(_rewardWallet).sub(_initialRewardLockAmount);
        if(tRewardInterest > _minInterestForReward) {
            uint256 rRewardInterest = reflectionFromToken(tRewardInterest, false);
            _rOwned[currentPoolAddress] = _rOwned[currentPoolAddress].add(rRewardInterest);
            _rOwned[_rewardWallet] = _rOwned[_rewardWallet].sub(rRewardInterest);
            emit Transfer(_rewardWallet, currentPoolAddress, tRewardInterest);
            IUniswapV2Pair(currentPoolAddress).sync();
        }
    }

    function _transferStandard(address sender, address recipient, uint256 tAmount) private {
        uint256 currentRate =  _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLock) = _getValues(tAmount);
        uint256 rLock =  tLock.mul(currentRate);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        if(inSwapAndLiquify) {
            _rOwned[recipient] = _rOwned[recipient].add(rAmount);
            emit Transfer(sender, recipient, tAmount);
        } else {
            _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
            _rOwned[address(this)] = _rOwned[address(this)].add(rLock);
            _reflectFee(rFee, tFee);
            emit Transfer(sender, address(this), tLock);
            emit Transfer(sender, recipient, tTransferAmount);
        }
    }

    function _transferToExcluded(address sender, address recipient, uint256 tAmount) private {
        uint256 currentRate =  _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLock) = _getValues(tAmount);
        uint256 rLock =  tLock.mul(currentRate);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        if(inSwapAndLiquify) {
            _tOwned[recipient] = _tOwned[recipient].add(tAmount);
            _rOwned[recipient] = _rOwned[recipient].add(rAmount);
            emit Transfer(sender, recipient, tAmount);
        } else {
            _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
            _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
            _rOwned[address(this)] = _rOwned[address(this)].add(rLock);
            _reflectFee(rFee, tFee);
            emit Transfer(sender, address(this), tLock);
            emit Transfer(sender, recipient, tTransferAmount);
        }
    }

    function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private {
        uint256 currentRate =  _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLock) = _getValues(tAmount);
        uint256 rLock =  tLock.mul(currentRate);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        if(inSwapAndLiquify) {
            _rOwned[recipient] = _rOwned[recipient].add(rAmount);
            emit Transfer(sender, recipient, tAmount);
        } else {
            _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);   
            _rOwned[address(this)] = _rOwned[address(this)].add(rLock);
            _reflectFee(rFee, tFee);
            emit Transfer(sender, address(this), tLock);
            emit Transfer(sender, recipient, tTransferAmount);
        }
    }

    function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        uint256 currentRate =  _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLock) = _getValues(tAmount);
        uint256 rLock =  tLock.mul(currentRate);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        if(inSwapAndLiquify) {
            _tOwned[recipient] = _tOwned[recipient].add(tAmount);
            _rOwned[recipient] = _rOwned[recipient].add(rAmount);
            emit Transfer(sender, recipient, tAmount);
        }
        else {
            _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
            _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);   
            _rOwned[address(this)] = _rOwned[address(this)].add(rLock);
            _reflectFee(rFee, tFee);
            emit Transfer(sender, address(this), tLock);
            emit Transfer(sender, recipient, tTransferAmount);
        }
    }

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

    function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) {
        (uint256 tTransferAmount, uint256 tFee, uint256 tLock) = _getTValues(tAmount, _taxFee, _lockFee, _feeDecimals);
        uint256 currentRate =  _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tLock, currentRate);
        return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tLock);
    }

    function _getTValues(uint256 tAmount, uint256 taxFee, uint256 lockFee, uint256 feeDecimals) private pure returns (uint256, uint256, uint256) {
        uint256 tFee = tAmount.mul(taxFee).div(10**(feeDecimals + 2));
        uint256 tLockFee = tAmount.mul(lockFee).div(10**(feeDecimals + 2));
        uint256 tTransferAmount = tAmount.sub(tFee).sub(tLockFee);
        return (tTransferAmount, tFee, tLockFee);
    }

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

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

    function _getCurrentSupply() public view returns(uint256, uint256) {
        uint256 rSupply = _rTotal;
        uint256 tSupply = _tTotal;      
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal);
            rSupply = rSupply.sub(_rOwned[_excluded[i]]);
            tSupply = tSupply.sub(_tOwned[_excluded[i]]);
        }
        if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
        return (rSupply, tSupply);
    }
    
    function getCurrentPoolAddress() public view returns(address) {
        return currentPoolAddress;
    }
    
    function getCurrentPairTokenAddress() public view returns(address) {
        return currentPairTokenAddress;
    }

    function getLiquidityRemoveFee() public view returns(uint256) {
        return _liquidityRemoveFee;
    }
    
    function getSorceryCallerFee() public view returns(uint256) {
        return _sorceryCallerFee;
    }
    
    function getMinTokenForSorcery() public view returns(uint256) {
        return _minTokenForSorcery;
    }
    
    function getLastSorcery() public view returns(uint256) {
        return _lastSorcery;
    }
    
    function getSorceryInterval() public view returns(uint256) {
        return _sorceryInterval;
    }
    
    function _setFeeDecimals(uint256 feeDecimals) external onlyOwner() {
        require(feeDecimals >= 0 && feeDecimals <= 2, 'Triiad: fee decimals should be in 0 - 2');
        _feeDecimals = feeDecimals;
        emit FeeDecimalsUpdated(feeDecimals);
    }
    
    function _setTaxFee(uint256 taxFee) external onlyOwner() {
        require(taxFee >= 0  && taxFee <= 5 * 10 ** _feeDecimals, 'Triiad: taxFee should be in 0 - 5');
        _taxFee = taxFee;
        emit TaxFeeUpdated(taxFee);
    }
    
    function _setLockFee(uint256 lockFee) external onlyOwner() {
        require(lockFee >= 0 && lockFee <= 5 * 10 ** _feeDecimals, 'Triiad: lockFee should be in 0 - 5');
        _lockFee = lockFee;
        emit LockFeeUpdated(lockFee);
    }
    
    function _setMaxTxAmount(uint256 maxTxAmount) external onlyOwner() {
        require(maxTxAmount >= 500000e9 , 'Triiad: maxTxAmount should be greater than 500000e9');
        _maxTxAmount = maxTxAmount;
        emit MaxTxAmountUpdated(maxTxAmount);
    }
    
    function _setMinTokensBeforeSwap(uint256 minTokensBeforeSwap) external onlyOwner() {
        require(minTokensBeforeSwap >= 50e9 && minTokensBeforeSwap <= 25000e9 , 'Triiad: minTokenBeforeSwap should be in 50e9 - 25000e9');
        require(minTokensBeforeSwap > _autoSwapCallerFee , 'Triiad: minTokenBeforeSwap should be greater than autoSwapCallerFee');
        _minTokensBeforeSwap = minTokensBeforeSwap;
        emit MinTokensBeforeSwapUpdated(minTokensBeforeSwap);
    }
    
    function _setAutoSwapCallerFee(uint256 autoSwapCallerFee) external onlyOwner() {
        require(autoSwapCallerFee >= 1e9, 'Triiad: autoSwapCallerFee should be greater than 1e9');
        _autoSwapCallerFee = autoSwapCallerFee;
        emit AutoSwapCallerFeeUpdated(autoSwapCallerFee);
    }
    
    function _setMinInterestForReward(uint256 minInterestForReward) external onlyOwner() {
        _minInterestForReward = minInterestForReward;
        emit MinInterestForRewardUpdated(minInterestForReward);
    }
    
    function _setLiquidityRemoveFee(uint256 liquidityRemoveFee) external onlyOwner() {
        require(liquidityRemoveFee >= 1 && liquidityRemoveFee <= 10 , 'Triiad: liquidityRemoveFee should be in 1 - 10');
        _liquidityRemoveFee = liquidityRemoveFee;
        emit LiquidityRemoveFeeUpdated(liquidityRemoveFee);
    }
    
    function _setSorceryCallerFee(uint256 sorceryCallerFee) external onlyOwner() {
        require(sorceryCallerFee >= 1 && sorceryCallerFee <= 15 , 'Triiad: sorceryCallerFee should be in 1 - 15');
        _sorceryCallerFee = sorceryCallerFee;
        emit SorceryCallerFeeUpdated(sorceryCallerFee);
    }
    
    function _setMinTokenForSorcery(uint256 minTokenForSorcery) external onlyOwner() {
        _minTokenForSorcery = minTokenForSorcery;
        emit MinTokenForSorceryUpdated(minTokenForSorcery);
    }
    
    function _setSorceryInterval(uint256 sorceryInterval) external onlyOwner() {
        _sorceryInterval = sorceryInterval;
        emit SorceryIntervalUpdated(sorceryInterval);
    }
    
    function updateSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }
    
    function _updateWhitelist(address poolAddress, address pairTokenAddress) public onlyOwner() {
        require(poolAddress != address(0), "Triiad: Pool address is zero.");
        require(pairTokenAddress != address(0), "Triiad: Pair token address is zero.");
        require(pairTokenAddress != address(this), "Triiad: Pair token address self address.");
        require(pairTokenAddress != currentPairTokenAddress, "Triiad: Pair token address is same as current one.");
        
        currentPoolAddress = poolAddress;
        currentPairTokenAddress = pairTokenAddress;
        
        emit WhitelistUpdated(pairTokenAddress);
    }

    function _enableTrading() external onlyOwner() {
        tradingEnabled = true;
        TradingEnabled();
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract IUniswapV2Router02","name":"uniswapV2Router","type":"address"},{"internalType":"uint256","name":"initialRewardLockAmount","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"autoSwapCallerFee","type":"uint256"}],"name":"AutoSwapCallerFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"taxFeeDecimals","type":"uint256"}],"name":"FeeDecimalsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"liquidityRemoveFee","type":"uint256"}],"name":"LiquidityRemoveFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"lockFee","type":"uint256"}],"name":"LockFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxTxAmount","type":"uint256"}],"name":"MaxTxAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minInterestForReward","type":"uint256"}],"name":"MinInterestForRewardUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minRebalanceAmount","type":"uint256"}],"name":"MinTokenForSorceryUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenBurnt","type":"uint256"}],"name":"Rebalance","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"rebalnaceCallerFee","type":"uint256"}],"name":"SorceryCallerFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"rebalanceInterval","type":"uint256"}],"name":"SorceryIntervalUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pairTokenAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"pairTokenReceived","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":"uint256","name":"taxFee","type":"uint256"}],"name":"TaxFeeUpdated","type":"event"},{"anonymous":false,"inputs":[],"name":"TradingEnabled","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":"pairTokenAddress","type":"address"}],"name":"WhitelistUpdated","type":"event"},{"inputs":[],"name":"_enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_feeDecimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_getCurrentSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_getRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_initialRewardLockAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_lockFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_minInterestForReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_minTokensBeforeSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_rewardWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"autoSwapCallerFee","type":"uint256"}],"name":"_setAutoSwapCallerFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"feeDecimals","type":"uint256"}],"name":"_setFeeDecimals","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityRemoveFee","type":"uint256"}],"name":"_setLiquidityRemoveFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"lockFee","type":"uint256"}],"name":"_setLockFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxAmount","type":"uint256"}],"name":"_setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"minInterestForReward","type":"uint256"}],"name":"_setMinInterestForReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"minTokenForSorcery","type":"uint256"}],"name":"_setMinTokenForSorcery","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"_setMinTokensBeforeSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"sorceryCallerFee","type":"uint256"}],"name":"_setSorceryCallerFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"sorceryInterval","type":"uint256"}],"name":"_setSorceryInterval","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"_setTaxFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_tBurnTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tFeeTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_uniswapETHPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"poolAddress","type":"address"},{"internalType":"address","name":"pairTokenAddress","type":"address"}],"name":"_updateWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"balancer","outputs":[{"internalType":"contract Balancer","name":"","type":"address"}],"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":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getCurrentPairTokenAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentPoolAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLastSorcery","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLiquidityRemoveFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMinTokenForSorcery","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSorceryCallerFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSorceryInterval","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"uint256","name":"tAmount","type":"uint256"}],"name":"reflect","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sorcery","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swaper","outputs":[{"internalType":"contract Swaper","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"updateSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

66753d533d968000600955663c6c9b5c767fff19600a5560e0604052600660a081905265151c9a5a585960d21b60c09081526200004091600d919062000ccc565b50604080518082019091526004808252635452494960e01b60209092019182526200006e91600e9162000ccc565b50600f805460ff1916600917905560016010556000601181905560125566071afd498d00006013556509184e72a0006014556402540be400601555642e90edd00060165560036019556005601a556503005753e800601b55612a30601d55348015620000d957600080fd5b5060405162005e6b38038062005e6b83398181016040526040811015620000ff57600080fd5b508051602090910151600062000114620005f9565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35042601c556001600160601b0319606083901b16608052604051620001829062000d51565b604051809103906000f0801580156200019f573d6000803e3d6000fd5b50600680546001600160a01b0319166001600160a01b0392909216919091179055600781905560405130908390620001d79062000d5e565b6001600160a01b03928316815291166020820152604080519182900301906000f0801580156200020b573d6000803e3d6000fd5b50601e60006101000a8154816001600160a01b0302191690836001600160a01b031602179055503082604051620002429062000d6c565b6001600160a01b03928316815291166020820152604080519182900301906000f08015801562000276573d6000803e3d6000fd5b50601f60006101000a8154816001600160a01b0302191690836001600160a01b03160217905550816001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620002d757600080fd5b505afa158015620002ec573d6000803e3d6000fd5b505050506040513d60208110156200030357600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929187169163ad5c464891600480820192602092909190829003018186803b1580156200035457600080fd5b505afa15801562000369573d6000803e3d6000fd5b505050506040513d60208110156200038057600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b158015620003d357600080fd5b505af1158015620003e8573d6000803e3d6000fd5b505050506040513d6020811015620003ff57600080fd5b5051601880546001600160a01b0319166001600160a01b03928316179055604080516315ab88c960e31b815290519184169163ad5c464891600480820192602092909190829003018186803b1580156200045857600080fd5b505afa1580156200046d573d6000803e3d6000fd5b505050506040513d60208110156200048457600080fd5b5051601780546001600160a01b039283166301000000026301000000600160b81b0319909116179055601854600880546001600160a01b03191691909216179055620004d16000620005fd565b620004fb620004f3600754600954620006b960201b620029181790919060201c565b60006200070c565b6001600062000509620005f9565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506200054260075460006200070c60201b60201c565b6006546001600160a01b031660009081526001602052604090205562000567620005f9565b6001600160a01b031660006001600160a01b031660008051602062005e4b833981519152620005a9600754600954620006b960201b620029181790919060201c565b60408051918252519081900360200190a360065460075460408051918252516001600160a01b039092169160009160008051602062005e4b833981519152919081900360200190a3505062000d91565b3390565b62000607620005f9565b6000546001600160a01b039081169116146200066a576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60178054821515610100810261ff00199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b60006200070383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250620007a660201b60201c565b90505b92915050565b600060095483111562000766576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b8162000789576000620007798462000841565b5093955062000706945050505050565b6000620007968462000841565b5092955062000706945050505050565b60008184841115620008395760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015620007fd578181015183820152602001620007e3565b50505050905090810190601f1680156200082b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000806000806000806000620008698a601154601254601054620008ad60201b60201c565b9194509250905060006200087c6200095d565b905060008080620008908e87878762000990565b919e509c509a509598509396509194505050505091939550919395565b600080600080620008ec85600201600a0a620008d8898b62000a2260201b620029611790919060201c565b62000a8060201b620029ba1790919060201c565b905060006200091586600201600a0a620008d8898c62000a2260201b620029611790919060201c565b905060006200094c8262000938858d620006b960201b620029181790919060201c565b620006b960201b620029181790919060201c565b9a9299509097509095505050505050565b600080806200096b62000aca565b9150915062000989818362000a8060201b620029ba1790919060201c565b9250505090565b600080600080620009b0858962000a2260201b620029611790919060201c565b90506000620009ce868962000a2260201b620029611790919060201c565b90506000620009ec878962000a2260201b620029611790919060201c565b9050600062000a0f82620009388587620006b960201b620029181790919060201c565b939b939a50919850919650505050505050565b60008262000a335750600062000706565b8282028284828162000a4157fe5b0414620007035760405162461bcd60e51b815260040180806020018281038252602181526020018062005e2a6021913960400191505060405180910390fd5b60006200070383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525062000c6360201b60201c565b600a546009546000918291825b60055481101562000c205782600160006005848154811062000af557fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054118062000b5c575081600260006005848154811062000b3557fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1562000b7557600a546009549450945050505062000c5f565b62000bc4600160006005848154811062000b8b57fe5b60009182526020808320909101546001600160a01b03168352828101939093526040909101902054859162002918620006b9821b17901c565b925062000c15600260006005848154811062000bdc57fe5b60009182526020808320909101546001600160a01b03168352828101939093526040909101902054849162002918620006b9821b17901c565b915060010162000ad7565b5062000c3f600954600a5462000a8060201b620029ba1790919060201c565b82101562000c5957600a5460095493509350505062000c5f565b90925090505b9091565b6000818362000cb55760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315620007fd578181015183820152602001620007e3565b50600083858162000cc257fe5b0495945050505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062000d0f57805160ff191683800117855562000d3f565b8280016001018555821562000d3f579182015b8281111562000d3f57825182559160200191906001019062000d22565b5062000d4d92915062000d7a565b5090565b605c806200547683390190565b61036580620054d283390190565b6105f3806200583783390190565b5b8082111562000d4d576000815560010162000d7b565b60805160601c61468662000df0600039806116f25280612bc15280612c935280612e975280612f8a52806133b85280613b6d5280613c255280613c4c5280613d3a5280613da15280613f5b5280613f91528061407852506146866000f3fe60806040526004361061039b5760003560e01c806395d89b41116101dc578063d51486df11610102578063e563037e116100a0578063f2fde38b1161006f578063f2fde38b14610bbb578063f7505bc014610bee578063f84354f114610c18578063fb1eb14b14610c4b576103a2565b8063e563037e14610b34578063eed83f1114610b49578063efeb97e114610b5e578063f2cc0c1814610b88576103a2565b8063dc174937116100dc578063dc17493714610aa5578063dd62ed3e14610acf578063e4111dd314610b0a578063e4451f6614610b1f576103a2565b8063d51486df14610a2b578063d571389914610a55578063d73cf08014610a6a576103a2565b8063a457c2d71161017a578063c329581711610149578063c3295817146109a4578063c9e6da19146109b9578063cba0e996146109ce578063d421413b14610a01576103a2565b8063a457c2d714610908578063a4f4a76514610941578063a9059cbb14610956578063abcdf5ee1461098f576103a2565b80639cecf7b2116101b65780639cecf7b2146108885780639d6f83e4146108b25780639f9a4e7f146108c7578063a0ac5e19146108f3576103a2565b806395d89b4114610830578063963547041461084557806397a9d5601461085a576103a2565b80634a1e7726116102c15780636e14222c1161025f5780638aadb8091161022e5780638aadb809146107dc5780638b1bdcb2146107f15780638da5cb5b1461080657806394e107841461081b576103a2565b80636e14222c1461076a57806370a082311461077f578063715018a6146107b25780637d1db4a5146107c7576103a2565b806350c8c1cb1161029b57806350c8c1cb146106d0578063583e0568146106fa5780635880b8731461072b5780635afbfd3814610755576103a2565b80634a1e77261461067c5780634a74bb02146106a65780634ada218b146106bb576103a2565b80631bbae6e011610339578063313ce56711610308578063313ce567146105d157806339509351146105fc5780633b124fe7146106355780634549b0391461064a576103a2565b80631bbae6e01461051057806323b872dd1461053a57806326f5ccaa1461057d5780632d838119146105a7576103a2565b8063095ea7b311610375578063095ea7b3146104845780630e89319e146104d157806318160ddd146104e6578063185d374c146104fb576103a2565b8063053ab182146103a757806305e102d0146103d357806306fdde03146103fa576103a2565b366103a257005b600080fd5b3480156103b357600080fd5b506103d1600480360360208110156103ca57600080fd5b5035610c60565b005b3480156103df57600080fd5b506103e8610d3a565b60408051918252519081900360200190f35b34801561040657600080fd5b5061040f610d40565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610449578181015183820152602001610431565b50505050905090810190601f1680156104765780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561049057600080fd5b506104bd600480360360408110156104a757600080fd5b506001600160a01b038135169060200135610dd6565b604080519115158252519081900360200190f35b3480156104dd57600080fd5b506103d1610df4565b3480156104f257600080fd5b506103e861117a565b34801561050757600080fd5b506103e8611180565b34801561051c57600080fd5b506103d16004803603602081101561053357600080fd5b5035611186565b34801561054657600080fd5b506104bd6004803603606081101561055d57600080fd5b506001600160a01b0381358116916020810135909116906040013561125f565b34801561058957600080fd5b506103d1600480360360208110156105a057600080fd5b50356112e6565b3480156105b357600080fd5b506103e8600480360360208110156105ca57600080fd5b50356113c6565b3480156105dd57600080fd5b506105e6611428565b6040805160ff9092168252519081900360200190f35b34801561060857600080fd5b506104bd6004803603604081101561061f57600080fd5b506001600160a01b038135169060200135611431565b34801561064157600080fd5b506103e861147f565b34801561065657600080fd5b506103e86004803603604081101561066d57600080fd5b50803590602001351515611485565b34801561068857600080fd5b506103d16004803603602081101561069f57600080fd5b5035611517565b3480156106b257600080fd5b506104bd611640565b3480156106c757600080fd5b506104bd61164e565b3480156106dc57600080fd5b506103d1600480360360208110156106f357600080fd5b503561165d565b34801561070657600080fd5b5061070f6116f0565b604080516001600160a01b039092168252519081900360200190f35b34801561073757600080fd5b506103d16004803603602081101561074e57600080fd5b5035611714565b34801561076157600080fd5b5061070f6117ee565b34801561077657600080fd5b506103e8611804565b34801561078b57600080fd5b506103e8600480360360208110156107a257600080fd5b50356001600160a01b031661180a565b3480156107be57600080fd5b506103d161186c565b3480156107d357600080fd5b506103e861190e565b3480156107e857600080fd5b506103e8611914565b3480156107fd57600080fd5b5061070f61191a565b34801561081257600080fd5b5061070f611929565b34801561082757600080fd5b506103e8611938565b34801561083c57600080fd5b5061040f61195b565b34801561085157600080fd5b506103e86119bc565b34801561086657600080fd5b5061086f6119c2565b6040805192835260208301919091528051918290030190f35b34801561089457600080fd5b506103d1600480360360208110156108ab57600080fd5b5035611b25565b3480156108be57600080fd5b506103e8611bb8565b3480156108d357600080fd5b506103d1600480360360208110156108ea57600080fd5b50351515611bbe565b3480156108ff57600080fd5b506103d1611c65565b34801561091457600080fd5b506104bd6004803603604081101561092b57600080fd5b506001600160a01b038135169060200135611cf9565b34801561094d57600080fd5b5061070f611d61565b34801561096257600080fd5b506104bd6004803603604081101561097957600080fd5b506001600160a01b038135169060200135611d70565b34801561099b57600080fd5b506103e8611d84565b3480156109b057600080fd5b506103e8611d8a565b3480156109c557600080fd5b5061070f611d90565b3480156109da57600080fd5b506104bd600480360360208110156109f157600080fd5b50356001600160a01b0316611d9f565b348015610a0d57600080fd5b506103d160048036036020811015610a2457600080fd5b5035611dbd565b348015610a3757600080fd5b506103d160048036036020811015610a4e57600080fd5b5035611e9d565b348015610a6157600080fd5b506103e8611f77565b348015610a7657600080fd5b506103d160048036036040811015610a8d57600080fd5b506001600160a01b0381358116916020013516611f7d565b348015610ab157600080fd5b506103d160048036036020811015610ac857600080fd5b503561217d565b348015610adb57600080fd5b506103e860048036036040811015610af257600080fd5b506001600160a01b0381358116916020013516612210565b348015610b1657600080fd5b506103e861223b565b348015610b2b57600080fd5b506103e8612241565b348015610b4057600080fd5b5061070f612247565b348015610b5557600080fd5b5061070f612256565b348015610b6a57600080fd5b506103d160048036036020811015610b8157600080fd5b5035612265565b348015610b9457600080fd5b506103d160048036036020811015610bab57600080fd5b50356001600160a01b031661233b565b348015610bc757600080fd5b506103d160048036036020811015610bde57600080fd5b50356001600160a01b031661259c565b348015610bfa57600080fd5b506103d160048036036020811015610c1157600080fd5b5035612694565b348015610c2457600080fd5b506103d160048036036020811015610c3b57600080fd5b50356001600160a01b0316612767565b348015610c5757600080fd5b506103e8612912565b6000610c6a6129fc565b6001600160a01b03811660009081526004602052604090205490915060ff1615610cc55760405162461bcd60e51b815260040180806020018281038252603481526020018061429c6034913960400191505060405180910390fd5b6000610cd083612a00565b505050506001600160a01b038416600090815260016020526040902054919250610cfc91905082612918565b6001600160a01b038316600090815260016020526040902055600a54610d229082612918565b600a55600b54610d329084612a60565b600b55505050565b601d5490565b600d8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610dcc5780601f10610da157610100808354040283529160200191610dcc565b820191906000526020600020905b815481529060010190602001808311610daf57829003601f168201915b5050505050905090565b6000610dea610de36129fc565b8484612aba565b5060015b92915050565b6017805460ff19166001179055601b54610e14610e0f6129fc565b61180a565b1015610e515760405162461bcd60e51b81526004018080602001828103825260268152602001806144836026913960400191505060405180910390fd5b601d54601c54014211610e9f576040805162461bcd60e51b81526020600482015260116024820152702a3934b4b0b21d102a37b79029b7b7b71760791b604482015290519081900360640190fd5b42601c55601954600854604080516370a0823160e01b81523060048201529051600093610f3793606493610f31936001600160a01b03909216916370a0823191602480820192602092909190829003018186803b158015610eff57600080fd5b505afa158015610f13573d6000803e3d6000fd5b505050506040513d6020811015610f2957600080fd5b505190612961565b906129ba565b9050610f4281612ba6565b50601e60009054906101000a90046001600160a01b03166001600160a01b0316637d7c2a1c6040518163ffffffff1660e01b8152600401602060405180830381600087803b158015610f9357600080fd5b505af1158015610fa7573d6000803e3d6000fd5b505050506040513d6020811015610fbd57600080fd5b5050601e54600090610fd7906001600160a01b031661180a565b90506000610ff56064610f31601a548561296190919063ffffffff16565b905060006110038383612918565b9050600061100f611938565b9050600061101d8383612961565b905061105861102c8584612961565b600160006110386129fc565b6001600160a01b0316815260208101919091526040016000205490612a60565b600160006110646129fc565b6001600160a01b0390811682526020808301939093526040918201600090812094909455601e541683526001909152812055600c546110a39084612a60565b600c556009546110b39084612918565b600955600a546110c39082612918565b600a556110ce6129fc565b601e546040805187815290516001600160a01b039384169392909216916000805160206144a98339815191529181900360200190a3601e546040805185815290516000926001600160a01b0316916000805160206144a9833981519152919081900360200190a36040805184815290517f811d4760f1a92875eb76dbd3dc2359544b2f6a000ba5b78784c0b105b3469bd09181900360200190a150506017805460ff1916905550505050565b60095490565b600c5481565b61118e6129fc565b6000546001600160a01b039081169116146111de576040805162461bcd60e51b81526020600482018190526024820152600080516020614435833981519152604482015290519081900360640190fd5b6601c6bf526340008110156112245760405162461bcd60e51b815260040180806020018281038252603381526020018061458b6033913960400191505060405180910390fd5b60138190556040805182815290517f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf9181900360200190a150565b600061126c848484612d11565b6112dc846112786129fc565b6112d78560405180606001604052806028815260200161440d602891396001600160a01b038a166000908152600360205260408120906112b66129fc565b6001600160a01b0316815260208101919091526040016000205491906131b1565b612aba565b5060019392505050565b6112ee6129fc565b6000546001600160a01b0390811691161461133e576040805162461bcd60e51b81526020600482018190526024820152600080516020614435833981519152604482015290519081900360640190fd5b600181101580156113505750600a8111155b61138b5760405162461bcd60e51b815260040180806020018281038252602e815260200180614455602e913960400191505060405180910390fd5b60198190556040805182815290517f5be5e13332f5fe25d72958c9d03ce5cdb01b189670222a86673715d56e43ce2a9181900360200190a150565b6000600a548211156114095760405162461bcd60e51b815260040180806020018281038252603281526020018061426a6032913960400191505060405180910390fd5b6000611413611938565b905061141f83826129ba565b9150505b919050565b600f5460ff1690565b6000610dea61143e6129fc565b846112d7856003600061144f6129fc565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612a60565b60115481565b60006009548311156114de576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b816114fd5760006114ee84612a00565b50939550610dee945050505050565b600061150884612a00565b50929550610dee945050505050565b61151f6129fc565b6000546001600160a01b0390811691161461156f576040805162461bcd60e51b81526020600482018190526024820152600080516020614435833981519152604482015290519081900360640190fd5b640ba43b7400811015801561158a57506516bcc41e90008111155b6115c55760405162461bcd60e51b815260040180806020018281038252603681526020018061420a6036913960400191505060405180910390fd5b60165481116116055760405162461bcd60e51b815260040180806020018281038252604381526020018061411a6043913960600191505060405180910390fd5b60148190556040805182815290517f5948780118f41f7c4577ae4619d5cbd064057bd8562d9f7b7e60324053375c009181900360200190a150565b601754610100900460ff1681565b60175462010000900460ff1681565b6116656129fc565b6000546001600160a01b039081169116146116b5576040805162461bcd60e51b81526020600482018190526024820152600080516020614435833981519152604482015290519081900360640190fd5b601b8190556040805182815290517f8efbf50aa34f734fb611df4acb3218b73d24f58fca4df07ac4d1041afe75acf59181900360200190a150565b7f000000000000000000000000000000000000000000000000000000000000000081565b61171c6129fc565b6000546001600160a01b0390811691161461176c576040805162461bcd60e51b81526020600482018190526024820152600080516020614435833981519152604482015290519081900360640190fd5b601054600a0a6005028111156117b35760405162461bcd60e51b81526004018080602001828103825260218152602001806142d06021913960400191505060405180910390fd5b60118190556040805182815290517faa4b71ac29531fdea0ef1650c76ef91e3771dac25f4a4dd2a561ff3e0b9a5de29181900360200190a150565b601754630100000090046001600160a01b031690565b601a5490565b6001600160a01b03811660009081526004602052604081205460ff161561184a57506001600160a01b038116600090815260026020526040902054611423565b6001600160a01b038216600090815260016020526040902054610dee906113c6565b6118746129fc565b6000546001600160a01b039081169116146118c4576040805162461bcd60e51b81526020600482018190526024820152600080516020614435833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60135481565b60145481565b6008546001600160a01b031681565b6000546001600160a01b031690565b60008060006119456119c2565b909250905061195482826129ba565b9250505090565b600e8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610dcc5780601f10610da157610100808354040283529160200191610dcc565b60105481565b600a546009546000918291825b600554811015611af3578260016000600584815481106119eb57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611a505750816002600060058481548110611a2957fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15611a6757600a5460095494509450505050611b21565b611aa76001600060058481548110611a7b57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490612918565b9250611ae96002600060058481548110611abd57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390612918565b91506001016119cf565b50600954600a54611b03916129ba565b821015611b1b57600a54600954935093505050611b21565b90925090505b9091565b611b2d6129fc565b6000546001600160a01b03908116911614611b7d576040805162461bcd60e51b81526020600482018190526024820152600080516020614435833981519152604482015290519081900360640190fd5b601d8190556040805182815290517f0fe5ad11dcee6e055ee044a15baf78e67669c7922e9f431352e55b29c87037ef9181900360200190a150565b60125481565b611bc66129fc565b6000546001600160a01b03908116911614611c16576040805162461bcd60e51b81526020600482018190526024820152600080516020614435833981519152604482015290519081900360640190fd5b60178054821515610100810261ff00199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b611c6d6129fc565b6000546001600160a01b03908116911614611cbd576040805162461bcd60e51b81526020600482018190526024820152600080516020614435833981519152604482015290519081900360640190fd5b6017805462ff00001916620100001790556040517f799663458a5ef2936f7fa0c99b3336c69c25890f82974f04e811e5bb359186c790600090a1565b6000610dea611d066129fc565b846112d7856040518060600160405280602581526020016145e56025913960036000611d306129fc565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906131b1565b6006546001600160a01b031681565b6000610dea611d7d6129fc565b8484612d11565b601c5490565b60155481565b6018546001600160a01b031690565b6001600160a01b031660009081526004602052604090205460ff1690565b611dc56129fc565b6000546001600160a01b03908116911614611e15576040805162461bcd60e51b81526020600482018190526024820152600080516020614435833981519152604482015290519081900360640190fd5b60018110158015611e275750600f8111155b611e625760405162461bcd60e51b815260040180806020018281038252602c815260200180614367602c913960400191505060405180910390fd5b601a8190556040805182815290517fd218354a3d78eea806f743d60a43a45bae3dd98c6f26ce8b28a150c4352ca0189181900360200190a150565b611ea56129fc565b6000546001600160a01b03908116911614611ef5576040805162461bcd60e51b81526020600482018190526024820152600080516020614435833981519152604482015290519081900360640190fd5b601054600a0a600502811115611f3c5760405162461bcd60e51b815260040180806020018281038252602281526020018061462f6022913960400191505060405180910390fd5b60128190556040805182815290517fc9c3eda55e0c1d7fbf155eefd9be0dcbb00e86498e4a8c8efb530e71d390b9ad9181900360200190a150565b601b5490565b611f856129fc565b6000546001600160a01b03908116911614611fd5576040805162461bcd60e51b81526020600482018190526024820152600080516020614435833981519152604482015290519081900360640190fd5b6001600160a01b038216612030576040805162461bcd60e51b815260206004820152601d60248201527f5472696961643a20506f6f6c2061646472657373206973207a65726f2e000000604482015290519081900360640190fd5b6001600160a01b0381166120755760405162461bcd60e51b81526004018080602001828103825260238152602001806143446023913960400191505060405180910390fd5b6001600160a01b0381163014156120bd5760405162461bcd60e51b81526004018080602001828103825260288152602001806143c46028913960400191505060405180910390fd5b6017546001600160a01b0382811663010000009092041614156121115760405162461bcd60e51b81526004018080602001828103825260328152602001806144c96032913960400191505060405180910390fd5b601880546001600160a01b0319166001600160a01b0384811691909117909155601780546301000000600160b81b03191663010000009284169283021790556040517f86eba8651458cc924e4911e8a0a31258558de0474fdc43da05cea932cf130aad90600090a25050565b6121856129fc565b6000546001600160a01b039081169116146121d5576040805162461bcd60e51b81526020600482018190526024820152600080516020614435833981519152604482015290519081900360640190fd5b60158190556040805182815290517f4a20ec16ec9328712eee6894b6007fb2e5fc53c50ea4cd271fd9e792a996818e9181900360200190a150565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b60075481565b60195490565b601e546001600160a01b031681565b601f546001600160a01b031681565b61226d6129fc565b6000546001600160a01b039081169116146122bd576040805162461bcd60e51b81526020600482018190526024820152600080516020614435833981519152604482015290519081900360640190fd5b633b9aca008110156123005760405162461bcd60e51b81526004018080602001828103825260348152602001806141b06034913960400191505060405180910390fd5b60168190556040805182815290517f74272e6f6c75e19c6f48bb75e2724eb55e3e1726f8b81d97f1db21d22ead93dc9181900360200190a150565b6123436129fc565b6000546001600160a01b03908116911614612393576040805162461bcd60e51b81526020600482018190526024820152600080516020614435833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03821614156123ef5760405162461bcd60e51b815260040180806020018281038252602a815260200180614186602a913960400191505060405180910390fd5b6001600160a01b0381163014156124375760405162461bcd60e51b815260040180806020018281038252602981526020018061415d6029913960400191505060405180910390fd5b6006546001600160a01b03828116911614156124845760405162461bcd60e51b815260040180806020018281038252602a815260200180614240602a913960400191505060405180910390fd5b6001600160a01b03811660009081526004602052604090205460ff16156124dc5760405162461bcd60e51b81526004018080602001828103825260238152602001806145686023913960400191505060405180910390fd5b6001600160a01b03811660009081526001602052604090205415612536576001600160a01b03811660009081526001602052604090205461251c906113c6565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600460205260408120805460ff191660019081179091556005805491820181559091527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b0319169091179055565b6125a46129fc565b6000546001600160a01b039081169116146125f4576040805162461bcd60e51b81526020600482018190526024820152600080516020614435833981519152604482015290519081900360640190fd5b6001600160a01b0381166126395760405162461bcd60e51b81526004018080602001828103825260268152602001806141e46026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b61269c6129fc565b6000546001600160a01b039081169116146126ec576040805162461bcd60e51b81526020600482018190526024820152600080516020614435833981519152604482015290519081900360640190fd5b600281111561272c5760405162461bcd60e51b81526004018080602001828103825260278152602001806145be6027913960400191505060405180910390fd5b60108190556040805182815290517f1a7d0c0e85c956e4756c1a912c675c28814c419a7e8fc66c1f0512ea332fc1909181900360200190a150565b61276f6129fc565b6000546001600160a01b039081169116146127bf576040805162461bcd60e51b81526020600482018190526024820152600080516020614435833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff166128165760405162461bcd60e51b81526004018080602001828103825260238152602001806143216023913960400191505060405180910390fd5b60005b60055481101561290e57816001600160a01b03166005828154811061283a57fe5b6000918252602090912001546001600160a01b031614156129065760058054600019810190811061286757fe5b600091825260209091200154600580546001600160a01b03909216918390811061288d57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600490925220805460ff1916905560058054806128df57fe5b600082815260209020810160001990810180546001600160a01b031916905501905561290e565b600101612819565b5050565b600b5481565b600061295a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506131b1565b9392505050565b60008261297057506000610dee565b8282028284828161297d57fe5b041461295a5760405162461bcd60e51b81526004018080602001828103825260218152602001806143ec6021913960400191505060405180910390fd5b600061295a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613248565b3390565b6000806000806000806000806000612a208a6011546012546010546132ad565b9250925092506000612a30611938565b90506000806000612a438e878787613307565b919e509c509a509598509396509194505050505091939550919395565b60008282018381101561295a576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b038316612aff5760405162461bcd60e51b815260040180806020018281038252602581526020018061460a6025913960400191505060405180910390fd5b6001600160a01b038216612b445760405162461bcd60e51b81526004018080602001828103825260238152602001806145456023913960400191505060405180910390fd5b6001600160a01b03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6008546040805163095ea7b360e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081166004830152602482018590529151600093929092169163095ea7b39160448082019260209290919082900301818787803b158015612c1f57600080fd5b505af1158015612c33573d6000803e3d6000fd5b505050506040513d6020811015612c4957600080fd5b5050601e546040805163af2979eb60e01b815230600482015260248101859052600060448201819052606482018190526001600160a01b0393841660848301524260a483015291517f00000000000000000000000000000000000000000000000000000000000000009093169263af2979eb9260c480840193602093929083900390910190829087803b158015612cdf57600080fd5b505af1158015612cf3573d6000803e3d6000fd5b505050506040513d6020811015612d0957600080fd5b505192915050565b6001600160a01b038316612d565760405162461bcd60e51b815260040180806020018281038252602681526020018061451f6026913960400191505060405180910390fd5b6001600160a01b038216612d9b5760405162461bcd60e51b81526004018080602001828103825260248152602001806144fb6024913960400191505060405180910390fd5b60008111612dda5760405162461bcd60e51b81526004018080602001828103825260318152602001806143936031913960400191505060405180910390fd5b612de2611929565b6001600160a01b0316836001600160a01b031614158015612e1c5750612e06611929565b6001600160a01b0316826001600160a01b031614155b8015612e2b575060175460ff16155b15612f3957601354811115612e715760405162461bcd60e51b81526004018080602001828103825260308152602001806142f16030913960400191505060405180910390fd5b6018546001600160a01b0316612e856129fc565b6001600160a01b03161480612ed257507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316612ec76129fc565b6001600160a01b0316145b8015612ee7575060175462010000900460ff16155b15612f39576040805162461bcd60e51b815260206004820152601c60248201527f5472696961643a2074726164696e672069732064697361626c65642e00000000604482015290519081900360640190fd5b60175460ff16613058576000612f4e3061180a565b60145490915081108015908190612f7057506018546001600160a01b03163314155b8015612f835750601754610100900460ff165b15613055577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015612fe157600080fd5b505afa158015612ff5573d6000803e3d6000fd5b505050506040513d602081101561300b57600080fd5b5051601754630100000090046001600160a01b03908116911614156130385761303382613357565b613055565b60175461305590630100000090046001600160a01b0316836134ae565b50505b6001600160a01b03831660009081526004602052604090205460ff16801561309957506001600160a01b03821660009081526004602052604090205460ff16155b156130ae576130a98383836136f4565b6131ac565b6001600160a01b03831660009081526004602052604090205460ff161580156130ef57506001600160a01b03821660009081526004602052604090205460ff165b156130ff576130a98383836138f7565b6001600160a01b03831660009081526004602052604090205460ff1615801561314157506001600160a01b03821660009081526004602052604090205460ff16155b15613151576130a9838383613a24565b6001600160a01b03831660009081526004602052604090205460ff16801561319157506001600160a01b03821660009081526004602052604090205460ff165b156131a1576130a9838383613a89565b6131ac838383613a24565b505050565b600081848411156132405760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156132055781810151838201526020016131ed565b50505050905090810190601f1680156132325780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600081836132975760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156132055781810151838201526020016131ed565b5060008385816132a357fe5b0495945050505050565b60008080806132c660028601600a0a610f318a8a612961565b905060006132de60028701600a0a610f318b8a612961565b905060006132f6826132f08c86612918565b90612918565b9a9299509097509095505050505050565b60008080806133168886612961565b905060006133248887612961565b905060006133328888612961565b90506000613344826132f08686612918565b939b939a50919850919650505050505050565b6017805460ff19166001179055601654600090613375908390612918565b905060006133848260026129ba565b905060006133928383612918565b90504761339e83613b1d565b60006133aa4783612918565b90506133b68382613d34565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561340f57600080fd5b505afa158015613423573d6000803e3d6000fd5b505050506040513d602081101561343957600080fd5b5051604080518681526020810184905280820186905290516001600160a01b03909216917fa5edfeb09a3d7a0edab24279a4ca1c35b82bb038f8a7eb53339c904a217fe1f69181900360600190a26134943032601654612d11565b61349c613e1c565b50506017805460ff1916905550505050565b6017805460ff191660011790556016546000906134cc908390612918565b905060006134db8260026129ba565b905060006134e98383612918565b601f549091506135049030906001600160a01b031684612d11565b6000856001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561355357600080fd5b505afa158015613567573d6000803e3d6000fd5b505050506040513d602081101561357d57600080fd5b5051601f546040805163a114398d60e01b81526001600160a01b038a8116600483015260248201889052915193945091169163a114398d9160448082019260009290919082900301818387803b1580156135d657600080fd5b505af11580156135ea573d6000803e3d6000fd5b50505050600061367382886001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561364157600080fd5b505afa158015613655573d6000803e3d6000fd5b505050506040513d602081101561366b57600080fd5b505190612918565b9050613680878483613f55565b604080518581526020810183905280820185905290516001600160a01b038916917fa5edfeb09a3d7a0edab24279a4ca1c35b82bb038f8a7eb53339c904a217fe1f6919081900360600190a26136d93032601654612d11565b6136e1613e1c565b50506017805460ff191690555050505050565b60006136fe611938565b905060008060008060008061371288612a00565b9550955095509550955095506000613733888361296190919063ffffffff16565b6001600160a01b038c16600090815260026020526040902054909150613759908a612918565b6001600160a01b038c166000908152600260209081526040808320939093556001905220546137889088612918565b6001600160a01b038c1660009081526001602052604090205560175460ff1615613819576001600160a01b038a166000908152600160205260409020546137cf9088612a60565b6001600160a01b03808c166000818152600160209081526040918290209490945580518d815290519193928f16926000805160206144a983398151915292918290030190a36138ea565b6001600160a01b038a1660009081526001602052604090205461383c9087612a60565b6001600160a01b038b166000908152600160205260408082209290925530815220546138689082612a60565b3060009081526001602052604090205561388285846140f5565b60408051838152905130916001600160a01b038e16916000805160206144a98339815191529181900360200190a3896001600160a01b03168b6001600160a01b03166000805160206144a9833981519152866040518082815260200191505060405180910390a35b5050505050505050505050565b6000613901611938565b905060008060008060008061391588612a00565b9550955095509550955095506000613936888361296190919063ffffffff16565b6001600160a01b038c1660009081526001602052604090205490915061395c9088612918565b6001600160a01b038c1660009081526001602052604090205560175460ff16156139d2576001600160a01b038a166000908152600260205260409020546139a3908a612a60565b6001600160a01b038b166000908152600260209081526040808320939093556001905220546137cf9088612a60565b6001600160a01b038a166000908152600260205260409020546139f59085612a60565b6001600160a01b038b1660009081526002602090815260408083209390935560019052205461383c9087612a60565b6000613a2e611938565b9050600080600080600080613a4288612a00565b9550955095509550955095506000613a63888361296190919063ffffffff16565b6001600160a01b038c166000908152600160205260409020549091506137889088612918565b6000613a93611938565b9050600080600080600080613aa788612a00565b9550955095509550955095506000613ac8888361296190919063ffffffff16565b6001600160a01b038c16600090815260026020526040902054909150613aee908a612918565b6001600160a01b038c1660009081526002602090815260408083209390935560019052205461395c9088612918565b60408051600280825260608083018452926020830190803683370190505090503081600081518110613b4b57fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613bc457600080fd5b505afa158015613bd8573d6000803e3d6000fd5b505050506040513d6020811015613bee57600080fd5b5051815182906001908110613bff57fe5b60200260200101906001600160a01b031690816001600160a01b031681525050613c4a307f000000000000000000000000000000000000000000000000000000000000000084612aba565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015613cef578181015183820152602001613cd7565b505050509050019650505050505050600060405180830381600087803b158015613d1857600080fd5b505af1158015613d2c573d6000803e3d6000fd5b505050505050565b613d5f307f000000000000000000000000000000000000000000000000000000000000000084612aba565b6040805163f305d71960e01b8152306004820181905260248201859052600060448301819052606483015260848201524260a482015290516001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169163f305d71991849160c48082019260609290919082900301818588803b158015613deb57600080fd5b505af1158015613dff573d6000803e3d6000fd5b50505050506040513d6060811015613e1657600080fd5b50505050565b600754600654600091613e3b916132f0906001600160a01b031661180a565b9050601554811115613f52576000613e54826000611485565b6018546001600160a01b0316600090815260016020526040902054909150613e7c9082612a60565b6018546001600160a01b039081166000908152600160205260408082209390935560065490911681522054613eb19082612918565b600680546001600160a01b0390811660009081526001602090815260409182902094909455601854925481518781529151938316949216926000805160206144a9833981519152929181900390910190a3601860009054906101000a90046001600160a01b03166001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613d1857600080fd5b50565b613f80307f000000000000000000000000000000000000000000000000000000000000000084612aba565b826001600160a01b031663095ea7b37f0000000000000000000000000000000000000000000000000000000000000000836040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b158015613ff757600080fd5b505af115801561400b573d6000803e3d6000fd5b505050506040513d602081101561402157600080fd5b50506040805162e8e33760e81b815230600482018190526001600160a01b038681166024840152604483018690526064830185905260006084840181905260a4840181905260c48401929092524260e484015292517f00000000000000000000000000000000000000000000000000000000000000009093169263e8e3370092610104808201936060939283900390910190829087803b1580156140c457600080fd5b505af11580156140d8573d6000803e3d6000fd5b505050506040513d60608110156140ee57600080fd5b5050505050565b600a546141029083612918565b600a55600b546141129082612a60565b600b55505056fe5472696961643a206d696e546f6b656e4265666f7265537761702073686f756c642062652067726561746572207468616e206175746f5377617043616c6c65724665655472696961643a2057652063616e206e6f74206578636c75646520636f6e74726163742073656c662e5472696961643a2057652063616e206e6f74206578636c75646520556e697377617020726f757465722e5472696961643a206175746f5377617043616c6c65724665652073686f756c642062652067726561746572207468616e203165394f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573735472696961643a206d696e546f6b656e4265666f7265537761702073686f756c6420626520696e2035306539202d20323530303065395472696961643a2057652063616e206e6f74206578636c75646520726577656172642077616c6c65742e5472696961643a20416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e735472696961643a204578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e5472696961643a207461784665652073686f756c6420626520696e2030202d20355472696961643a205472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e5472696961643a204163636f756e7420697320616c726561647920696e636c756465645472696961643a205061697220746f6b656e2061646472657373206973207a65726f2e5472696961643a20736f726365727943616c6c65724665652073686f756c6420626520696e2031202d2031355472696961643a205472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f5472696961643a205061697220746f6b656e20616464726573732073656c6620616464726573732e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472696961643a206c697175696469747952656d6f76654665652073686f756c6420626520696e2031202d2031305472696961643a20596f752068617665206e6f7420656e6f7567682054726969616420746f20ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5472696961643a205061697220746f6b656e20616464726573732069732073616d652061732063757272656e74206f6e652e5472696961643a207472616e7366657220746f20746865207a65726f20616464726573735472696961643a207472616e736665722066726f6d20746865207a65726f20616464726573735472696961643a20617070726f766520746f20746865207a65726f20616464726573735472696961643a204163636f756e7420697320616c7265616479206578636c756465645472696961643a206d61785478416d6f756e742073686f756c642062652067726561746572207468616e2035303030303065395472696961643a2066656520646563696d616c732073686f756c6420626520696e2030202d203245524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f5472696961643a20617070726f76652066726f6d20746865207a65726f20616464726573735472696961643a206c6f636b4665652073686f756c6420626520696e2030202d2035a2646970667358221220a35f62de1f14d2b7c29963c6c5502bd501d0ba0bfdda89c24327935085f06af064736f6c634300060c00336080604052348015600f57600080fd5b50603f80601d6000396000f3fe6080604052600080fdfea2646970667358221220c6a8008156615dd72452b03677cb8e49b45af34c226d0bba4f152d5cb67d670e64736f6c634300060c003360a060405234801561001057600080fd5b506040516103653803806103658339818101604052604081101561003357600080fd5b508051602090910151600080546001600160a01b0319166001600160a01b03938416178155606082901b6001600160601b0319166080529116906102d99061008c9039806093528060e552806101c252506102d96000f3fe60806040526004361061002d5760003560e01c8063583e0568146100395780637d7c2a1c1461006a57610034565b3661003457005b600080fd5b34801561004557600080fd5b5061004e610091565b604080516001600160a01b039092168252519081900360200190f35b34801561007657600080fd5b5061007f6100b5565b60408051918252519081900360200190f35b7f000000000000000000000000000000000000000000000000000000000000000081565b60006100c0476100c3565b90565b60408051600280825260608083018452926020830190803683370190505090507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561013c57600080fd5b505afa158015610150573d6000803e3d6000fd5b505050506040513d602081101561016657600080fd5b50518151829060009061017557fe5b6001600160a01b0392831660209182029290920101526000548251911690829060019081106101a057fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663b6f9de958360008430426040518663ffffffff1660e01b81526004018085815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561025f578181015183820152602001610247565b50505050905001955050505050506000604051808303818588803b15801561028657600080fd5b505af115801561029a573d6000803e3d6000fd5b5050505050505056fea264697066735822122018233db6eafa474ef80774e909da286d1be3775774d7f2e81420cb2246b8d16864736f6c634300060c003360a060405234801561001057600080fd5b506040516105f33803806105f38339818101604052604081101561003357600080fd5b508051602090910151600080546001600160a01b0319166001600160a01b03938416178155606082901b6001600160601b0319166080529116906105669061008d903980608f52806102de52806103ac52506105666000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c8063583e05681461003b578063a114398d1461005f575b600080fd5b61004361008d565b604080516001600160a01b039092168252519081900360200190f35b61008b6004803603604081101561007557600080fd5b506001600160a01b0381351690602001356100b1565b005b7f000000000000000000000000000000000000000000000000000000000000000081565b6000826001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561010057600080fd5b505afa158015610114573d6000803e3d6000fd5b505050506040513d602081101561012a57600080fd5b50519050610138838361024a565b60006101bd82856001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561018b57600080fd5b505afa15801561019f573d6000803e3d6000fd5b505050506040513d60208110156101b557600080fd5b505190610450565b600080546040805163a9059cbb60e01b81526001600160a01b0392831660048201526024810185905290519394509087169263a9059cbb92604480840193602093929083900390910190829087803b15801561021857600080fd5b505af115801561022c573d6000803e3d6000fd5b505050506040513d602081101561024257600080fd5b505050505050565b604080516002808252606080830184529260208301908036833750506000805483519394506001600160a01b03169284925061028257fe5b60200260200101906001600160a01b031690816001600160a01b03168152505082816001815181106102b057fe5b6001600160a01b03928316602091820292909201810191909152600080546040805163095ea7b360e01b81527f000000000000000000000000000000000000000000000000000000000000000086166004820152602481018890529051919094169363095ea7b3936044808301949193928390030190829087803b15801561033757600080fd5b505af115801561034b573d6000803e3d6000fd5b505050506040513d602081101561036157600080fd5b5050604051635c11d79560e01b8152600481018381526000602483018190523060648401819052426084850181905260a060448601908152865160a487015286516001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001696635c11d795968a96958a95909490939192909160c490910190602087810191028083838b5b8381101561040a5781810151838201526020016103f2565b505050509050019650505050505050600060405180830381600087803b15801561043357600080fd5b505af1158015610447573d6000803e3d6000fd5b50505050505050565b600061049283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610499565b9392505050565b600081848411156105285760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156104ed5781810151838201526020016104d5565b50505050905090810190601f16801561051a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50505090039056fea2646970667358221220c5e67d6fb78ad5a42fec95cd1dee4c2213d9acc4790b5d91ce827c429c37b94364736f6c634300060c0033536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000000000000000000000000000000005dcaa8fe12000

Deployed Bytecode

0x60806040526004361061039b5760003560e01c806395d89b41116101dc578063d51486df11610102578063e563037e116100a0578063f2fde38b1161006f578063f2fde38b14610bbb578063f7505bc014610bee578063f84354f114610c18578063fb1eb14b14610c4b576103a2565b8063e563037e14610b34578063eed83f1114610b49578063efeb97e114610b5e578063f2cc0c1814610b88576103a2565b8063dc174937116100dc578063dc17493714610aa5578063dd62ed3e14610acf578063e4111dd314610b0a578063e4451f6614610b1f576103a2565b8063d51486df14610a2b578063d571389914610a55578063d73cf08014610a6a576103a2565b8063a457c2d71161017a578063c329581711610149578063c3295817146109a4578063c9e6da19146109b9578063cba0e996146109ce578063d421413b14610a01576103a2565b8063a457c2d714610908578063a4f4a76514610941578063a9059cbb14610956578063abcdf5ee1461098f576103a2565b80639cecf7b2116101b65780639cecf7b2146108885780639d6f83e4146108b25780639f9a4e7f146108c7578063a0ac5e19146108f3576103a2565b806395d89b4114610830578063963547041461084557806397a9d5601461085a576103a2565b80634a1e7726116102c15780636e14222c1161025f5780638aadb8091161022e5780638aadb809146107dc5780638b1bdcb2146107f15780638da5cb5b1461080657806394e107841461081b576103a2565b80636e14222c1461076a57806370a082311461077f578063715018a6146107b25780637d1db4a5146107c7576103a2565b806350c8c1cb1161029b57806350c8c1cb146106d0578063583e0568146106fa5780635880b8731461072b5780635afbfd3814610755576103a2565b80634a1e77261461067c5780634a74bb02146106a65780634ada218b146106bb576103a2565b80631bbae6e011610339578063313ce56711610308578063313ce567146105d157806339509351146105fc5780633b124fe7146106355780634549b0391461064a576103a2565b80631bbae6e01461051057806323b872dd1461053a57806326f5ccaa1461057d5780632d838119146105a7576103a2565b8063095ea7b311610375578063095ea7b3146104845780630e89319e146104d157806318160ddd146104e6578063185d374c146104fb576103a2565b8063053ab182146103a757806305e102d0146103d357806306fdde03146103fa576103a2565b366103a257005b600080fd5b3480156103b357600080fd5b506103d1600480360360208110156103ca57600080fd5b5035610c60565b005b3480156103df57600080fd5b506103e8610d3a565b60408051918252519081900360200190f35b34801561040657600080fd5b5061040f610d40565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610449578181015183820152602001610431565b50505050905090810190601f1680156104765780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561049057600080fd5b506104bd600480360360408110156104a757600080fd5b506001600160a01b038135169060200135610dd6565b604080519115158252519081900360200190f35b3480156104dd57600080fd5b506103d1610df4565b3480156104f257600080fd5b506103e861117a565b34801561050757600080fd5b506103e8611180565b34801561051c57600080fd5b506103d16004803603602081101561053357600080fd5b5035611186565b34801561054657600080fd5b506104bd6004803603606081101561055d57600080fd5b506001600160a01b0381358116916020810135909116906040013561125f565b34801561058957600080fd5b506103d1600480360360208110156105a057600080fd5b50356112e6565b3480156105b357600080fd5b506103e8600480360360208110156105ca57600080fd5b50356113c6565b3480156105dd57600080fd5b506105e6611428565b6040805160ff9092168252519081900360200190f35b34801561060857600080fd5b506104bd6004803603604081101561061f57600080fd5b506001600160a01b038135169060200135611431565b34801561064157600080fd5b506103e861147f565b34801561065657600080fd5b506103e86004803603604081101561066d57600080fd5b50803590602001351515611485565b34801561068857600080fd5b506103d16004803603602081101561069f57600080fd5b5035611517565b3480156106b257600080fd5b506104bd611640565b3480156106c757600080fd5b506104bd61164e565b3480156106dc57600080fd5b506103d1600480360360208110156106f357600080fd5b503561165d565b34801561070657600080fd5b5061070f6116f0565b604080516001600160a01b039092168252519081900360200190f35b34801561073757600080fd5b506103d16004803603602081101561074e57600080fd5b5035611714565b34801561076157600080fd5b5061070f6117ee565b34801561077657600080fd5b506103e8611804565b34801561078b57600080fd5b506103e8600480360360208110156107a257600080fd5b50356001600160a01b031661180a565b3480156107be57600080fd5b506103d161186c565b3480156107d357600080fd5b506103e861190e565b3480156107e857600080fd5b506103e8611914565b3480156107fd57600080fd5b5061070f61191a565b34801561081257600080fd5b5061070f611929565b34801561082757600080fd5b506103e8611938565b34801561083c57600080fd5b5061040f61195b565b34801561085157600080fd5b506103e86119bc565b34801561086657600080fd5b5061086f6119c2565b6040805192835260208301919091528051918290030190f35b34801561089457600080fd5b506103d1600480360360208110156108ab57600080fd5b5035611b25565b3480156108be57600080fd5b506103e8611bb8565b3480156108d357600080fd5b506103d1600480360360208110156108ea57600080fd5b50351515611bbe565b3480156108ff57600080fd5b506103d1611c65565b34801561091457600080fd5b506104bd6004803603604081101561092b57600080fd5b506001600160a01b038135169060200135611cf9565b34801561094d57600080fd5b5061070f611d61565b34801561096257600080fd5b506104bd6004803603604081101561097957600080fd5b506001600160a01b038135169060200135611d70565b34801561099b57600080fd5b506103e8611d84565b3480156109b057600080fd5b506103e8611d8a565b3480156109c557600080fd5b5061070f611d90565b3480156109da57600080fd5b506104bd600480360360208110156109f157600080fd5b50356001600160a01b0316611d9f565b348015610a0d57600080fd5b506103d160048036036020811015610a2457600080fd5b5035611dbd565b348015610a3757600080fd5b506103d160048036036020811015610a4e57600080fd5b5035611e9d565b348015610a6157600080fd5b506103e8611f77565b348015610a7657600080fd5b506103d160048036036040811015610a8d57600080fd5b506001600160a01b0381358116916020013516611f7d565b348015610ab157600080fd5b506103d160048036036020811015610ac857600080fd5b503561217d565b348015610adb57600080fd5b506103e860048036036040811015610af257600080fd5b506001600160a01b0381358116916020013516612210565b348015610b1657600080fd5b506103e861223b565b348015610b2b57600080fd5b506103e8612241565b348015610b4057600080fd5b5061070f612247565b348015610b5557600080fd5b5061070f612256565b348015610b6a57600080fd5b506103d160048036036020811015610b8157600080fd5b5035612265565b348015610b9457600080fd5b506103d160048036036020811015610bab57600080fd5b50356001600160a01b031661233b565b348015610bc757600080fd5b506103d160048036036020811015610bde57600080fd5b50356001600160a01b031661259c565b348015610bfa57600080fd5b506103d160048036036020811015610c1157600080fd5b5035612694565b348015610c2457600080fd5b506103d160048036036020811015610c3b57600080fd5b50356001600160a01b0316612767565b348015610c5757600080fd5b506103e8612912565b6000610c6a6129fc565b6001600160a01b03811660009081526004602052604090205490915060ff1615610cc55760405162461bcd60e51b815260040180806020018281038252603481526020018061429c6034913960400191505060405180910390fd5b6000610cd083612a00565b505050506001600160a01b038416600090815260016020526040902054919250610cfc91905082612918565b6001600160a01b038316600090815260016020526040902055600a54610d229082612918565b600a55600b54610d329084612a60565b600b55505050565b601d5490565b600d8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610dcc5780601f10610da157610100808354040283529160200191610dcc565b820191906000526020600020905b815481529060010190602001808311610daf57829003601f168201915b5050505050905090565b6000610dea610de36129fc565b8484612aba565b5060015b92915050565b6017805460ff19166001179055601b54610e14610e0f6129fc565b61180a565b1015610e515760405162461bcd60e51b81526004018080602001828103825260268152602001806144836026913960400191505060405180910390fd5b601d54601c54014211610e9f576040805162461bcd60e51b81526020600482015260116024820152702a3934b4b0b21d102a37b79029b7b7b71760791b604482015290519081900360640190fd5b42601c55601954600854604080516370a0823160e01b81523060048201529051600093610f3793606493610f31936001600160a01b03909216916370a0823191602480820192602092909190829003018186803b158015610eff57600080fd5b505afa158015610f13573d6000803e3d6000fd5b505050506040513d6020811015610f2957600080fd5b505190612961565b906129ba565b9050610f4281612ba6565b50601e60009054906101000a90046001600160a01b03166001600160a01b0316637d7c2a1c6040518163ffffffff1660e01b8152600401602060405180830381600087803b158015610f9357600080fd5b505af1158015610fa7573d6000803e3d6000fd5b505050506040513d6020811015610fbd57600080fd5b5050601e54600090610fd7906001600160a01b031661180a565b90506000610ff56064610f31601a548561296190919063ffffffff16565b905060006110038383612918565b9050600061100f611938565b9050600061101d8383612961565b905061105861102c8584612961565b600160006110386129fc565b6001600160a01b0316815260208101919091526040016000205490612a60565b600160006110646129fc565b6001600160a01b0390811682526020808301939093526040918201600090812094909455601e541683526001909152812055600c546110a39084612a60565b600c556009546110b39084612918565b600955600a546110c39082612918565b600a556110ce6129fc565b601e546040805187815290516001600160a01b039384169392909216916000805160206144a98339815191529181900360200190a3601e546040805185815290516000926001600160a01b0316916000805160206144a9833981519152919081900360200190a36040805184815290517f811d4760f1a92875eb76dbd3dc2359544b2f6a000ba5b78784c0b105b3469bd09181900360200190a150506017805460ff1916905550505050565b60095490565b600c5481565b61118e6129fc565b6000546001600160a01b039081169116146111de576040805162461bcd60e51b81526020600482018190526024820152600080516020614435833981519152604482015290519081900360640190fd5b6601c6bf526340008110156112245760405162461bcd60e51b815260040180806020018281038252603381526020018061458b6033913960400191505060405180910390fd5b60138190556040805182815290517f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf9181900360200190a150565b600061126c848484612d11565b6112dc846112786129fc565b6112d78560405180606001604052806028815260200161440d602891396001600160a01b038a166000908152600360205260408120906112b66129fc565b6001600160a01b0316815260208101919091526040016000205491906131b1565b612aba565b5060019392505050565b6112ee6129fc565b6000546001600160a01b0390811691161461133e576040805162461bcd60e51b81526020600482018190526024820152600080516020614435833981519152604482015290519081900360640190fd5b600181101580156113505750600a8111155b61138b5760405162461bcd60e51b815260040180806020018281038252602e815260200180614455602e913960400191505060405180910390fd5b60198190556040805182815290517f5be5e13332f5fe25d72958c9d03ce5cdb01b189670222a86673715d56e43ce2a9181900360200190a150565b6000600a548211156114095760405162461bcd60e51b815260040180806020018281038252603281526020018061426a6032913960400191505060405180910390fd5b6000611413611938565b905061141f83826129ba565b9150505b919050565b600f5460ff1690565b6000610dea61143e6129fc565b846112d7856003600061144f6129fc565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612a60565b60115481565b60006009548311156114de576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b816114fd5760006114ee84612a00565b50939550610dee945050505050565b600061150884612a00565b50929550610dee945050505050565b61151f6129fc565b6000546001600160a01b0390811691161461156f576040805162461bcd60e51b81526020600482018190526024820152600080516020614435833981519152604482015290519081900360640190fd5b640ba43b7400811015801561158a57506516bcc41e90008111155b6115c55760405162461bcd60e51b815260040180806020018281038252603681526020018061420a6036913960400191505060405180910390fd5b60165481116116055760405162461bcd60e51b815260040180806020018281038252604381526020018061411a6043913960600191505060405180910390fd5b60148190556040805182815290517f5948780118f41f7c4577ae4619d5cbd064057bd8562d9f7b7e60324053375c009181900360200190a150565b601754610100900460ff1681565b60175462010000900460ff1681565b6116656129fc565b6000546001600160a01b039081169116146116b5576040805162461bcd60e51b81526020600482018190526024820152600080516020614435833981519152604482015290519081900360640190fd5b601b8190556040805182815290517f8efbf50aa34f734fb611df4acb3218b73d24f58fca4df07ac4d1041afe75acf59181900360200190a150565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b61171c6129fc565b6000546001600160a01b0390811691161461176c576040805162461bcd60e51b81526020600482018190526024820152600080516020614435833981519152604482015290519081900360640190fd5b601054600a0a6005028111156117b35760405162461bcd60e51b81526004018080602001828103825260218152602001806142d06021913960400191505060405180910390fd5b60118190556040805182815290517faa4b71ac29531fdea0ef1650c76ef91e3771dac25f4a4dd2a561ff3e0b9a5de29181900360200190a150565b601754630100000090046001600160a01b031690565b601a5490565b6001600160a01b03811660009081526004602052604081205460ff161561184a57506001600160a01b038116600090815260026020526040902054611423565b6001600160a01b038216600090815260016020526040902054610dee906113c6565b6118746129fc565b6000546001600160a01b039081169116146118c4576040805162461bcd60e51b81526020600482018190526024820152600080516020614435833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60135481565b60145481565b6008546001600160a01b031681565b6000546001600160a01b031690565b60008060006119456119c2565b909250905061195482826129ba565b9250505090565b600e8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610dcc5780601f10610da157610100808354040283529160200191610dcc565b60105481565b600a546009546000918291825b600554811015611af3578260016000600584815481106119eb57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611a505750816002600060058481548110611a2957fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15611a6757600a5460095494509450505050611b21565b611aa76001600060058481548110611a7b57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490612918565b9250611ae96002600060058481548110611abd57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390612918565b91506001016119cf565b50600954600a54611b03916129ba565b821015611b1b57600a54600954935093505050611b21565b90925090505b9091565b611b2d6129fc565b6000546001600160a01b03908116911614611b7d576040805162461bcd60e51b81526020600482018190526024820152600080516020614435833981519152604482015290519081900360640190fd5b601d8190556040805182815290517f0fe5ad11dcee6e055ee044a15baf78e67669c7922e9f431352e55b29c87037ef9181900360200190a150565b60125481565b611bc66129fc565b6000546001600160a01b03908116911614611c16576040805162461bcd60e51b81526020600482018190526024820152600080516020614435833981519152604482015290519081900360640190fd5b60178054821515610100810261ff00199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b611c6d6129fc565b6000546001600160a01b03908116911614611cbd576040805162461bcd60e51b81526020600482018190526024820152600080516020614435833981519152604482015290519081900360640190fd5b6017805462ff00001916620100001790556040517f799663458a5ef2936f7fa0c99b3336c69c25890f82974f04e811e5bb359186c790600090a1565b6000610dea611d066129fc565b846112d7856040518060600160405280602581526020016145e56025913960036000611d306129fc565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906131b1565b6006546001600160a01b031681565b6000610dea611d7d6129fc565b8484612d11565b601c5490565b60155481565b6018546001600160a01b031690565b6001600160a01b031660009081526004602052604090205460ff1690565b611dc56129fc565b6000546001600160a01b03908116911614611e15576040805162461bcd60e51b81526020600482018190526024820152600080516020614435833981519152604482015290519081900360640190fd5b60018110158015611e275750600f8111155b611e625760405162461bcd60e51b815260040180806020018281038252602c815260200180614367602c913960400191505060405180910390fd5b601a8190556040805182815290517fd218354a3d78eea806f743d60a43a45bae3dd98c6f26ce8b28a150c4352ca0189181900360200190a150565b611ea56129fc565b6000546001600160a01b03908116911614611ef5576040805162461bcd60e51b81526020600482018190526024820152600080516020614435833981519152604482015290519081900360640190fd5b601054600a0a600502811115611f3c5760405162461bcd60e51b815260040180806020018281038252602281526020018061462f6022913960400191505060405180910390fd5b60128190556040805182815290517fc9c3eda55e0c1d7fbf155eefd9be0dcbb00e86498e4a8c8efb530e71d390b9ad9181900360200190a150565b601b5490565b611f856129fc565b6000546001600160a01b03908116911614611fd5576040805162461bcd60e51b81526020600482018190526024820152600080516020614435833981519152604482015290519081900360640190fd5b6001600160a01b038216612030576040805162461bcd60e51b815260206004820152601d60248201527f5472696961643a20506f6f6c2061646472657373206973207a65726f2e000000604482015290519081900360640190fd5b6001600160a01b0381166120755760405162461bcd60e51b81526004018080602001828103825260238152602001806143446023913960400191505060405180910390fd5b6001600160a01b0381163014156120bd5760405162461bcd60e51b81526004018080602001828103825260288152602001806143c46028913960400191505060405180910390fd5b6017546001600160a01b0382811663010000009092041614156121115760405162461bcd60e51b81526004018080602001828103825260328152602001806144c96032913960400191505060405180910390fd5b601880546001600160a01b0319166001600160a01b0384811691909117909155601780546301000000600160b81b03191663010000009284169283021790556040517f86eba8651458cc924e4911e8a0a31258558de0474fdc43da05cea932cf130aad90600090a25050565b6121856129fc565b6000546001600160a01b039081169116146121d5576040805162461bcd60e51b81526020600482018190526024820152600080516020614435833981519152604482015290519081900360640190fd5b60158190556040805182815290517f4a20ec16ec9328712eee6894b6007fb2e5fc53c50ea4cd271fd9e792a996818e9181900360200190a150565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b60075481565b60195490565b601e546001600160a01b031681565b601f546001600160a01b031681565b61226d6129fc565b6000546001600160a01b039081169116146122bd576040805162461bcd60e51b81526020600482018190526024820152600080516020614435833981519152604482015290519081900360640190fd5b633b9aca008110156123005760405162461bcd60e51b81526004018080602001828103825260348152602001806141b06034913960400191505060405180910390fd5b60168190556040805182815290517f74272e6f6c75e19c6f48bb75e2724eb55e3e1726f8b81d97f1db21d22ead93dc9181900360200190a150565b6123436129fc565b6000546001600160a01b03908116911614612393576040805162461bcd60e51b81526020600482018190526024820152600080516020614435833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03821614156123ef5760405162461bcd60e51b815260040180806020018281038252602a815260200180614186602a913960400191505060405180910390fd5b6001600160a01b0381163014156124375760405162461bcd60e51b815260040180806020018281038252602981526020018061415d6029913960400191505060405180910390fd5b6006546001600160a01b03828116911614156124845760405162461bcd60e51b815260040180806020018281038252602a815260200180614240602a913960400191505060405180910390fd5b6001600160a01b03811660009081526004602052604090205460ff16156124dc5760405162461bcd60e51b81526004018080602001828103825260238152602001806145686023913960400191505060405180910390fd5b6001600160a01b03811660009081526001602052604090205415612536576001600160a01b03811660009081526001602052604090205461251c906113c6565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600460205260408120805460ff191660019081179091556005805491820181559091527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b0319169091179055565b6125a46129fc565b6000546001600160a01b039081169116146125f4576040805162461bcd60e51b81526020600482018190526024820152600080516020614435833981519152604482015290519081900360640190fd5b6001600160a01b0381166126395760405162461bcd60e51b81526004018080602001828103825260268152602001806141e46026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b61269c6129fc565b6000546001600160a01b039081169116146126ec576040805162461bcd60e51b81526020600482018190526024820152600080516020614435833981519152604482015290519081900360640190fd5b600281111561272c5760405162461bcd60e51b81526004018080602001828103825260278152602001806145be6027913960400191505060405180910390fd5b60108190556040805182815290517f1a7d0c0e85c956e4756c1a912c675c28814c419a7e8fc66c1f0512ea332fc1909181900360200190a150565b61276f6129fc565b6000546001600160a01b039081169116146127bf576040805162461bcd60e51b81526020600482018190526024820152600080516020614435833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff166128165760405162461bcd60e51b81526004018080602001828103825260238152602001806143216023913960400191505060405180910390fd5b60005b60055481101561290e57816001600160a01b03166005828154811061283a57fe5b6000918252602090912001546001600160a01b031614156129065760058054600019810190811061286757fe5b600091825260209091200154600580546001600160a01b03909216918390811061288d57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600490925220805460ff1916905560058054806128df57fe5b600082815260209020810160001990810180546001600160a01b031916905501905561290e565b600101612819565b5050565b600b5481565b600061295a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506131b1565b9392505050565b60008261297057506000610dee565b8282028284828161297d57fe5b041461295a5760405162461bcd60e51b81526004018080602001828103825260218152602001806143ec6021913960400191505060405180910390fd5b600061295a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613248565b3390565b6000806000806000806000806000612a208a6011546012546010546132ad565b9250925092506000612a30611938565b90506000806000612a438e878787613307565b919e509c509a509598509396509194505050505091939550919395565b60008282018381101561295a576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b038316612aff5760405162461bcd60e51b815260040180806020018281038252602581526020018061460a6025913960400191505060405180910390fd5b6001600160a01b038216612b445760405162461bcd60e51b81526004018080602001828103825260238152602001806145456023913960400191505060405180910390fd5b6001600160a01b03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6008546040805163095ea7b360e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81166004830152602482018590529151600093929092169163095ea7b39160448082019260209290919082900301818787803b158015612c1f57600080fd5b505af1158015612c33573d6000803e3d6000fd5b505050506040513d6020811015612c4957600080fd5b5050601e546040805163af2979eb60e01b815230600482015260248101859052600060448201819052606482018190526001600160a01b0393841660848301524260a483015291517f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9093169263af2979eb9260c480840193602093929083900390910190829087803b158015612cdf57600080fd5b505af1158015612cf3573d6000803e3d6000fd5b505050506040513d6020811015612d0957600080fd5b505192915050565b6001600160a01b038316612d565760405162461bcd60e51b815260040180806020018281038252602681526020018061451f6026913960400191505060405180910390fd5b6001600160a01b038216612d9b5760405162461bcd60e51b81526004018080602001828103825260248152602001806144fb6024913960400191505060405180910390fd5b60008111612dda5760405162461bcd60e51b81526004018080602001828103825260318152602001806143936031913960400191505060405180910390fd5b612de2611929565b6001600160a01b0316836001600160a01b031614158015612e1c5750612e06611929565b6001600160a01b0316826001600160a01b031614155b8015612e2b575060175460ff16155b15612f3957601354811115612e715760405162461bcd60e51b81526004018080602001828103825260308152602001806142f16030913960400191505060405180910390fd5b6018546001600160a01b0316612e856129fc565b6001600160a01b03161480612ed257507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316612ec76129fc565b6001600160a01b0316145b8015612ee7575060175462010000900460ff16155b15612f39576040805162461bcd60e51b815260206004820152601c60248201527f5472696961643a2074726164696e672069732064697361626c65642e00000000604482015290519081900360640190fd5b60175460ff16613058576000612f4e3061180a565b60145490915081108015908190612f7057506018546001600160a01b03163314155b8015612f835750601754610100900460ff165b15613055577f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015612fe157600080fd5b505afa158015612ff5573d6000803e3d6000fd5b505050506040513d602081101561300b57600080fd5b5051601754630100000090046001600160a01b03908116911614156130385761303382613357565b613055565b60175461305590630100000090046001600160a01b0316836134ae565b50505b6001600160a01b03831660009081526004602052604090205460ff16801561309957506001600160a01b03821660009081526004602052604090205460ff16155b156130ae576130a98383836136f4565b6131ac565b6001600160a01b03831660009081526004602052604090205460ff161580156130ef57506001600160a01b03821660009081526004602052604090205460ff165b156130ff576130a98383836138f7565b6001600160a01b03831660009081526004602052604090205460ff1615801561314157506001600160a01b03821660009081526004602052604090205460ff16155b15613151576130a9838383613a24565b6001600160a01b03831660009081526004602052604090205460ff16801561319157506001600160a01b03821660009081526004602052604090205460ff165b156131a1576130a9838383613a89565b6131ac838383613a24565b505050565b600081848411156132405760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156132055781810151838201526020016131ed565b50505050905090810190601f1680156132325780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600081836132975760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156132055781810151838201526020016131ed565b5060008385816132a357fe5b0495945050505050565b60008080806132c660028601600a0a610f318a8a612961565b905060006132de60028701600a0a610f318b8a612961565b905060006132f6826132f08c86612918565b90612918565b9a9299509097509095505050505050565b60008080806133168886612961565b905060006133248887612961565b905060006133328888612961565b90506000613344826132f08686612918565b939b939a50919850919650505050505050565b6017805460ff19166001179055601654600090613375908390612918565b905060006133848260026129ba565b905060006133928383612918565b90504761339e83613b1d565b60006133aa4783612918565b90506133b68382613d34565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561340f57600080fd5b505afa158015613423573d6000803e3d6000fd5b505050506040513d602081101561343957600080fd5b5051604080518681526020810184905280820186905290516001600160a01b03909216917fa5edfeb09a3d7a0edab24279a4ca1c35b82bb038f8a7eb53339c904a217fe1f69181900360600190a26134943032601654612d11565b61349c613e1c565b50506017805460ff1916905550505050565b6017805460ff191660011790556016546000906134cc908390612918565b905060006134db8260026129ba565b905060006134e98383612918565b601f549091506135049030906001600160a01b031684612d11565b6000856001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561355357600080fd5b505afa158015613567573d6000803e3d6000fd5b505050506040513d602081101561357d57600080fd5b5051601f546040805163a114398d60e01b81526001600160a01b038a8116600483015260248201889052915193945091169163a114398d9160448082019260009290919082900301818387803b1580156135d657600080fd5b505af11580156135ea573d6000803e3d6000fd5b50505050600061367382886001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561364157600080fd5b505afa158015613655573d6000803e3d6000fd5b505050506040513d602081101561366b57600080fd5b505190612918565b9050613680878483613f55565b604080518581526020810183905280820185905290516001600160a01b038916917fa5edfeb09a3d7a0edab24279a4ca1c35b82bb038f8a7eb53339c904a217fe1f6919081900360600190a26136d93032601654612d11565b6136e1613e1c565b50506017805460ff191690555050505050565b60006136fe611938565b905060008060008060008061371288612a00565b9550955095509550955095506000613733888361296190919063ffffffff16565b6001600160a01b038c16600090815260026020526040902054909150613759908a612918565b6001600160a01b038c166000908152600260209081526040808320939093556001905220546137889088612918565b6001600160a01b038c1660009081526001602052604090205560175460ff1615613819576001600160a01b038a166000908152600160205260409020546137cf9088612a60565b6001600160a01b03808c166000818152600160209081526040918290209490945580518d815290519193928f16926000805160206144a983398151915292918290030190a36138ea565b6001600160a01b038a1660009081526001602052604090205461383c9087612a60565b6001600160a01b038b166000908152600160205260408082209290925530815220546138689082612a60565b3060009081526001602052604090205561388285846140f5565b60408051838152905130916001600160a01b038e16916000805160206144a98339815191529181900360200190a3896001600160a01b03168b6001600160a01b03166000805160206144a9833981519152866040518082815260200191505060405180910390a35b5050505050505050505050565b6000613901611938565b905060008060008060008061391588612a00565b9550955095509550955095506000613936888361296190919063ffffffff16565b6001600160a01b038c1660009081526001602052604090205490915061395c9088612918565b6001600160a01b038c1660009081526001602052604090205560175460ff16156139d2576001600160a01b038a166000908152600260205260409020546139a3908a612a60565b6001600160a01b038b166000908152600260209081526040808320939093556001905220546137cf9088612a60565b6001600160a01b038a166000908152600260205260409020546139f59085612a60565b6001600160a01b038b1660009081526002602090815260408083209390935560019052205461383c9087612a60565b6000613a2e611938565b9050600080600080600080613a4288612a00565b9550955095509550955095506000613a63888361296190919063ffffffff16565b6001600160a01b038c166000908152600160205260409020549091506137889088612918565b6000613a93611938565b9050600080600080600080613aa788612a00565b9550955095509550955095506000613ac8888361296190919063ffffffff16565b6001600160a01b038c16600090815260026020526040902054909150613aee908a612918565b6001600160a01b038c1660009081526002602090815260408083209390935560019052205461395c9088612918565b60408051600280825260608083018452926020830190803683370190505090503081600081518110613b4b57fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613bc457600080fd5b505afa158015613bd8573d6000803e3d6000fd5b505050506040513d6020811015613bee57600080fd5b5051815182906001908110613bff57fe5b60200260200101906001600160a01b031690816001600160a01b031681525050613c4a307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612aba565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015613cef578181015183820152602001613cd7565b505050509050019650505050505050600060405180830381600087803b158015613d1857600080fd5b505af1158015613d2c573d6000803e3d6000fd5b505050505050565b613d5f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612aba565b6040805163f305d71960e01b8152306004820181905260248201859052600060448301819052606483015260848201524260a482015290516001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169163f305d71991849160c48082019260609290919082900301818588803b158015613deb57600080fd5b505af1158015613dff573d6000803e3d6000fd5b50505050506040513d6060811015613e1657600080fd5b50505050565b600754600654600091613e3b916132f0906001600160a01b031661180a565b9050601554811115613f52576000613e54826000611485565b6018546001600160a01b0316600090815260016020526040902054909150613e7c9082612a60565b6018546001600160a01b039081166000908152600160205260408082209390935560065490911681522054613eb19082612918565b600680546001600160a01b0390811660009081526001602090815260409182902094909455601854925481518781529151938316949216926000805160206144a9833981519152929181900390910190a3601860009054906101000a90046001600160a01b03166001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613d1857600080fd5b50565b613f80307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612aba565b826001600160a01b031663095ea7b37f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d836040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b158015613ff757600080fd5b505af115801561400b573d6000803e3d6000fd5b505050506040513d602081101561402157600080fd5b50506040805162e8e33760e81b815230600482018190526001600160a01b038681166024840152604483018690526064830185905260006084840181905260a4840181905260c48401929092524260e484015292517f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9093169263e8e3370092610104808201936060939283900390910190829087803b1580156140c457600080fd5b505af11580156140d8573d6000803e3d6000fd5b505050506040513d60608110156140ee57600080fd5b5050505050565b600a546141029083612918565b600a55600b546141129082612a60565b600b55505056fe5472696961643a206d696e546f6b656e4265666f7265537761702073686f756c642062652067726561746572207468616e206175746f5377617043616c6c65724665655472696961643a2057652063616e206e6f74206578636c75646520636f6e74726163742073656c662e5472696961643a2057652063616e206e6f74206578636c75646520556e697377617020726f757465722e5472696961643a206175746f5377617043616c6c65724665652073686f756c642062652067726561746572207468616e203165394f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573735472696961643a206d696e546f6b656e4265666f7265537761702073686f756c6420626520696e2035306539202d20323530303065395472696961643a2057652063616e206e6f74206578636c75646520726577656172642077616c6c65742e5472696961643a20416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e735472696961643a204578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e5472696961643a207461784665652073686f756c6420626520696e2030202d20355472696961643a205472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e5472696961643a204163636f756e7420697320616c726561647920696e636c756465645472696961643a205061697220746f6b656e2061646472657373206973207a65726f2e5472696961643a20736f726365727943616c6c65724665652073686f756c6420626520696e2031202d2031355472696961643a205472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f5472696961643a205061697220746f6b656e20616464726573732073656c6620616464726573732e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472696961643a206c697175696469747952656d6f76654665652073686f756c6420626520696e2031202d2031305472696961643a20596f752068617665206e6f7420656e6f7567682054726969616420746f20ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5472696961643a205061697220746f6b656e20616464726573732069732073616d652061732063757272656e74206f6e652e5472696961643a207472616e7366657220746f20746865207a65726f20616464726573735472696961643a207472616e736665722066726f6d20746865207a65726f20616464726573735472696961643a20617070726f766520746f20746865207a65726f20616464726573735472696961643a204163636f756e7420697320616c7265616479206578636c756465645472696961643a206d61785478416d6f756e742073686f756c642062652067726561746572207468616e2035303030303065395472696961643a2066656520646563696d616c732073686f756c6420626520696e2030202d203245524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f5472696961643a20617070726f76652066726f6d20746865207a65726f20616464726573735472696961643a206c6f636b4665652073686f756c6420626520696e2030202d2035a2646970667358221220a35f62de1f14d2b7c29963c6c5502bd501d0ba0bfdda89c24327935085f06af064736f6c634300060c0033

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

0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000000000000000000000000000000005dcaa8fe12000

-----Decoded View---------------
Arg [0] : uniswapV2Router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [1] : initialRewardLockAmount (uint256): 1650000000000000

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [1] : 0000000000000000000000000000000000000000000000000005dcaa8fe12000


Deployed Bytecode Sourcemap

22404:28194:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28399:385;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28399:385:0;;:::i;:::-;;46404:101;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;26370:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27282:161;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;27282:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;37166:1244;;;;;;;;;;;;;:::i;26647:95::-;;;;;;;;;;;;;:::i;23153:26::-;;;;;;;;;;;;;:::i;47287:258::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47287:258:0;;:::i;27451:313::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;27451:313:0;;;;;;;;;;;;;;;;;:::i;48580:323::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48580:323:0;;:::i;29236:261::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29236:261:0;;:::i;26556:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27772:218;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;27772:218:0;;;;;;;;:::i;23342:26::-;;;;;;;;;;;;;:::i;28792:436::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28792:436:0;;;;;;;;;:::i;47557:479::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47557:479:0;;:::i;23648:33::-;;;;;;;;;;;;;:::i;23688:26::-;;;;;;;;;;;;;:::i;49232:201::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49232:201:0;;:::i;22522:52::-;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;22522:52:0;;;;;;;;;;;;;;46787:234;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46787:234:0;;:::i;45822:116::-;;;;;;;;;;;;;:::i;46065:103::-;;;;;;;;;;;;;:::i;26750:198::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26750:198:0;-1:-1:-1;;;;;26750:198:0;;:::i;17545:148::-;;;;;;;;;;;;;:::i;23409:39::-;;;;;;;;;;;;;:::i;23455:45::-;;;;;;;;;;;;;:::i;22930:30::-;;;;;;;;;;;;;:::i;16903:79::-;;;;;;;;;;;;;:::i;44962:162::-;;;;;;;;;;;;;:::i;26461:87::-;;;;;;;;;;;;;:::i;23304:31::-;;;;;;;;;;;;;:::i;45132:560::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;49445:183;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49445:183:0;;:::i;23375:27::-;;;;;;;;;;;;;:::i;49640:174::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49640:174:0;;;;:::i;50481:114::-;;;;;;;;;;;;;:::i;27998:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;27998:269:0;;;;;;;;:::i;22849:28::-;;;;;;;;;;;;;:::i;26956:167::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;26956:167:0;;;;;;;;:::i;46299:93::-;;;;;;;;;;;;;:::i;23507:43::-;;;;;;;;;;;;;:::i;45704:106::-;;;;;;;;;;;;;:::i;28275:110::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28275:110:0;-1:-1:-1;;;;;28275:110:0;;:::i;48915:305::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48915:305:0;;:::i;47033:242::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47033:242:0;;:::i;46180:107::-;;;;;;;;;;;;;:::i;49826:647::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;49826:647:0;;;;;;;;;;:::i;48355:213::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48355:213:0;;:::i;27131:143::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;27131:143:0;;;;;;;;;;:::i;22884:39::-;;;;;;;;;;;;;:::i;45946:107::-;;;;;;;;;;;;;:::i;25201:24::-;;;;;;;;;;;;;:::i;25232:20::-;;;;;;;;;;;;;:::i;48048:295::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48048:295:0;;:::i;29505:648::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29505:648:0;-1:-1:-1;;;;;29505:648:0;;:::i;17848:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17848:244:0;-1:-1:-1;;;;;17848:244:0;;:::i;46517:258::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46517:258:0;;:::i;30161:486::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30161:486:0;-1:-1:-1;;;;;30161:486:0;;:::i;23121:25::-;;;;;;;;;;;;;:::i;28399:385::-;28451:14;28468:12;:10;:12::i;:::-;-1:-1:-1;;;;;28500:19:0;;;;;;:11;:19;;;;;;28451:29;;-1:-1:-1;28500:19:0;;28499:20;28491:85;;;;-1:-1:-1;;;28491:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28588:15;28612:19;28623:7;28612:10;:19::i;:::-;-1:-1:-1;;;;;;;;;28660:15:0;;;;;;:7;:15;;;;;;28587:44;;-1:-1:-1;28660:28:0;;:15;-1:-1:-1;28587:44:0;28660:19;:28::i;:::-;-1:-1:-1;;;;;28642:15:0;;;;;;:7;:15;;;;;:46;28709:7;;:20;;28721:7;28709:11;:20::i;:::-;28699:7;:30;28753:10;;:23;;28768:7;28753:14;:23::i;:::-;28740:10;:36;-1:-1:-1;;;28399:385:0:o;46404:101::-;46481:16;;46404:101;:::o;26370:83::-;26440:5;26433:12;;;;;;;;-1:-1:-1;;26433:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26407:13;;26433:12;;26440:5;;26433:12;;26440:5;26433:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26370:83;:::o;27282:161::-;27357:4;27374:39;27383:12;:10;:12::i;:::-;27397:7;27406:6;27374:8;:39::i;:::-;-1:-1:-1;27431:4:0;27282:161;;;;;:::o;37166:1244::-;25111:16;:23;;-1:-1:-1;;25111:23:0;25130:4;25111:23;;;37250:19:::1;::::0;37223:23:::1;37233:12;:10;:12::i;:::-;37223:9;:23::i;:::-;:46;;37215:97;;;;-1:-1:-1::0;;;37215:97:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37352:16;;37337:12;;:31;37331:3;:37;37323:67;;;::::0;;-1:-1:-1;;;37323:67:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;37323:67:0;;;;;;;;;;;;;::::1;;37426:3;37411:12;:18:::0;37520:19:::1;::::0;37474:15:::1;::::0;37467:48:::1;::::0;;-1:-1:-1;;;37467:48:0;;37509:4:::1;37467:48;::::0;::::1;::::0;;;37442:22:::1;::::0;37467:82:::1;::::0;37545:3:::1;::::0;37467:73:::1;::::0;-1:-1:-1;;;;;37474:15:0;;::::1;::::0;37467:33:::1;::::0;:48;;;;;::::1;::::0;;;;;;;;;37474:15;37467:48;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;37467:48:0;;:52:::1;:73::i;:::-;:77:::0;::::1;:82::i;:::-;37442:107;;37562:34;37581:14;37562:18;:34::i;:::-;;37607:8;;;;;;;;;-1:-1:-1::0;;;;;37607:8:0::1;-1:-1:-1::0;;;;;37607:18:0::1;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;;37685:8:0::1;::::0;37640:24:::1;::::0;37667:28:::1;::::0;-1:-1:-1;;;;;37685:8:0::1;37667:9;:28::i;:::-;37640:55;;37706:24;37733:48;37777:3;37733:39;37754:17;;37733:16;:20;;:39;;;;:::i;:48::-;37706:75:::0;-1:-1:-1;37792:13:0::1;37808:38;:16:::0;37706:75;37808:20:::1;:38::i;:::-;37792:54;;37867:19;37890:10;:8;:10::i;:::-;37867:33:::0;-1:-1:-1;37911:13:0::1;37928:22;:5:::0;37867:33;37928:9:::1;:22::i;:::-;37911:39:::0;-1:-1:-1;37995:60:0::1;38021:33;:16:::0;38042:11;38021:20:::1;:33::i;:::-;37995:7;:21;38003:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;37995:21:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;37995:21:0;;;:25:::1;:60::i;:::-;37971:7;:21;37979:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;37971:21:0;;::::1;::::0;;::::1;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;37971:21:0;;;:84;;;;38082:8:::1;::::0;::::1;38066:26:::0;;:7:::1;:26:::0;;;;;:30;38131:11:::1;::::0;:22:::1;::::0;38147:5;38131:15:::1;:22::i;:::-;38117:11;:36:::0;38174:7:::1;::::0;:18:::1;::::0;38186:5;38174:11:::1;:18::i;:::-;38164:7;:28:::0;38213:7:::1;::::0;:18:::1;::::0;38225:5;38213:11:::1;:18::i;:::-;38203:7;:28:::0;38277:12:::1;:10;:12::i;:::-;38266:8;::::0;38249:59:::1;::::0;;;;;;;-1:-1:-1;;;;;38249:59:0;;::::1;::::0;38266:8;;;::::1;::::0;-1:-1:-1;;;;;;;;;;;38249:59:0;;;;::::1;::::0;;::::1;38341:8;::::0;38324:46:::1;::::0;;;;;;;38360:1:::1;::::0;-1:-1:-1;;;;;38341:8:0::1;::::0;-1:-1:-1;;;;;;;;;;;38324:46:0;;;;;::::1;::::0;;::::1;38386:16;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;-1:-1:-1::0;;25157:16:0;:24;;-1:-1:-1;;25157:24:0;;;-1:-1:-1;;;;37166:1244:0:o;26647:95::-;26727:7;;26647:95;:::o;23153:26::-;;;;:::o;47287:258::-;17125:12;:10;:12::i;:::-;17115:6;;-1:-1:-1;;;;;17115:6:0;;;:22;;;17107:67;;;;;-1:-1:-1;;;17107:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17107:67:0;;;;;;;;;;;;;;;47388:8:::1;47373:11;:23;;47365:88;;;;-1:-1:-1::0;;;47365:88:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47464:12;:26:::0;;;47506:31:::1;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;47287:258:::0;:::o;27451:313::-;27549:4;27566:36;27576:6;27584:9;27595:6;27566:9;:36::i;:::-;27613:121;27622:6;27630:12;:10;:12::i;:::-;27644:89;27682:6;27644:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27644:19:0;;;;;;:11;:19;;;;;;27664:12;:10;:12::i;:::-;-1:-1:-1;;;;;27644:33:0;;;;;;;;;;;;-1:-1:-1;27644:33:0;;;:89;:37;:89::i;:::-;27613:8;:121::i;:::-;-1:-1:-1;27752:4:0;27451:313;;;;;:::o;48580:323::-;17125:12;:10;:12::i;:::-;17115:6;;-1:-1:-1;;;;;17115:6:0;;;:22;;;17107:67;;;;;-1:-1:-1;;;17107:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17107:67:0;;;;;;;;;;;;;;;48702:1:::1;48680:18;:23;;:51;;;;;48729:2;48707:18;:24;;48680:51;48672:111;;;;-1:-1:-1::0;;;48672:111:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48794:19;:40:::0;;;48850:45:::1;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;48580:323:::0;:::o;29236:261::-;29302:7;29341;;29330;:18;;29322:81;;;;-1:-1:-1;;;29322:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29414:19;29437:10;:8;:10::i;:::-;29414:33;-1:-1:-1;29465:24:0;:7;29414:33;29465:11;:24::i;:::-;29458:31;;;29236:261;;;;:::o;26556:83::-;26622:9;;;;26556:83;:::o;27772:218::-;27860:4;27877:83;27886:12;:10;:12::i;:::-;27900:7;27909:50;27948:10;27909:11;:25;27921:12;:10;:12::i;:::-;-1:-1:-1;;;;;27909:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;27909:25:0;;;:34;;;;;;;;;;;:38;:50::i;23342:26::-;;;;:::o;28792:436::-;28882:7;28921;;28910;:18;;28902:62;;;;;-1:-1:-1;;;28902:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;28980:17;28975:246;;29015:15;29039:19;29050:7;29039:10;:19::i;:::-;-1:-1:-1;29014:44:0;;-1:-1:-1;29073:14:0;;-1:-1:-1;;;;;29073:14:0;28975:246;29122:23;29153:19;29164:7;29153:10;:19::i;:::-;-1:-1:-1;29120:52:0;;-1:-1:-1;29187:22:0;;-1:-1:-1;;;;;29187:22:0;47557:479;17125:12;:10;:12::i;:::-;17115:6;;-1:-1:-1;;;;;17115:6:0;;;:22;;;17107:67;;;;;-1:-1:-1;;;17107:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17107:67:0;;;;;;;;;;;;;;;47682:4:::1;47659:19;:27;;:61;;;;;47713:7;47690:19;:30;;47659:61;47651:129;;;;-1:-1:-1::0;;;47651:129:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47821:18;;47799:19;:40;47791:121;;;;-1:-1:-1::0;;;47791:121:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47923:20;:42:::0;;;47981:47:::1;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;47557:479:::0;:::o;23648:33::-;;;;;;;;;:::o;23688:26::-;;;;;;;;;:::o;49232:201::-;17125:12;:10;:12::i;:::-;17115:6;;-1:-1:-1;;;;;17115:6:0;;;:22;;;17107:67;;;;;-1:-1:-1;;;17107:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17107:67:0;;;;;;;;;;;;;;;49324:19:::1;:40:::0;;;49380:45:::1;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;49232:201:::0;:::o;22522:52::-;;;:::o;46787:234::-;17125:12;:10;:12::i;:::-;17115:6;;-1:-1:-1;;;;;17115:6:0;;;:22;;;17107:67;;;;;-1:-1:-1;;;17107:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17107:67:0;;;;;;;;;;;;;;;46899:12:::1;;46893:2;:18;46889:1;:22;46879:6;:32;;46855:94;;;;-1:-1:-1::0;;;46855:94:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46960:7;:16:::0;;;46992:21:::1;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;46787:234:::0;:::o;45822:116::-;45907:23;;;;;-1:-1:-1;;;;;45907:23:0;;45822:116::o;46065:103::-;46143:17;;46065:103;:::o;26750:198::-;-1:-1:-1;;;;;26840:20:0;;26816:7;26840:20;;;:11;:20;;;;;;;;26836:49;;;-1:-1:-1;;;;;;26869:16:0;;;;;;:7;:16;;;;;;26862:23;;26836:49;-1:-1:-1;;;;;26923:16:0;;;;;;:7;:16;;;;;;26903:37;;:19;:37::i;17545:148::-;17125:12;:10;:12::i;:::-;17115:6;;-1:-1:-1;;;;;17115:6:0;;;:22;;;17107:67;;;;;-1:-1:-1;;;17107:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17107:67:0;;;;;;;;;;;;;;;17652:1:::1;17636:6:::0;;17615:40:::1;::::0;-1:-1:-1;;;;;17636:6:0;;::::1;::::0;17615:40:::1;::::0;17652:1;;17615:40:::1;17683:1;17666:19:::0;;-1:-1:-1;;;;;;17666:19:0::1;::::0;;17545:148::o;23409:39::-;;;;:::o;23455:45::-;;;;:::o;22930:30::-;;;-1:-1:-1;;;;;22930:30:0;;:::o;16903:79::-;16941:7;16968:6;-1:-1:-1;;;;;16968:6:0;16903:79;:::o;44962:162::-;45002:7;45023:15;45040;45059:19;:17;:19::i;:::-;45022:56;;-1:-1:-1;45022:56:0;-1:-1:-1;45096:20:0;45022:56;;45096:11;:20::i;:::-;45089:27;;;;44962:162;:::o;26461:87::-;26533:7;26526:14;;;;;;;;-1:-1:-1;;26526:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26500:13;;26526:14;;26533:7;;26526:14;;26533:7;26526:14;;;;;;;;;;;;;;;;;;;;;;;;23304:31;;;;:::o;45132:560::-;45228:7;;45264;;45181;;;;;45288:289;45312:9;:16;45308:20;;45288:289;;;45378:7;45354;:21;45362:9;45372:1;45362:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45362:12:0;45354:21;;;;;;;;;;;;;:31;;:66;;;45413:7;45389;:21;45397:9;45407:1;45397:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45397:12:0;45389:21;;;;;;;;;;;;;:31;45354:66;45350:97;;;45430:7;;45439;;45422:25;;;;;;;;;45350:97;45472:34;45484:7;:21;45492:9;45502:1;45492:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45492:12:0;45484:21;;;;;;;;;;;;;45472:7;;:11;:34::i;:::-;45462:44;;45531:34;45543:7;:21;45551:9;45561:1;45551:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45551:12:0;45543:21;;;;;;;;;;;;;45531:7;;:11;:34::i;:::-;45521:44;-1:-1:-1;45330:3:0;;45288:289;;;-1:-1:-1;45613:7:0;;45601;;:20;;:11;:20::i;:::-;45591:7;:30;45587:61;;;45631:7;;45640;;45623:25;;;;;;;;45587:61;45667:7;;-1:-1:-1;45676:7:0;-1:-1:-1;45132:560:0;;;:::o;49445:183::-;17125:12;:10;:12::i;:::-;17115:6;;-1:-1:-1;;;;;17115:6:0;;;:22;;;17107:67;;;;;-1:-1:-1;;;17107:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17107:67:0;;;;;;;;;;;;;;;49531:16:::1;:34:::0;;;49581:39:::1;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;49445:183:::0;:::o;23375:27::-;;;;:::o;49640:174::-;17125:12;:10;:12::i;:::-;17115:6;;-1:-1:-1;;;;;17115:6:0;;;:22;;;17107:67;;;;;-1:-1:-1;;;17107:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17107:67:0;;;;;;;;;;;;;;;49720:21:::1;:32:::0;;;::::1;;;::::0;::::1;-1:-1:-1::0;;49720:32:0;;::::1;::::0;;;::::1;::::0;;;49768:38:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;49640:174:::0;:::o;50481:114::-;17125:12;:10;:12::i;:::-;17115:6;;-1:-1:-1;;;;;17115:6:0;;;:22;;;17107:67;;;;;-1:-1:-1;;;17107:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17107:67:0;;;;;;;;;;;;;;;50539:14:::1;:21:::0;;-1:-1:-1;;50539:21:0::1;::::0;::::1;::::0;;50571:16:::1;::::0;::::1;::::0;50539:21;;50571:16:::1;50481:114::o:0;27998:269::-;28091:4;28108:129;28117:12;:10;:12::i;:::-;28131:7;28140:96;28179:15;28140:96;;;;;;;;;;;;;;;;;:11;:25;28152:12;:10;:12::i;:::-;-1:-1:-1;;;;;28140:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;28140:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;22849:28::-;;;-1:-1:-1;;;;;22849:28:0;;:::o;26956:167::-;27034:4;27051:42;27061:12;:10;:12::i;:::-;27075:9;27086:6;27051:9;:42::i;46299:93::-;46372:12;;46299:93;:::o;23507:43::-;;;;:::o;45704:106::-;45784:18;;-1:-1:-1;;;;;45784:18:0;45704:106;:::o;28275:110::-;-1:-1:-1;;;;;28357:20:0;28333:4;28357:20;;;:11;:20;;;;;;;;;28275:110::o;48915:305::-;17125:12;:10;:12::i;:::-;17115:6;;-1:-1:-1;;;;;17115:6:0;;;:22;;;17107:67;;;;;-1:-1:-1;;;17107:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17107:67:0;;;;;;;;;;;;;;;49031:1:::1;49011:16;:21;;:47;;;;;49056:2;49036:16;:22;;49011:47;49003:105;;;;-1:-1:-1::0;;;49003:105:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49119:17;:36:::0;;;49171:41:::1;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;48915:305:::0;:::o;47033:242::-;17125:12;:10;:12::i;:::-;17115:6;;-1:-1:-1;;;;;17115:6:0;;;:22;;;17107:67;;;;;-1:-1:-1;;;17107:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17107:67:0;;;;;;;;;;;;;;;47148:12:::1;;47142:2;:18;47138:1;:22;47127:7;:33;;47103:96;;;;-1:-1:-1::0;;;47103:96:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47210:8;:18:::0;;;47244:23:::1;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;47033:242:::0;:::o;46180:107::-;46260:19;;46180:107;:::o;49826:647::-;17125:12;:10;:12::i;:::-;17115:6;;-1:-1:-1;;;;;17115:6:0;;;:22;;;17107:67;;;;;-1:-1:-1;;;17107:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17107:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;49937:25:0;::::1;49929:67;;;::::0;;-1:-1:-1;;;49929:67:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;50015:30:0;::::1;50007:78;;;;-1:-1:-1::0;;;50007:78:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;50104:33:0;::::1;50132:4;50104:33;;50096:86;;;;-1:-1:-1::0;;;50096:86:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50221:23;::::0;-1:-1:-1;;;;;50201:43:0;;::::1;50221:23:::0;;;::::1;;50201:43;;50193:106;;;;-1:-1:-1::0;;;50193:106:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50320:18;:32:::0;;-1:-1:-1;;;;;;50320:32:0::1;-1:-1:-1::0;;;;;50320:32:0;;::::1;::::0;;;::::1;::::0;;;50363:23:::1;:42:::0;;-1:-1:-1;;;;;;50363:42:0::1;::::0;;;::::1;::::0;;::::1;;::::0;;50431:34:::1;::::0;::::1;::::0;-1:-1:-1;;50431:34:0::1;49826:647:::0;;:::o;48355:213::-;17125:12;:10;:12::i;:::-;17115:6;;-1:-1:-1;;;;;17115:6:0;;;:22;;;17107:67;;;;;-1:-1:-1;;;17107:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17107:67:0;;;;;;;;;;;;;;;48451:21:::1;:44:::0;;;48511:49:::1;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;48355:213:::0;:::o;27131:143::-;-1:-1:-1;;;;;27239:18:0;;;27212:7;27239:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;27131:143::o;22884:39::-;;;;:::o;45946:107::-;46026:19;;45946:107;:::o;25201:24::-;;;-1:-1:-1;;;;;25201:24:0;;:::o;25232:20::-;;;-1:-1:-1;;;;;25232:20:0;;:::o;48048:295::-;17125:12;:10;:12::i;:::-;17115:6;;-1:-1:-1;;;;;17115:6:0;;;:22;;;17107:67;;;;;-1:-1:-1;;;17107:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17107:67:0;;;;;;;;;;;;;;;48167:3:::1;48146:17;:24;;48138:89;;;;-1:-1:-1::0;;;48138:89:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48238:18;:38:::0;;;48292:43:::1;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;48048:295:::0;:::o;29505:648::-;17125:12;:10;:12::i;:::-;17115:6;;-1:-1:-1;;;;;17115:6:0;;;:22;;;17107:67;;;;;-1:-1:-1;;;17107:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17107:67:0;;;;;;;;;;;;;;;29597:42:::1;-1:-1:-1::0;;;;;29586:53:0;::::1;;;29578:108;;;;-1:-1:-1::0;;;29578:108:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;29705:24:0;::::1;29724:4;29705:24;;29697:78;;;;-1:-1:-1::0;;;29697:78:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29805:13;::::0;-1:-1:-1;;;;;29794:24:0;;::::1;29805:13:::0;::::1;29794:24;;29786:79;;;;-1:-1:-1::0;;;29786:79:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;29885:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;29884:21;29876:69;;;;-1:-1:-1::0;;;29876:69:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;29969:16:0;::::1;29988:1;29969:16:::0;;;:7:::1;:16;::::0;;;;;:20;29966:108:::1;;-1:-1:-1::0;;;;;30045:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;30025:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;30006:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;29966:108:::1;-1:-1:-1::0;;;;;30084:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;30084:27:0::1;30107:4;30084:27:::0;;::::1;::::0;;;30122:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;30122:23:0::1;::::0;;::::1;::::0;;29505:648::o;17848:244::-;17125:12;:10;:12::i;:::-;17115:6;;-1:-1:-1;;;;;17115:6:0;;;:22;;;17107:67;;;;;-1:-1:-1;;;17107:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17107:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;17937:22:0;::::1;17929:73;;;;-1:-1:-1::0;;;17929:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18039:6;::::0;;18018:38:::1;::::0;-1:-1:-1;;;;;18018:38:0;;::::1;::::0;18039:6;::::1;::::0;18018:38:::1;::::0;::::1;18067:6;:17:::0;;-1:-1:-1;;;;;;18067:17:0::1;-1:-1:-1::0;;;;;18067:17:0;;;::::1;::::0;;;::::1;::::0;;17848:244::o;46517:258::-;17125:12;:10;:12::i;:::-;17115:6;;-1:-1:-1;;;;;17115:6:0;;;:22;;;17107:67;;;;;-1:-1:-1;;;17107:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17107:67:0;;;;;;;;;;;;;;;46638:1:::1;46623:11;:16;;46595:88;;;;-1:-1:-1::0;;;46595:88:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46694:12;:26:::0;;;46736:31:::1;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;46517:258:::0;:::o;30161:486::-;17125:12;:10;:12::i;:::-;17115:6;;-1:-1:-1;;;;;17115:6:0;;;:22;;;17107:67;;;;;-1:-1:-1;;;17107:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17107:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;30242:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;30234:68;;;;-1:-1:-1::0;;;30234:68:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30318:9;30313:327;30337:9;:16:::0;30333:20;::::1;30313:327;;;30395:7;-1:-1:-1::0;;;;;30379:23:0::1;:9;30389:1;30379:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;30379:12:0::1;:23;30375:254;;;30438:9;30448:16:::0;;-1:-1:-1;;30448:20:0;;;30438:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;30423:9:::1;:12:::0;;-1:-1:-1;;;;;30438:31:0;;::::1;::::0;30433:1;;30423:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;30423:46:0::1;-1:-1:-1::0;;;;;30423:46:0;;::::1;;::::0;;30488:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;30527:11:::1;:20:::0;;;;:28;;-1:-1:-1;;30527:28:0::1;::::0;;30574:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;30574:15:0;;;;;-1:-1:-1;;;;;;30574:15:0::1;::::0;;;;;30608:5:::1;;30375:254;30355:3;;30313:327;;;;30161:486:::0;:::o;23121:25::-;;;;:::o;5740:136::-;5798:7;5825:43;5829:1;5832;5825:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;5818:50;5740:136;-1:-1:-1;;;5740:136:0:o;6630:471::-;6688:7;6933:6;6929:47;;-1:-1:-1;6963:1:0;6956:8;;6929:47;7000:5;;;7004:1;7000;:5;:1;7024:5;;;;;:10;7016:56;;;;-1:-1:-1;;;7016:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7577:132;7635:7;7662:39;7666:1;7669;7662:39;;;;;;;;;;;;;;;;;:3;:39::i;1361:106::-;1449:10;1361:106;:::o;43630:482::-;43689:7;43698;43707;43716;43725;43734;43755:23;43780:12;43794:13;43811:53;43823:7;43832;;43841:8;;43851:12;;43811:11;:53::i;:::-;43754:110;;;;;;43875:19;43898:10;:8;:10::i;:::-;43875:33;;43920:15;43937:23;43962:12;43978:46;43990:7;43999:4;44005:5;44012:11;43978;:46::i;:::-;43919:105;;-1:-1:-1;43919:105:0;-1:-1:-1;43919:105:0;-1:-1:-1;44075:15:0;;-1:-1:-1;44092:4:0;;-1:-1:-1;44098:5:0;;-1:-1:-1;;;;;43630:482:0;;;;;;;:::o;5276:181::-;5334:7;5366:5;;;5390:6;;;;5382:46;;;;;-1:-1:-1;;;5382:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;30655:339;-1:-1:-1;;;;;30748:19:0;;30740:69;;;;-1:-1:-1;;;30740:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30828:21:0;;30820:69;;;;-1:-1:-1;;;30820:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30902:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;30954:32;;;;;;;;;;;;;;;;;30655:339;;;:::o;38422:452::-;38518:15;;38511:68;;;-1:-1:-1;;;38511:68:0;;-1:-1:-1;;;;;38551:16:0;38511:68;;;;;;;;;;;;;;-1:-1:-1;;38518:15:0;;;;;38511:31;;:68;;;;;;;;;;;;;;;-1:-1:-1;38518:15:0;38511:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;38808:8:0;;38604:262;;;-1:-1:-1;;;38604:262:0;;38709:4;38604:262;;;;;;;;;;-1:-1:-1;38604:262:0;;;;;;;;;;;;-1:-1:-1;;;;;38808:8:0;;;38604:262;;;;38836:15;38604:262;;;;;;:16;:78;;;;;;:262;;;;;38511:68;;38604:262;;;;;;;;;;;:78;:262;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38604:262:0;;38422:452;-1:-1:-1;;38422:452:0:o;31002:1975::-;-1:-1:-1;;;;;31099:20:0;;31091:71;;;;-1:-1:-1;;;31091:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31181:23:0;;31173:72;;;;-1:-1:-1;;;31173:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31273:1;31264:6;:10;31256:72;;;;-1:-1:-1;;;31256:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31362:7;:5;:7::i;:::-;-1:-1:-1;;;;;31352:17:0;:6;-1:-1:-1;;;;;31352:17:0;;;:41;;;;;31386:7;:5;:7::i;:::-;-1:-1:-1;;;;;31373:20:0;:9;-1:-1:-1;;;;;31373:20:0;;;31352:41;:62;;;;-1:-1:-1;31398:16:0;;;;31397:17;31352:62;31349:360;;;31449:12;;31439:6;:22;;31431:83;;;;-1:-1:-1;;;31431:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31549:18;;-1:-1:-1;;;;;31549:18:0;31533:12;:10;:12::i;:::-;-1:-1:-1;;;;;31533:34:0;;:79;;;;31595:16;-1:-1:-1;;;;;31571:41:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;31571:41:0;;31533:79;31532:100;;;;-1:-1:-1;31618:14:0;;;;;;;31617:15;31532:100;31529:168;;;31651:46;;;-1:-1:-1;;;31651:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;31733:16;;;;31729:624;;31766:28;31797:24;31815:4;31797:9;:24::i;:::-;31887:20;;31766:55;;-1:-1:-1;31863:44:0;;;;;;;31944:72;;-1:-1:-1;31998:18:0;;-1:-1:-1;;;;;31998:18:0;31984:10;:32;;31944:72;:114;;;;-1:-1:-1;32037:21:0;;;;;;;31944:114;31922:420;;;32123:16;-1:-1:-1;;;;;32123:21:0;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32123:23:0;32096;;;;;-1:-1:-1;;;;;32096:23:0;;;:50;;;32093:233;;;32169:42;32190:20;32169;:42::i;:::-;32093:233;;;32280:23;;32256:70;;32280:23;;;-1:-1:-1;;;;;32280:23:0;32305:20;32256:23;:70::i;:::-;31729:624;;;-1:-1:-1;;;;;32377:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;32401:22:0;;;;;;:11;:22;;;;;;;;32400:23;32377:46;32373:597;;;32440:48;32462:6;32470:9;32481:6;32440:21;:48::i;:::-;32373:597;;;-1:-1:-1;;;;;32511:19:0;;;;;;:11;:19;;;;;;;;32510:20;:46;;;;-1:-1:-1;;;;;;32534:22:0;;;;;;:11;:22;;;;;;;;32510:46;32506:464;;;32573:46;32593:6;32601:9;32612:6;32573:19;:46::i;32506:464::-;-1:-1:-1;;;;;32642:19:0;;;;;;:11;:19;;;;;;;;32641:20;:47;;;;-1:-1:-1;;;;;;32666:22:0;;;;;;:11;:22;;;;;;;;32665:23;32641:47;32637:333;;;32705:44;32723:6;32731:9;32742:6;32705:17;:44::i;32637:333::-;-1:-1:-1;;;;;32771:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;32794:22:0;;;;;;:11;:22;;;;;;;;32771:45;32767:203;;;32833:48;32855:6;32863:9;32874:6;32833:21;:48::i;32767:203::-;32914:44;32932:6;32940:9;32951:6;32914:17;:44::i;:::-;31002:1975;;;:::o;6179:192::-;6265:7;6301:12;6293:6;;;;6285:29;;;;-1:-1:-1;;;6285:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;6337:5:0;;;6179:192::o;8205:278::-;8291:7;8326:12;8319:5;8311:28;;;;-1:-1:-1;;;8311:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8350:9;8366:1;8362;:5;;;;;;;8205:278;-1:-1:-1;;;;;8205:278:0:o;44120:417::-;44234:7;;;;44287:46;44330:1;44316:15;;44311:2;:21;44287:19;:7;44299:6;44287:11;:19::i;:46::-;44272:61;-1:-1:-1;44344:16:0;44363:47;44407:1;44393:15;;44388:2;:21;44363:20;:7;44375;44363:11;:20::i;:47::-;44344:66;-1:-1:-1;44421:23:0;44447:31;44344:66;44447:17;:7;44459:4;44447:11;:17::i;:::-;:21;;:31::i;:::-;44421:57;44514:4;;-1:-1:-1;44520:8:0;;-1:-1:-1;44120:417:0;;-1:-1:-1;;;;;;44120:417:0:o;44545:409::-;44655:7;;;;44711:24;:7;44723:11;44711;:24::i;:::-;44693:42;-1:-1:-1;44746:12:0;44761:21;:4;44770:11;44761:8;:21::i;:::-;44746:36;-1:-1:-1;44793:13:0;44809:22;:5;44819:11;44809:9;:22::i;:::-;44793:38;-1:-1:-1;44842:23:0;44868:28;44793:38;44868:17;:7;44880:4;44868:11;:17::i;:28::-;44915:7;;;;-1:-1:-1;44941:4:0;;-1:-1:-1;44545:409:0;;-1:-1:-1;;;;;;;44545:409:0:o;33030:1170::-;25111:16;:23;;-1:-1:-1;;25111:23:0;25130:4;25111:23;;;33242:18:::1;::::0;25111:16;;33217:44:::1;::::0;:20;;:24:::1;:44::i;:::-;33193:68:::0;-1:-1:-1;33272:12:0::1;33287:20;33193:68:::0;33305:1:::1;33287:17;:20::i;:::-;33272:35:::0;-1:-1:-1;33318:17:0::1;33338:23;:13:::0;33272:35;33338:17:::1;:23::i;:::-;33318:43:::0;-1:-1:-1;33664:21:0::1;33730:22;33747:4:::0;33730:16:::1;:22::i;:::-;33821:18;33842:41;:21;33868:14:::0;33842:25:::1;:41::i;:::-;33821:62;;33933:41;33952:9;33963:10;33933:18;:41::i;:::-;34015:16;-1:-1:-1::0;;;;;34015:21:0::1;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;34015:23:0;34000:68:::1;::::0;;;;;34015:23:::1;34000:68:::0;::::1;::::0;;;;;;;;;;;-1:-1:-1;;;;;34000:68:0;;::::1;::::0;::::1;::::0;;;;;;;::::1;34089:55;34107:4;34114:9;34125:18;;34089:9;:55::i;:::-;34165:27;:25;:27::i;:::-;-1:-1:-1::0;;25157:16:0;:24;;-1:-1:-1;;25157:24:0;;;-1:-1:-1;;;;33030:1170:0:o;35351:1110::-;25111:16;:23;;-1:-1:-1;;25111:23:0;25130:4;25111:23;;;35592:18:::1;::::0;25111:16;;35567:44:::1;::::0;:20;;:24:::1;:44::i;:::-;35543:68:::0;-1:-1:-1;35622:12:0::1;35637:20;35543:68:::0;35655:1:::1;35637:17;:20::i;:::-;35622:35:::0;-1:-1:-1;35668:17:0::1;35688:23;:13:::0;35622:35;35688:17:::1;:23::i;:::-;35765:6;::::0;35668:43;;-1:-1:-1;35732:47:0::1;::::0;35750:4:::1;::::0;-1:-1:-1;;;;;35765:6:0::1;35774:4:::0;35732:9:::1;:47::i;:::-;35800:31;35841:16;-1:-1:-1::0;;;;;35834:34:0::1;;35877:4;35834:49;;;;;;;;;;;;;-1:-1:-1::0;;;;;35834:49:0::1;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;35834:49:0;35942:6:::1;::::0;:41:::1;::::0;;-1:-1:-1;;;35942:41:0;;-1:-1:-1;;;;;35942:41:0;;::::1;;::::0;::::1;::::0;;;;;;;;;35834:49;;-1:-1:-1;35942:6:0;::::1;::::0;:17:::1;::::0;:41;;;;;:6:::1;::::0;:41;;;;;;;;:6;;:41;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;36004:27;36034:78;36088:23;36041:16;-1:-1:-1::0;;;;;36034:34:0::1;;36077:4;36034:49;;;;;;;;;;;;;-1:-1:-1::0;;;;;36034:49:0::1;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;36034:49:0;;:53:::1;:78::i;:::-;36004:108;;36162:71;36184:16;36202:9;36213:19;36162:21;:71::i;:::-;36259:70;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;-1:-1:-1;;;;;36259:70:0;::::1;::::0;::::1;::::0;;;;;;;;::::1;36350:55;36368:4;36375:9;36386:18;;36350:9;:55::i;:::-;36426:27;:25;:27::i;:::-;-1:-1:-1::0;;25157:16:0;:24;;-1:-1:-1;;25157:24:0;;;-1:-1:-1;;;;;35351:1110:0:o;41418:945::-;41520:19;41543:10;:8;:10::i;:::-;41520:33;;41565:15;41582:23;41607:12;41621:23;41646:12;41660:13;41677:19;41688:7;41677:10;:19::i;:::-;41564:132;;;;;;;;;;;;41707:13;41724:22;41734:11;41724:5;:9;;:22;;;;:::i;:::-;-1:-1:-1;;;;;41775:15:0;;;;;;:7;:15;;;;;;41707:39;;-1:-1:-1;41775:28:0;;41795:7;41775:19;:28::i;:::-;-1:-1:-1;;;;;41757:15:0;;;;;;:7;:15;;;;;;;;:46;;;;41832:7;:15;;;;:28;;41852:7;41832:19;:28::i;:::-;-1:-1:-1;;;;;41814:15:0;;;;;;:7;:15;;;;;:46;41874:16;;;;41871:485;;;-1:-1:-1;;;;;41928:18:0;;;;;;:7;:18;;;;;;:31;;41951:7;41928:22;:31::i;:::-;-1:-1:-1;;;;;41907:18:0;;;;;;;:7;:18;;;;;;;;;:52;;;;41979:36;;;;;;;41907:18;;41979:36;;;;-1:-1:-1;;;;;;;;;;;41979:36:0;;;;;;;;41871:485;;;-1:-1:-1;;;;;42069:18:0;;;;;;:7;:18;;;;;;:39;;42092:15;42069:22;:39::i;:::-;-1:-1:-1;;;;;42048:18:0;;;;;;:7;:18;;;;;;:60;;;;42167:4;42151:22;;;;:33;;42178:5;42151:26;:33::i;:::-;42142:4;42126:22;;;;:7;:22;;;;;:58;42199:23;42211:4;42217;42199:11;:23::i;:::-;42242:38;;;;;;;;42267:4;;-1:-1:-1;;;;;42242:38:0;;;-1:-1:-1;;;;;;;;;;;42242:38:0;;;;;;;;42317:9;-1:-1:-1;;;;;42300:44:0;42309:6;-1:-1:-1;;;;;42300:44:0;-1:-1:-1;;;;;;;;;;;42328:15:0;42300:44;;;;;;;;;;;;;;;;;;41871:485;41418:945;;;;;;;;;;;:::o;40385:1025::-;40485:19;40508:10;:8;:10::i;:::-;40485:33;;40530:15;40547:23;40572:12;40586:23;40611:12;40625:13;40642:19;40653:7;40642:10;:19::i;:::-;40529:132;;;;;;;;;;;;40672:13;40689:22;40699:11;40689:5;:9;;:22;;;;:::i;:::-;-1:-1:-1;;;;;40740:15:0;;;;;;:7;:15;;;;;;40672:39;;-1:-1:-1;40740:28:0;;40760:7;40740:19;:28::i;:::-;-1:-1:-1;;;;;40722:15:0;;;;;;:7;:15;;;;;:46;40782:16;;;;40779:624;;;-1:-1:-1;;;;;40836:18:0;;;;;;:7;:18;;;;;;:31;;40859:7;40836:22;:31::i;:::-;-1:-1:-1;;;;;40815:18:0;;;;;;:7;:18;;;;;;;;:52;;;;40903:7;:18;;;;:31;;40926:7;40903:22;:31::i;40779:624::-;-1:-1:-1;;;;;41044:18:0;;;;;;:7;:18;;;;;;:39;;41067:15;41044:22;:39::i;:::-;-1:-1:-1;;;;;41023:18:0;;;;;;:7;:18;;;;;;;;:60;;;;41119:7;:18;;;;:39;;41142:15;41119:22;:39::i;39496:881::-;39594:19;39617:10;:8;:10::i;:::-;39594:33;;39639:15;39656:23;39681:12;39695:23;39720:12;39734:13;39751:19;39762:7;39751:10;:19::i;:::-;39638:132;;;;;;;;;;;;39781:13;39798:22;39808:11;39798:5;:9;;:22;;;;:::i;:::-;-1:-1:-1;;;;;39849:15:0;;;;;;:7;:15;;;;;;39781:39;;-1:-1:-1;39849:28:0;;39869:7;39849:19;:28::i;42371:1096::-;42473:19;42496:10;:8;:10::i;:::-;42473:33;;42518:15;42535:23;42560:12;42574:23;42599:12;42613:13;42630:19;42641:7;42630:10;:19::i;:::-;42517:132;;;;;;;;;;;;42660:13;42677:22;42687:11;42677:5;:9;;:22;;;;:::i;:::-;-1:-1:-1;;;;;42728:15:0;;;;;;:7;:15;;;;;;42660:39;;-1:-1:-1;42728:28:0;;42748:7;42728:19;:28::i;:::-;-1:-1:-1;;;;;42710:15:0;;;;;;:7;:15;;;;;;;;:46;;;;42785:7;:15;;;;:28;;42805:7;42785:19;:28::i;34212:592::-;34362:16;;;34376:1;34362:16;;;34338:21;34362:16;;;;;34338:21;34362:16;;;;;;;;;;-1:-1:-1;34362:16:0;34338:40;;34407:4;34389;34394:1;34389:7;;;;;;;;;;;;;:23;-1:-1:-1;;;;;34389:23:0;;;-1:-1:-1;;;;;34389:23:0;;;;;34433:16;-1:-1:-1;;;;;34433:21:0;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34433:23:0;34423:7;;:4;;34428:1;;34423:7;;;;;;;;;;;:33;-1:-1:-1;;;;;34423:33:0;;;-1:-1:-1;;;;;34423:33:0;;;;;34469:63;34486:4;34501:16;34520:11;34469:8;:63::i;:::-;34571:16;-1:-1:-1;;;;;34571:67:0;;34653:11;34679:1;34723:4;34750;34770:15;34571:225;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34571:225:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34212:592;;:::o;34812:527::-;34966:63;34983:4;34998:16;35017:11;34966:8;:63::i;:::-;35072:259;;;-1:-1:-1;;;35072:259:0;;35145:4;35072:259;;;;;;;;;;;;35191:1;35072:259;;;;;;;;;;;;;;35305:15;35072:259;;;;;;-1:-1:-1;;;;;35072:16:0;:32;;;;35112:9;;35072:259;;;;;;;;;;;;;;;35112:9;35072:32;:259;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;34812:527:0:o;38882:606::-;38993:24;;38974:13;;38938:23;;38964:54;;:24;;-1:-1:-1;;;;;38974:13:0;38964:9;:24::i;:54::-;38938:80;;39050:21;;39032:15;:39;39029:452;;;39088:23;39114:43;39134:15;39151:5;39114:19;:43::i;:::-;39210:18;;-1:-1:-1;;;;;39210:18:0;39202:27;;;;:7;:27;;;;;;39088:69;;-1:-1:-1;39202:48:0;;39088:69;39202:31;:48::i;:::-;39180:18;;-1:-1:-1;;;;;39180:18:0;;;39172:27;;;;:7;:27;;;;;;:78;;;;39298:13;;;;;39290:22;;;;:43;;39317:15;39290:26;:43::i;:::-;39273:13;;;-1:-1:-1;;;;;39273:13:0;;;39265:22;;;;:7;:22;;;;;;;;;:68;;;;39377:18;;39362:13;;39353:60;;;;;;;39377:18;;;;39362:13;;;-1:-1:-1;;;;;;;;;;;39353:60:0;;;;;;;;;;39443:18;;;;;;;;;-1:-1:-1;;;;;39443:18:0;-1:-1:-1;;;;;39428:39:0;;:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39029:452;38882:606;:::o;36469:689::-;36658:63;36675:4;36690:16;36709:11;36658:8;:63::i;:::-;36739:16;-1:-1:-1;;;;;36732:32:0;;36773:16;36792:15;36732:76;;;;;;;;;;;;;-1:-1:-1;;;;;36732:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;36851:299:0;;;-1:-1:-1;;;36851:299:0;;36903:4;36851:299;;;;;;-1:-1:-1;;;;;36851:299:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;36851:299:0;;;;;;;;;;;;;;;;;;;37124:15;36851:299;;;;;;:16;:29;;;;;;:299;;;;;;;;;;;;;;;;;:29;:299;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36469:689:0:o;43475:147::-;43553:7;;:17;;43565:4;43553:11;:17::i;:::-;43543:7;:27;43594:10;;:20;;43609:4;43594:14;:20::i;:::-;43581:10;:33;-1:-1:-1;;43475:147:0:o

Swarm Source

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