ETH Price: $2,451.61 (+1.03%)

Token

Dimension (DIM)
 

Overview

Max Total Supply

10,000,000 DIM

Holders

139

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
0.989028692 DIM

Value
$0.00
0x95723D08CFc13723F3349e685D82181f83fC4968
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:
DIMENSION

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200000 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

//
//  _______   __  .___  ___.  _______ .__   __.      _______. __    ______   .__   __. 
// |       \ |  | |   \/   | |   ____||  \ |  |     /       ||  |  /  __  \  |  \ |  | 
// |  .--.  ||  | |  \  /  | |  |__   |   \|  |    |   (----`|  | |  |  |  | |   \|  | 
// |  |  |  ||  | |  |\/|  | |   __|  |  . `  |     \   \    |  | |  |  |  | |  . `  | 
// |  '--'  ||  | |  |  |  | |  |____ |  |\   | .----)   |   |  | |  `--'  | |  |\   | 
// |_______/ |__| |__|  |__| |_______||__| \__| |_______/    |__|  \______/  |__| \__| 
//   

pragma solidity ^0.6.12;

/*
 * @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;
    DIMENSION private _tokenContract;
    
    constructor(DIMENSION 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;
    DIMENSION private _tokenContract;
    
    constructor(DIMENSION 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 DIMENSION 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 = 10000000e9;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 public _tFeeTotal;
    uint256 public _tBurnTotal;

    string private _name = 'Dimension';
    string private _symbol = 'DIM';
    uint8 private _decimals = 9;
    
    uint256 public _feeDecimals = 1;
    uint256 public _taxFee = 30;
    uint256 public _lockFee = 30;
    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;
    bool public limitTransfer = false;
    
    address private currentPairTokenAddress;
    address private currentPoolAddress;
    
    uint256 private _liquidityRemoveFee = 2;
    uint256 private _alchemyCallerFee = 5;
    uint256 private _minTokenForAlchemy = 1000e9;
    uint256 private _lastAlchemy;
    uint256 private _alchemyInterval = 1 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 AlchemyCallerFeeUpdated(uint256 rebalnaceCallerFee);
    event MinTokenForAlchemyUpdated(uint256 minRebalanceAmount);
    event AlchemyIntervalUpdated(uint256 rebalanceInterval);

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

    constructor (IUniswapV2Router02 uniswapV2Router, uint256 initialRewardLockAmount) public {
        _lastAlchemy = 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 setLimitTransfer(bool limitStatus) public onlyOwner
    {
        limitTransfer=limitStatus;
    }
    
    function reflect(uint256 tAmount) public {
        address sender = _msgSender();
        require(!_isExcluded[sender], "Dimension: 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, "Dimension: Amount must be less than total reflections");
        uint256 currentRate =  _getRate();
        return rAmount.div(currentRate);
    }

    function excludeAccount(address account) external onlyOwner() {
        require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'Dimension: We can not exclude Uniswap router.');
        require(account != address(this), 'Dimension: We can not exclude contract self.');
        require(account != _rewardWallet, 'Dimension: We can not exclude reweard wallet.');
        require(!_isExcluded[account], "Dimension: 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], "Dimension: 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), "Dimension: approve from the zero address");
        require(spender != address(0), "Dimension: 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), "Dimension: transfer from the zero address");
        require(recipient != address(0), "Dimension: transfer to the zero address");
        require(amount > 0, "Dimension: Transfer amount must be greater than zero");
        
        if(sender != owner() && recipient != owner() && !inSwapAndLiquify) {
            require(amount <= _maxTxAmount, "Dimension: Transfer amount exceeds the maxTxAmount.");
            if((_msgSender() == currentPoolAddress || _msgSender() == address(_uniswapV2Router)) && !tradingEnabled)
                require(false, "Dimension: trading is disabled.");
        }
        
        if(limitTransfer)
        {
            require(amount <= 200000000000000, "Buy/Sell limitted to 200k Token right now");
        }
        
        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 alchemy() public lockTheSwap {
        require(balanceOf(_msgSender()) >= _minTokenForAlchemy, "Dimension: You have not enough Dimension to ");
        require(now > _lastAlchemy + _alchemyInterval, 'Dimension: Too Soon.');
        
        _lastAlchemy = 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(_alchemyCallerFee).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 getAlchemyCallerFee() public view returns(uint256) {
        return _alchemyCallerFee;
    }
    
    function getMinTokenForAlchemy() public view returns(uint256) {
        return _minTokenForAlchemy;
    }
    
    function getLastAlchemy() public view returns(uint256) {
        return _lastAlchemy;
    }
    
    function getAlchemyInterval() public view returns(uint256) {
        return _alchemyInterval;
    }
    
    function _setFeeDecimals(uint256 feeDecimals) external onlyOwner() {
        require(feeDecimals >= 0 && feeDecimals <= 2, 'Dimension: fee decimals should be in 0 - 2');
        _feeDecimals = feeDecimals;
        emit FeeDecimalsUpdated(feeDecimals);
    }
    
    function _setMaxTxAmount(uint256 maxTxAmount) external onlyOwner() {
        require(maxTxAmount >= 500000e9 , 'Dimension: maxTxAmount should be greater than 500000e9');
        _maxTxAmount = maxTxAmount;
        emit MaxTxAmountUpdated(maxTxAmount);
    }
    
    function _setMinTokensBeforeSwap(uint256 minTokensBeforeSwap) external onlyOwner() {
        require(minTokensBeforeSwap >= 50e9 && minTokensBeforeSwap <= 25000e9 , 'Dimension: minTokenBeforeSwap should be in 50e9 - 25000e9');
        require(minTokensBeforeSwap > _autoSwapCallerFee , 'Dimension: minTokenBeforeSwap should be greater than autoSwapCallerFee');
        _minTokensBeforeSwap = minTokensBeforeSwap;
        emit MinTokensBeforeSwapUpdated(minTokensBeforeSwap);
    }
    
    function _setAutoSwapCallerFee(uint256 autoSwapCallerFee) external onlyOwner() {
        require(autoSwapCallerFee >= 1e9, 'Dimension: autoSwapCallerFee should be greater than 1e9');
        _autoSwapCallerFee = autoSwapCallerFee;
        emit AutoSwapCallerFeeUpdated(autoSwapCallerFee);
    }
    
    function _setMinInterestForReward(uint256 minInterestForReward) external onlyOwner() {
        _minInterestForReward = minInterestForReward;
        emit MinInterestForRewardUpdated(minInterestForReward);
    }
    
    function _setAlchemyCallerFee(uint256 alchemyCallerFee) external onlyOwner() {
        require(alchemyCallerFee >= 1 && alchemyCallerFee <= 15 , 'Dimension: alchemyCallerFee should be in 1 - 15');
        _alchemyCallerFee = alchemyCallerFee;
        emit AlchemyCallerFeeUpdated(alchemyCallerFee);
    }
    
    function _setMinTokenForAlchemy(uint256 minTokenForAlchemy) external onlyOwner() {
        _minTokenForAlchemy = minTokenForAlchemy;
        emit MinTokenForAlchemyUpdated(minTokenForAlchemy);
    }
    
    function _setAlchemyInterval(uint256 alchemyInterval) external onlyOwner() {
        _alchemyInterval = alchemyInterval;
        emit AlchemyIntervalUpdated(alchemyInterval);
    }
    
    function updateSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }
    
    function _updateWhitelist(address poolAddress, address pairTokenAddress) public onlyOwner() {
        require(poolAddress != address(0), "Dimension: Pool address is zero.");
        require(pairTokenAddress != address(0), "Dimension: Pair token address is zero.");
        require(pairTokenAddress != address(this), "Dimension: Pair token address self address.");
        require(pairTokenAddress != currentPairTokenAddress, "Dimension: Pair token address is same as current one.");
        
        currentPoolAddress = poolAddress;
        currentPairTokenAddress = pairTokenAddress;
        
        emit WhitelistUpdated(pairTokenAddress);
    }

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

    }
    
}

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":false,"internalType":"uint256","name":"rebalnaceCallerFee","type":"uint256"}],"name":"AlchemyCallerFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"rebalanceInterval","type":"uint256"}],"name":"AlchemyIntervalUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"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":"MinTokenForAlchemyUpdated","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":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":"_disableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":"alchemyCallerFee","type":"uint256"}],"name":"_setAlchemyCallerFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"alchemyInterval","type":"uint256"}],"name":"_setAlchemyInterval","outputs":[],"stateMutability":"nonpayable","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":"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":"minTokenForAlchemy","type":"uint256"}],"name":"_setMinTokenForAlchemy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"_setMinTokensBeforeSwap","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":[],"name":"alchemy","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":"getAlchemyCallerFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAlchemyInterval","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"getLastAlchemy","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":"getMinTokenForAlchemy","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":"limitTransfer","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":[{"internalType":"bool","name":"limitStatus","type":"bool"}],"name":"setLimitTransfer","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"}]

662386f26fc100006009908155660e3d2cfe61ffff19600a5560e060405260a0819052682234b6b2b739b4b7b760b91b60c09081526200004391600d919062000cdb565b506040805180820190915260038082526244494d60e81b60209092019182526200007091600e9162000cdb565b50600f805460ff191660091790556001601055601e601181905560125566071afd498d00006013556509184e72a0006014556402540be400601555642e90edd0006016556017805463ff0000001916905560026019556005601a5564e8d4a51000601b55610e10601d55348015620000e757600080fd5b5060405162006fd338038062006fd3833981810160405260408110156200010d57600080fd5b50805160209091015160006200012262000608565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35042601c556001600160601b0319606083901b16608052604051620001909062000d60565b604051809103906000f080158015620001ad573d6000803e3d6000fd5b50600680546001600160a01b0319166001600160a01b0392909216919091179055600781905560405130908390620001e59062000d6d565b6001600160a01b03928316815291166020820152604080519182900301906000f08015801562000219573d6000803e3d6000fd5b50601e60006101000a8154816001600160a01b0302191690836001600160a01b031602179055503082604051620002509062000d7b565b6001600160a01b03928316815291166020820152604080519182900301906000f08015801562000284573d6000803e3d6000fd5b50601f60006101000a8154816001600160a01b0302191690836001600160a01b03160217905550816001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620002e557600080fd5b505afa158015620002fa573d6000803e3d6000fd5b505050506040513d60208110156200031157600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929187169163ad5c464891600480820192602092909190829003018186803b1580156200036257600080fd5b505afa15801562000377573d6000803e3d6000fd5b505050506040513d60208110156200038e57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b158015620003e157600080fd5b505af1158015620003f6573d6000803e3d6000fd5b505050506040513d60208110156200040d57600080fd5b5051601880546001600160a01b0319166001600160a01b03928316179055604080516315ab88c960e31b815290519184169163ad5c464891600480820192602092909190829003018186803b1580156200046657600080fd5b505afa1580156200047b573d6000803e3d6000fd5b505050506040513d60208110156200049257600080fd5b5051601780546001600160a01b0392831664010000000002600160201b600160c01b0319909116179055601854600880546001600160a01b03191691909216179055620004e060006200060c565b6200050a62000502600754600954620006c860201b620032de1790919060201c565b60006200071b565b600160006200051862000608565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506200055160075460006200071b60201b60201c565b6006546001600160a01b03166000908152600160205260409020556200057662000608565b6001600160a01b031660006001600160a01b031660008051602062006fb3833981519152620005b8600754600954620006c860201b620032de1790919060201c565b60408051918252519081900360200190a360065460075460408051918252516001600160a01b039092169160009160008051602062006fb3833981519152919081900360200190a3505062000da0565b3390565b6200061662000608565b6000546001600160a01b0390811691161462000679576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60178054821515610100810261ff00199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b60006200071283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250620007b560201b60201c565b90505b92915050565b600060095483111562000775576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b8162000798576000620007888462000850565b5093955062000715945050505050565b6000620007a58462000850565b5092955062000715945050505050565b60008184841115620008485760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156200080c578181015183820152602001620007f2565b50505050905090810190601f1680156200083a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000806000806000806000620008788a601154601254601054620008bc60201b60201c565b9194509250905060006200088b6200096c565b9050600080806200089f8e8787876200099f565b919e509c509a509598509396509194505050505091939550919395565b600080600080620008fb85600201600a0a620008e7898b62000a3160201b620033271790919060201c565b62000a8f60201b6200339a1790919060201c565b905060006200092486600201600a0a620008e7898c62000a3160201b620033271790919060201c565b905060006200095b8262000947858d620006c860201b620032de1790919060201c565b620006c860201b620032de1790919060201c565b9a9299509097509095505050505050565b600080806200097a62000ad9565b9150915062000998818362000a8f60201b6200339a1790919060201c565b9250505090565b600080600080620009bf858962000a3160201b620033271790919060201c565b90506000620009dd868962000a3160201b620033271790919060201c565b90506000620009fb878962000a3160201b620033271790919060201c565b9050600062000a1e82620009478587620006c860201b620032de1790919060201c565b939b939a50919850919650505050505050565b60008262000a425750600062000715565b8282028284828162000a5057fe5b0414620007125760405162461bcd60e51b815260040180806020018281038252602181526020018062006f926021913960400191505060405180910390fd5b60006200071283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525062000c7260201b60201c565b600a546009546000918291825b60055481101562000c2f5782600160006005848154811062000b0457fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054118062000b6b575081600260006005848154811062000b4457fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1562000b8457600a546009549450945050505062000c6e565b62000bd3600160006005848154811062000b9a57fe5b60009182526020808320909101546001600160a01b031683528281019390935260409091019020548591620032de620006c8821b17901c565b925062000c24600260006005848154811062000beb57fe5b60009182526020808320909101546001600160a01b031683528281019390935260409091019020548491620032de620006c8821b17901c565b915060010162000ae6565b5062000c4e600954600a5462000a8f60201b6200339a1790919060201c565b82101562000c6857600a5460095493509350505062000c6e565b90925090505b9091565b6000818362000cc45760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156200080c578181015183820152602001620007f2565b50600083858162000cd157fe5b0495945050505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062000d1e57805160ff191683800117855562000d4e565b8280016001018555821562000d4e579182015b8281111562000d4e57825182559160200191906001019062000d31565b5062000d5c92915062000d89565b5090565b605c806200648283390190565b6103c080620064de83390190565b6106f4806200689e83390190565b5b8082111562000d5c576000815560010162000d8a565b60805160601c61568362000dff600039806114d0528061385152806139f65280613da05280613e9852806140be5280614aa25280614b815280614ba85280614cb05280614d3d5280614f575280614f9a52806150b552506156836000f3fe60806040526004361061039b5760003560e01c806396354704116101dc578063d73cf08011610102578063e98d2c4b116100a0578063f2fde38b1161006f578063f2fde38b14610c22578063f7505bc014610c62578063f84354f114610c8c578063fb1eb14b14610ccc576103a2565b8063e98d2c4b14610b79578063eed83f1114610ba3578063efeb97e114610bb8578063f2cc0c1814610be2576103a2565b8063e4111dd3116100dc578063e4111dd314610b25578063e4451f6614610b3a578063e563037e14610b4f578063e8598c8714610b64576103a2565b8063d73cf08014610a6b578063dc17493714610ab3578063dd62ed3e14610add576103a2565b8063a9059cbb1161017a578063c329581711610149578063c3295817146109ec578063c9e6da1914610a01578063cba0e99614610a16578063d4e51e3914610a56576103a2565b8063a9059cbb1461093b578063b6c1b37e14610981578063b7cc02f9146109ab578063c15f842c146109c0576103a2565b80639f9a4e7f116101b65780639f9a4e7f1461089f578063a0ac5e19146108cb578063a457c2d7146108e0578063a4f4a76514610926576103a2565b8063963547041461084757806397a9d5601461085c5780639d6f83e41461088a576103a2565b80634a1e7726116102c1578063715018a61161025f5780638b1bdcb21161022e5780638b1bdcb2146107f35780638da5cb5b1461080857806394e107841461081d57806395d89b4114610832576103a2565b8063715018a61461079f5780637d1db4a5146107b457806385d1e038146107c95780638aadb809146107de576103a2565b8063583e05681161029b578063583e0568146106f75780635afbfd3814610735578063674b80ee1461074a57806370a082311461075f576103a2565b80634a1e7726146106a35780634a74bb02146106cd5780634ada218b146106e2576103a2565b806323b872dd11610339578063313ce56711610308578063313ce567146105eb57806339509351146106165780633b124fe71461065c5780634549b03914610671576103a2565b806323b872dd14610532578063278d9637146105825780632d838119146105975780632ec8e523146105c1576103a2565b8063171778081161037557806317177808146104b757806318160ddd146104de578063185d374c146104f35780631bbae6e014610508576103a2565b8063053ab182146103a757806306fdde03146103d3578063095ea7b31461045d576103a2565b366103a257005b600080fd5b3480156103b357600080fd5b506103d1600480360360208110156103ca57600080fd5b5035610ce1565b005b3480156103df57600080fd5b506103e8610dfc565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561042257818101518382015260200161040a565b50505050905090810190601f16801561044f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561046957600080fd5b506104a36004803603604081101561048057600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610eb0565b604080519115158252519081900360200190f35b3480156104c357600080fd5b506104cc610ece565b60408051918252519081900360200190f35b3480156104ea57600080fd5b506104cc610ed4565b3480156104ff57600080fd5b506104cc610eda565b34801561051457600080fd5b506103d16004803603602081101561052b57600080fd5b5035610ee0565b34801561053e57600080fd5b506104a36004803603606081101561055557600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135909116906040013561100c565b34801561058e57600080fd5b506104a36110ad565b3480156105a357600080fd5b506104cc600480360360208110156105ba57600080fd5b50356110bd565b3480156105cd57600080fd5b506103d1600480360360208110156105e457600080fd5b5035611139565b3480156105f757600080fd5b50610600611205565b6040805160ff9092168252519081900360200190f35b34801561062257600080fd5b506104a36004803603604081101561063957600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813516906020013561120e565b34801561066857600080fd5b506104cc611269565b34801561067d57600080fd5b506104cc6004803603604081101561069457600080fd5b5080359060200135151561126f565b3480156106af57600080fd5b506103d1600480360360208110156106c657600080fd5b503561131b565b3480156106d957600080fd5b506104a36114b1565b3480156106ee57600080fd5b506104a36114bf565b34801561070357600080fd5b5061070c6114ce565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b34801561074157600080fd5b5061070c6114f2565b34801561075657600080fd5b506103d1611516565b34801561076b57600080fd5b506104cc6004803603602081101561078257600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166119bd565b3480156107ab57600080fd5b506103d1611a46565b3480156107c057600080fd5b506104cc611b46565b3480156107d557600080fd5b506104cc611b4c565b3480156107ea57600080fd5b506104cc611b52565b3480156107ff57600080fd5b5061070c611b58565b34801561081457600080fd5b5061070c611b74565b34801561082957600080fd5b506104cc611b90565b34801561083e57600080fd5b506103e8611bb3565b34801561085357600080fd5b506104cc611c32565b34801561086857600080fd5b50610871611c38565b6040805192835260208301919091528051918290030190f35b34801561089657600080fd5b506104cc611dcf565b3480156108ab57600080fd5b506103d1600480360360208110156108c257600080fd5b50351515611dd5565b3480156108d757600080fd5b506103d1611ed2565b3480156108ec57600080fd5b506104a36004803603604081101561090357600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135611fbb565b34801561093257600080fd5b5061070c612030565b34801561094757600080fd5b506104a36004803603604081101561095e57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813516906020013561204c565b34801561098d57600080fd5b506103d1600480360360208110156109a457600080fd5b5035612060565b3480156109b757600080fd5b506104cc61212c565b3480156109cc57600080fd5b506103d1600480360360208110156109e357600080fd5b50351515612132565b3480156109f857600080fd5b506104cc6121fc565b348015610a0d57600080fd5b5061070c612202565b348015610a2257600080fd5b506104a360048036036020811015610a3957600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661221e565b348015610a6257600080fd5b506103d1612249565b348015610a7757600080fd5b506103d160048036036040811015610a8e57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020013516612304565b348015610abf57600080fd5b506103d160048036036020811015610ad657600080fd5b5035612615565b348015610ae957600080fd5b506104cc60048036036040811015610b0057600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160200135166126e1565b348015610b3157600080fd5b506104cc612719565b348015610b4657600080fd5b506104cc61271f565b348015610b5b57600080fd5b5061070c612725565b348015610b7057600080fd5b506104cc612741565b348015610b8557600080fd5b506103d160048036036020811015610b9c57600080fd5b5035612747565b348015610baf57600080fd5b5061070c61287a565b348015610bc457600080fd5b506103d160048036036020811015610bdb57600080fd5b5035612896565b348015610bee57600080fd5b506103d160048036036020811015610c0557600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166129bf565b348015610c2e57600080fd5b506103d160048036036020811015610c4557600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16612d5f565b348015610c6e57600080fd5b506103d160048036036020811015610c8557600080fd5b5035612ee9565b348015610c9857600080fd5b506103d160048036036020811015610caf57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661300f565b348015610cd857600080fd5b506104cc6132d8565b6000610ceb6133dc565b73ffffffffffffffffffffffffffffffffffffffff811660009081526004602052604090205490915060ff1615610d6d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260378152602001806152506037913960400191505060405180910390fd5b6000610d78836133e0565b5050505073ffffffffffffffffffffffffffffffffffffffff8416600090815260016020526040902054919250610db1919050826132de565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260016020526040902055600a54610de490826132de565b600a55600b54610df49084613440565b600b55505050565b600d8054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610ea65780601f10610e7b57610100808354040283529160200191610ea6565b820191906000526020600020905b815481529060010190602001808311610e8957829003601f168201915b5050505050905090565b6000610ec4610ebd6133dc565b84846134b4565b5060015b92915050565b601a5490565b60095490565b600c5481565b610ee86133dc565b60005473ffffffffffffffffffffffffffffffffffffffff908116911614610f7157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6601c6bf52634000811015610fd1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260368152602001806154876036913960400191505060405180910390fd5b60138190556040805182815290517f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf9181900360200190a150565b60006110198484846135fb565b6110a3846110256133dc565b61109e856040518060600160405280602881526020016153216028913973ffffffffffffffffffffffffffffffffffffffff8a166000908152600360205260408120906110706133dc565b73ffffffffffffffffffffffffffffffffffffffff1681526020810191909152604001600020549190613cae565b6134b4565b5060019392505050565b6017546301000000900460ff1681565b6000600a5482111561111a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260358152602001806154bd6035913960400191505060405180910390fd5b6000611124611b90565b9050611130838261339a565b9150505b919050565b6111416133dc565b60005473ffffffffffffffffffffffffffffffffffffffff9081169116146111ca57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b601d8190556040805182815290517feaed440fcec6c61f9f769421c03cc43636a7ae7ec94dab35cf5b906d2c67b5b89181900360200190a150565b600f5460ff1690565b6000610ec461121b6133dc565b8461109e856003600061122c6133dc565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918c168152925290205490613440565b60115481565b60006009548311156112e257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b816113015760006112f2846133e0565b50939550610ec8945050505050565b600061130c846133e0565b50929550610ec8945050505050565b6113236133dc565b60005473ffffffffffffffffffffffffffffffffffffffff9081169116146113ac57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b640ba43b740081101580156113c757506516bcc41e90008111155b61141c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260398152602001806154276039913960400191505060405180910390fd5b6016548111611476576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252604681526020018061520a6046913960600191505060405180910390fd5b60148190556040805182815290517f5948780118f41f7c4577ae4619d5cbd064057bd8562d9f7b7e60324053375c009181900360200190a150565b601754610100900460ff1681565b60175462010000900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b601754640100000000900473ffffffffffffffffffffffffffffffffffffffff1690565b601780547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055601b5461155461154f6133dc565b6119bd565b10156115ab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806153c7602c913960400191505060405180910390fd5b601d54601c5401421161161f57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f44696d656e73696f6e3a20546f6f20536f6f6e2e000000000000000000000000604482015290519081900360640190fd5b42601c55601954600854604080517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015290516000936116dd936064936116d79373ffffffffffffffffffffffffffffffffffffffff909216916370a0823191602480820192602092909190829003018186803b1580156116a557600080fd5b505afa1580156116b9573d6000803e3d6000fd5b505050506040513d60208110156116cf57600080fd5b505190613327565b9061339a565b90506116e881613d5f565b50601e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16637d7c2a1c6040518163ffffffff1660e01b8152600401602060405180830381600087803b15801561175357600080fd5b505af1158015611767573d6000803e3d6000fd5b505050506040513d602081101561177d57600080fd5b5050601e546000906117a49073ffffffffffffffffffffffffffffffffffffffff166119bd565b905060006117c260646116d7601a548561332790919063ffffffff16565b905060006117d083836132de565b905060006117dc611b90565b905060006117ea8383613327565b90506118326117f98584613327565b600160006118056133dc565b73ffffffffffffffffffffffffffffffffffffffff16815260208101919091526040016000205490613440565b6001600061183e6133dc565b73ffffffffffffffffffffffffffffffffffffffff90811682526020808301939093526040918201600090812094909455601e541683526001909152812055600c5461188a9084613440565b600c5560095461189a90846132de565b600955600a546118aa90826132de565b600a556118b56133dc565b601e5460408051878152905173ffffffffffffffffffffffffffffffffffffffff9384169392909216917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3601e5460408051858152905160009273ffffffffffffffffffffffffffffffffffffffff16917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef919081900360200190a36040805184815290517f811d4760f1a92875eb76dbd3dc2359544b2f6a000ba5b78784c0b105b3469bd09181900360200190a15050601780547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905550505050565b73ffffffffffffffffffffffffffffffffffffffff811660009081526004602052604081205460ff1615611a17575073ffffffffffffffffffffffffffffffffffffffff8116600090815260026020526040902054611134565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260016020526040902054610ec8906110bd565b611a4e6133dc565b60005473ffffffffffffffffffffffffffffffffffffffff908116911614611ad757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6000805460405173ffffffffffffffffffffffffffffffffffffffff909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60135481565b601c5490565b60145481565b60085473ffffffffffffffffffffffffffffffffffffffff1681565b60005473ffffffffffffffffffffffffffffffffffffffff1690565b6000806000611b9d611c38565b9092509050611bac828261339a565b9250505090565b600e8054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610ea65780601f10610e7b57610100808354040283529160200191610ea6565b60105481565b600a546009546000918291825b600554811015611d9d57826001600060058481548110611c6157fe5b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff1683528201929092526040019020541180611ce05750816002600060058481548110611cac57fe5b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff168352820192909252604001902054115b15611cf757600a5460095494509450505050611dcb565b611d446001600060058481548110611d0b57fe5b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff16835282019290925260400190205484906132de565b9250611d936002600060058481548110611d5a57fe5b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff16835282019290925260400190205483906132de565b9150600101611c45565b50600954600a54611dad9161339a565b821015611dc557600a54600954935093505050611dcb565b90925090505b9091565b60125481565b611ddd6133dc565b60005473ffffffffffffffffffffffffffffffffffffffff908116911614611e6657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6017805482151561010081027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff9092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b611eda6133dc565b60005473ffffffffffffffffffffffffffffffffffffffff908116911614611f6357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b601780547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff16620100001790556040517f799663458a5ef2936f7fa0c99b3336c69c25890f82974f04e811e5bb359186c790600090a1565b6000610ec4611fc86133dc565b8461109e856040518060600160405280602581526020016156296025913960036000611ff26133dc565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918d16815292529020549190613cae565b60065473ffffffffffffffffffffffffffffffffffffffff1681565b6000610ec46120596133dc565b84846135fb565b6120686133dc565b60005473ffffffffffffffffffffffffffffffffffffffff9081169116146120f157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b601b8190556040805182815290517f61d458eb71ce9ecb43ee6e4ecd01c659c610f0b0d7c91ac27dc4d2e2d043c1699181900360200190a150565b601b5490565b61213a6133dc565b60005473ffffffffffffffffffffffffffffffffffffffff9081169116146121c357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b601780549115156301000000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffff909216919091179055565b60155481565b60185473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1660009081526004602052604090205460ff1690565b6122516133dc565b60005473ffffffffffffffffffffffffffffffffffffffff9081169116146122da57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b601780547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff169055565b61230c6133dc565b60005473ffffffffffffffffffffffffffffffffffffffff90811691161461239557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff821661241757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f44696d656e73696f6e3a20506f6f6c2061646472657373206973207a65726f2e604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff8116612483576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061554f6026913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff81163014156124f2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b8152602001806155c7602b913960400191505060405180910390fd5b60175473ffffffffffffffffffffffffffffffffffffffff82811664010000000090920416141561256e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260358152602001806151d56035913960400191505060405180910390fd5b601880547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84811691909117909155601780547fffffffffffffffff0000000000000000000000000000000000000000ffffffff166401000000009284169283021790556040517f86eba8651458cc924e4911e8a0a31258558de0474fdc43da05cea932cf130aad90600090a25050565b61261d6133dc565b60005473ffffffffffffffffffffffffffffffffffffffff9081169116146126a657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60158190556040805182815290517f4a20ec16ec9328712eee6894b6007fb2e5fc53c50ea4cd271fd9e792a996818e9181900360200190a150565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260036020908152604080832093909416825291909152205490565b60075481565b60195490565b601e5473ffffffffffffffffffffffffffffffffffffffff1681565b601d5490565b61274f6133dc565b60005473ffffffffffffffffffffffffffffffffffffffff9081169116146127d857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600181101580156127ea5750600f8111155b61283f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f81526020018061517d602f913960400191505060405180910390fd5b601a8190556040805182815290517fe3069d1b5c6a34789416db1d3d27b4da922676a150402a5bd9c5d12cdd9a3ea19181900360200190a150565b601f5473ffffffffffffffffffffffffffffffffffffffff1681565b61289e6133dc565b60005473ffffffffffffffffffffffffffffffffffffffff90811691161461292757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b633b9aca00811015612984576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260378152602001806155f26037913960400191505060405180910390fd5b60168190556040805182815290517f74272e6f6c75e19c6f48bb75e2724eb55e3e1726f8b81d97f1db21d22ead93dc9181900360200190a150565b6129c76133dc565b60005473ffffffffffffffffffffffffffffffffffffffff908116911614612a5057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff82161415612ad3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d81526020018061539a602d913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8116301415612b42576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018061559b602c913960400191505060405180910390fd5b60065473ffffffffffffffffffffffffffffffffffffffff82811691161415612bb6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d815260200180615287602d913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff811660009081526004602052604090205460ff1615612c35576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806152b46026913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff811660009081526001602052604090205415612cb65773ffffffffffffffffffffffffffffffffffffffff8116600090815260016020526040902054612c8f906110bd565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600260205260409020555b73ffffffffffffffffffffffffffffffffffffffff16600081815260046020526040812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660019081179091556005805491820181559091527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180547fffffffffffffffffffffffff0000000000000000000000000000000000000000169091179055565b612d676133dc565b60005473ffffffffffffffffffffffffffffffffffffffff908116911614612df057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff8116612e5c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806151576026913960400191505060405180910390fd5b6000805460405173ffffffffffffffffffffffffffffffffffffffff808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b612ef16133dc565b60005473ffffffffffffffffffffffffffffffffffffffff908116911614612f7a57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6002811115612fd4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806154f2602a913960400191505060405180910390fd5b60108190556040805182815290517f1a7d0c0e85c956e4756c1a912c675c28814c419a7e8fc66c1f0512ea332fc1909181900360200190a150565b6130176133dc565b60005473ffffffffffffffffffffffffffffffffffffffff9081169116146130a057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff811660009081526004602052604090205460ff1661311e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806155756026913960400191505060405180910390fd5b60005b6005548110156132d4578173ffffffffffffffffffffffffffffffffffffffff166005828154811061314f57fe5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff1614156132cc57600580547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81019081106131a757fe5b6000918252602090912001546005805473ffffffffffffffffffffffffffffffffffffffff90921691839081106131da57fe5b600091825260208083209190910180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff948516179055918416815260028252604080822082905560049092522080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600580548061326f57fe5b60008281526020902081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90810180547fffffffffffffffffffffffff00000000000000000000000000000000000000001690550190556132d4565b600101613121565b5050565b600b5481565b600061332083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613cae565b9392505050565b60008261333657506000610ec8565b8282028284828161334357fe5b0414613320576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806153006021913960400191505060405180910390fd5b600061332083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613f16565b3390565b60008060008060008060008060006134008a601154601254601054613f95565b9250925092506000613410611b90565b905060008060006134238e878787613fef565b919e509c509a509598509396509194505050505091939550919395565b60008282018381101561332057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff8316613520576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806153496028913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff821661358c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806152da6026913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316613667576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806153716029913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff82166136d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260278152602001806154606027913960400191505060405180910390fd5b6000811161372c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260348152602001806153f36034913960400191505060405180910390fd5b613734611b74565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156137a25750613772611b74565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156137b1575060175460ff16155b1561392757601354811115613811576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603381526020018061551c6033913960400191505060405180910390fd5b60185473ffffffffffffffffffffffffffffffffffffffff166138326133dc565b73ffffffffffffffffffffffffffffffffffffffff1614806138a657507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1661388e6133dc565b73ffffffffffffffffffffffffffffffffffffffff16145b80156138bb575060175462010000900460ff16155b1561392757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f44696d656e73696f6e3a2074726164696e672069732064697361626c65642e00604482015290519081900360640190fd5b6017546301000000900460ff16156139985765b5e620f48000811115613998576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806151ac6029913960400191505060405180910390fd5b60175460ff16613aed5760006139ad306119bd565b601454909150811080159081906139dc575060185473ffffffffffffffffffffffffffffffffffffffff163314155b80156139ef5750601754610100900460ff165b15613aea577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613a5a57600080fd5b505afa158015613a6e573d6000803e3d6000fd5b505050506040513d6020811015613a8457600080fd5b5051601754640100000000900473ffffffffffffffffffffffffffffffffffffffff90811691161415613abf57613aba8261403f565b613aea565b601754613aea90640100000000900473ffffffffffffffffffffffffffffffffffffffff16836141ec565b50505b73ffffffffffffffffffffffffffffffffffffffff831660009081526004602052604090205460ff168015613b48575073ffffffffffffffffffffffffffffffffffffffff821660009081526004602052604090205460ff16155b15613b5d57613b588383836144e2565b613ca9565b73ffffffffffffffffffffffffffffffffffffffff831660009081526004602052604090205460ff16158015613bb8575073ffffffffffffffffffffffffffffffffffffffff821660009081526004602052604090205460ff165b15613bc857613b5883838361479d565b73ffffffffffffffffffffffffffffffffffffffff831660009081526004602052604090205460ff16158015613c24575073ffffffffffffffffffffffffffffffffffffffff821660009081526004602052604090205460ff16155b15613c3457613b58838383614918565b73ffffffffffffffffffffffffffffffffffffffff831660009081526004602052604090205460ff168015613c8e575073ffffffffffffffffffffffffffffffffffffffff821660009081526004602052604090205460ff165b15613c9e57613b5883838361498a565b613ca9838383614918565b505050565b60008184841115613d57576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613d1c578181015183820152602001613d04565b50505050905090810190601f168015613d495780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600854604080517f095ea7b300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000081166004830152602482018590529151600093929092169163095ea7b39160448082019260209290919082900301818787803b158015613dfe57600080fd5b505af1158015613e12573d6000803e3d6000fd5b505050506040513d6020811015613e2857600080fd5b5050601e54604080517faf2979eb000000000000000000000000000000000000000000000000000000008152306004820152602481018590526000604482018190526064820181905273ffffffffffffffffffffffffffffffffffffffff93841660848301524260a483015291517f00000000000000000000000000000000000000000000000000000000000000009093169263af2979eb9260c480840193602093929083900390910190829087803b158015613ee457600080fd5b505af1158015613ef8573d6000803e3d6000fd5b505050506040513d6020811015613f0e57600080fd5b505192915050565b60008183613f7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201818152835160248401528351909283926044909101919085019080838360008315613d1c578181015183820152602001613d04565b506000838581613f8b57fe5b0495945050505050565b6000808080613fae60028601600a0a6116d78a8a613327565b90506000613fc660028701600a0a6116d78b8a613327565b90506000613fde82613fd88c866132de565b906132de565b9a9299509097509095505050505050565b6000808080613ffe8886613327565b9050600061400c8887613327565b9050600061401a8888613327565b9050600061402c82613fd886866132de565b939b939a50919850919650505050505050565b601780547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905560165460009061407b9083906132de565b9050600061408a82600261339a565b9050600061409883836132de565b9050476140a483614a38565b60006140b047836132de565b90506140bc8382614caa565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561412257600080fd5b505afa158015614136573d6000803e3d6000fd5b505050506040513d602081101561414c57600080fd5b50516040805186815260208101849052808201869052905173ffffffffffffffffffffffffffffffffffffffff909216917fa5edfeb09a3d7a0edab24279a4ca1c35b82bb038f8a7eb53339c904a217fe1f69181900360600190a26141b430326016546135fb565b6141bc614db8565b5050601780547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905550505050565b601780547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790556016546000906142289083906132de565b9050600061423782600261339a565b9050600061424583836132de565b601f5490915061426d90309073ffffffffffffffffffffffffffffffffffffffff16846135fb565b60008573ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156142d657600080fd5b505afa1580156142ea573d6000803e3d6000fd5b505050506040513d602081101561430057600080fd5b5051601f54604080517fa114398d00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8a8116600483015260248201889052915193945091169163a114398d9160448082019260009290919082900301818387803b15801561437f57600080fd5b505af1158015614393573d6000803e3d6000fd5b505050506000614436828873ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561440457600080fd5b505afa158015614418573d6000803e3d6000fd5b505050506040513d602081101561442e57600080fd5b5051906132de565b9050614443878483614f51565b6040805185815260208101839052808201859052905173ffffffffffffffffffffffffffffffffffffffff8916917fa5edfeb09a3d7a0edab24279a4ca1c35b82bb038f8a7eb53339c904a217fe1f6919081900360600190a26144a930326016546135fb565b6144b1614db8565b5050601780547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690555050505050565b60006144ec611b90565b9050600080600080600080614500886133e0565b9550955095509550955095506000614521888361332790919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff8c16600090815260026020526040902054909150614554908a6132de565b73ffffffffffffffffffffffffffffffffffffffff8c1660009081526002602090815260408083209390935560019052205461459090886132de565b73ffffffffffffffffffffffffffffffffffffffff8c1660009081526001602052604090205560175460ff161561465a5773ffffffffffffffffffffffffffffffffffffffff8a166000908152600160205260409020546145f19088613440565b73ffffffffffffffffffffffffffffffffffffffff808c166000818152600160209081526040918290209490945580518d815290519193928f16927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3614790565b73ffffffffffffffffffffffffffffffffffffffff8a1660009081526001602052604090205461468a9087613440565b73ffffffffffffffffffffffffffffffffffffffff8b166000908152600160205260408082209290925530815220546146c39082613440565b306000908152600160205260409020556146dd8584615132565b604080518381529051309173ffffffffffffffffffffffffffffffffffffffff8e16917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a38973ffffffffffffffffffffffffffffffffffffffff168b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a35b5050505050505050505050565b60006147a7611b90565b90506000806000806000806147bb886133e0565b95509550955095509550955060006147dc888361332790919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff8c1660009081526001602052604090205490915061480f90886132de565b73ffffffffffffffffffffffffffffffffffffffff8c1660009081526001602052604090205560175460ff16156148ac5773ffffffffffffffffffffffffffffffffffffffff8a16600090815260026020526040902054614870908a613440565b73ffffffffffffffffffffffffffffffffffffffff8b166000908152600260209081526040808320939093556001905220546145f19088613440565b73ffffffffffffffffffffffffffffffffffffffff8a166000908152600260205260409020546148dc9085613440565b73ffffffffffffffffffffffffffffffffffffffff8b1660009081526002602090815260408083209390935560019052205461468a9087613440565b6000614922611b90565b9050600080600080600080614936886133e0565b9550955095509550955095506000614957888361332790919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff8c1660009081526001602052604090205490915061459090886132de565b6000614994611b90565b90506000806000806000806149a8886133e0565b95509550955095509550955060006149c9888361332790919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff8c166000908152600260205260409020549091506149fc908a6132de565b73ffffffffffffffffffffffffffffffffffffffff8c1660009081526002602090815260408083209390935560019052205461480f90886132de565b60408051600280825260608083018452926020830190803683370190505090503081600081518110614a6657fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015614b0657600080fd5b505afa158015614b1a573d6000803e3d6000fd5b505050506040513d6020811015614b3057600080fd5b5051815182906001908110614b4157fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614ba6307f0000000000000000000000000000000000000000000000000000000000000000846134b4565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015614c65578181015183820152602001614c4d565b505050509050019650505050505050600060405180830381600087803b158015614c8e57600080fd5b505af1158015614ca2573d6000803e3d6000fd5b505050505050565b614cd5307f0000000000000000000000000000000000000000000000000000000000000000846134b4565b604080517ff305d719000000000000000000000000000000000000000000000000000000008152306004820181905260248201859052600060448301819052606483015260848201524260a4820152905173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000169163f305d71991849160c48082019260609290919082900301818588803b158015614d8757600080fd5b505af1158015614d9b573d6000803e3d6000fd5b50505050506040513d6060811015614db257600080fd5b50505050565b600754600654600091614de491613fd89073ffffffffffffffffffffffffffffffffffffffff166119bd565b9050601554811115614f4e576000614dfd82600061126f565b60185473ffffffffffffffffffffffffffffffffffffffff16600090815260016020526040902054909150614e329082613440565b60185473ffffffffffffffffffffffffffffffffffffffff9081166000908152600160205260408082209390935560065490911681522054614e7490826132de565b6006805473ffffffffffffffffffffffffffffffffffffffff90811660009081526001602090815260409182902094909455601854925481518781529151938316949216927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015614c8e57600080fd5b50565b614f7c307f0000000000000000000000000000000000000000000000000000000000000000846134b4565b8273ffffffffffffffffffffffffffffffffffffffff1663095ea7b37f0000000000000000000000000000000000000000000000000000000000000000836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561500d57600080fd5b505af1158015615021573d6000803e3d6000fd5b505050506040513d602081101561503757600080fd5b5050604080517fe8e33700000000000000000000000000000000000000000000000000000000008152306004820181905273ffffffffffffffffffffffffffffffffffffffff8681166024840152604483018690526064830185905260006084840181905260a4840181905260c48401929092524260e484015292517f00000000000000000000000000000000000000000000000000000000000000009093169263e8e3370092610104808201936060939283900390910190829087803b15801561510157600080fd5b505af1158015615115573d6000803e3d6000fd5b505050506040513d606081101561512b57600080fd5b5050505050565b600a5461513f90836132de565b600a55600b5461514f9082613440565b600b55505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737344696d656e73696f6e3a20616c6368656d7943616c6c65724665652073686f756c6420626520696e2031202d2031354275792f53656c6c206c696d697474656420746f203230306b20546f6b656e207269676874206e6f7744696d656e73696f6e3a205061697220746f6b656e20616464726573732069732073616d652061732063757272656e74206f6e652e44696d656e73696f6e3a206d696e546f6b656e4265666f7265537761702073686f756c642062652067726561746572207468616e206175746f5377617043616c6c657246656544696d656e73696f6e3a204578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e44696d656e73696f6e3a2057652063616e206e6f74206578636c75646520726577656172642077616c6c65742e44696d656e73696f6e3a204163636f756e7420697320616c7265616479206578636c7564656444696d656e73696f6e3a20617070726f766520746f20746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636544696d656e73696f6e3a20617070726f76652066726f6d20746865207a65726f206164647265737344696d656e73696f6e3a207472616e736665722066726f6d20746865207a65726f206164647265737344696d656e73696f6e3a2057652063616e206e6f74206578636c75646520556e697377617020726f757465722e44696d656e73696f6e3a20596f752068617665206e6f7420656e6f7567682044696d656e73696f6e20746f2044696d656e73696f6e3a205472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f44696d656e73696f6e3a206d696e546f6b656e4265666f7265537761702073686f756c6420626520696e2035306539202d203235303030653944696d656e73696f6e3a207472616e7366657220746f20746865207a65726f206164647265737344696d656e73696f6e3a206d61785478416d6f756e742073686f756c642062652067726561746572207468616e20353030303030653944696d656e73696f6e3a20416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e7344696d656e73696f6e3a2066656520646563696d616c732073686f756c6420626520696e2030202d203244696d656e73696f6e3a205472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e44696d656e73696f6e3a205061697220746f6b656e2061646472657373206973207a65726f2e44696d656e73696f6e3a204163636f756e7420697320616c726561647920696e636c7564656444696d656e73696f6e3a2057652063616e206e6f74206578636c75646520636f6e74726163742073656c662e44696d656e73696f6e3a205061697220746f6b656e20616464726573732073656c6620616464726573732e44696d656e73696f6e3a206175746f5377617043616c6c65724665652073686f756c642062652067726561746572207468616e2031653945524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122078eaac6bcdac222c75a6af524e9132556e19886dbd1ed0eefc0d775a94a6baa364736f6c634300060c00336080604052348015600f57600080fd5b50603f80601d6000396000f3fe6080604052600080fdfea2646970667358221220955470cc72d4220499ac86a2d3170131c47ead06ef98abd48a44eb8afd8fc1f364736f6c634300060c003360a060405234801561001057600080fd5b506040516103c03803806103c08339818101604052604081101561003357600080fd5b508051602090910151600080546001600160a01b0319166001600160a01b03938416178155606082901b6001600160601b0319166080529116906103349061008c90398060a0528060f2528061020352506103346000f3fe60806040526004361061002d5760003560e01c8063583e0568146100395780637d7c2a1c1461007757610034565b3661003457005b600080fd5b34801561004557600080fd5b5061004e61009e565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b34801561008357600080fd5b5061008c6100c2565b60408051918252519081900360200190f35b7f000000000000000000000000000000000000000000000000000000000000000081565b60006100cd476100d0565b90565b60408051600280825260608083018452926020830190803683370190505090507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561015657600080fd5b505afa15801561016a573d6000803e3d6000fd5b505050506040513d602081101561018057600080fd5b50518151829060009061018f57fe5b73ffffffffffffffffffffffffffffffffffffffff92831660209182029290920101526000548251911690829060019081106101c757fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663b6f9de958360008430426040518663ffffffff1660e01b815260040180858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b838110156102ba5781810151838201526020016102a2565b50505050905001955050505050506000604051808303818588803b1580156102e157600080fd5b505af11580156102f5573d6000803e3d6000fd5b5050505050505056fea2646970667358221220b5f101de6298327cd3cfca9635d4cf902fae00d9111b68ac5133e49af85acc4564736f6c634300060c003360a060405234801561001057600080fd5b506040516106f43803806106f48339818101604052604081101561003357600080fd5b508051602090910151600080546001600160a01b0319166001600160a01b03938416178155606082901b6001600160601b0319166080529116906106679061008d90398060a9528061039f528061049352506106676000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c8063583e05681461003b578063a114398d1461006c575b600080fd5b6100436100a7565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b6100a56004803603604081101561008257600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356100cb565b005b7f000000000000000000000000000000000000000000000000000000000000000081565b60008273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561013457600080fd5b505afa158015610148573d6000803e3d6000fd5b505050506040513d602081101561015e57600080fd5b5051905061016c83836102be565b600061020b828573ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156101d957600080fd5b505afa1580156101ed573d6000803e3d6000fd5b505050506040513d602081101561020357600080fd5b505190610537565b60008054604080517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff92831660048201526024810185905290519394509087169263a9059cbb92604480840193602093929083900390910190829087803b15801561028c57600080fd5b505af11580156102a0573d6000803e3d6000fd5b505050506040513d60208110156102b657600080fd5b505050505050565b6040805160028082526060808301845292602083019080368337505060008054835193945073ffffffffffffffffffffffffffffffffffffffff169284925061030357fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050828160018151811061034b57fe5b73ffffffffffffffffffffffffffffffffffffffff92831660209182029290920181019190915260008054604080517f095ea7b30000000000000000000000000000000000000000000000000000000081527f000000000000000000000000000000000000000000000000000000000000000086166004820152602481018890529051919094169363095ea7b3936044808301949193928390030190829087803b1580156103f857600080fd5b505af115801561040c573d6000803e3d6000fd5b505050506040513d602081101561042257600080fd5b50506040517f5c11d795000000000000000000000000000000000000000000000000000000008152600481018381526000602483018190523060648401819052426084850181905260a060448601908152865160a4870152865173ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001696635c11d795968a96958a95909490939192909160c490910190602087810191028083838b5b838110156104f15781810151838201526020016104d9565b505050509050019650505050505050600060405180830381600087803b15801561051a57600080fd5b505af115801561052e573d6000803e3d6000fd5b50505050505050565b600061057983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610580565b9392505050565b60008184841115610629576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156105ee5781810151838201526020016105d6565b50505050905090810190601f16801561061b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50505090039056fea2646970667358221220940fa992ee4bad5f46276d70c11d65cea38279d317caf48d93457f2f90f6001264736f6c634300060c0033536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061039b5760003560e01c806396354704116101dc578063d73cf08011610102578063e98d2c4b116100a0578063f2fde38b1161006f578063f2fde38b14610c22578063f7505bc014610c62578063f84354f114610c8c578063fb1eb14b14610ccc576103a2565b8063e98d2c4b14610b79578063eed83f1114610ba3578063efeb97e114610bb8578063f2cc0c1814610be2576103a2565b8063e4111dd3116100dc578063e4111dd314610b25578063e4451f6614610b3a578063e563037e14610b4f578063e8598c8714610b64576103a2565b8063d73cf08014610a6b578063dc17493714610ab3578063dd62ed3e14610add576103a2565b8063a9059cbb1161017a578063c329581711610149578063c3295817146109ec578063c9e6da1914610a01578063cba0e99614610a16578063d4e51e3914610a56576103a2565b8063a9059cbb1461093b578063b6c1b37e14610981578063b7cc02f9146109ab578063c15f842c146109c0576103a2565b80639f9a4e7f116101b65780639f9a4e7f1461089f578063a0ac5e19146108cb578063a457c2d7146108e0578063a4f4a76514610926576103a2565b8063963547041461084757806397a9d5601461085c5780639d6f83e41461088a576103a2565b80634a1e7726116102c1578063715018a61161025f5780638b1bdcb21161022e5780638b1bdcb2146107f35780638da5cb5b1461080857806394e107841461081d57806395d89b4114610832576103a2565b8063715018a61461079f5780637d1db4a5146107b457806385d1e038146107c95780638aadb809146107de576103a2565b8063583e05681161029b578063583e0568146106f75780635afbfd3814610735578063674b80ee1461074a57806370a082311461075f576103a2565b80634a1e7726146106a35780634a74bb02146106cd5780634ada218b146106e2576103a2565b806323b872dd11610339578063313ce56711610308578063313ce567146105eb57806339509351146106165780633b124fe71461065c5780634549b03914610671576103a2565b806323b872dd14610532578063278d9637146105825780632d838119146105975780632ec8e523146105c1576103a2565b8063171778081161037557806317177808146104b757806318160ddd146104de578063185d374c146104f35780631bbae6e014610508576103a2565b8063053ab182146103a757806306fdde03146103d3578063095ea7b31461045d576103a2565b366103a257005b600080fd5b3480156103b357600080fd5b506103d1600480360360208110156103ca57600080fd5b5035610ce1565b005b3480156103df57600080fd5b506103e8610dfc565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561042257818101518382015260200161040a565b50505050905090810190601f16801561044f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561046957600080fd5b506104a36004803603604081101561048057600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610eb0565b604080519115158252519081900360200190f35b3480156104c357600080fd5b506104cc610ece565b60408051918252519081900360200190f35b3480156104ea57600080fd5b506104cc610ed4565b3480156104ff57600080fd5b506104cc610eda565b34801561051457600080fd5b506103d16004803603602081101561052b57600080fd5b5035610ee0565b34801561053e57600080fd5b506104a36004803603606081101561055557600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135909116906040013561100c565b34801561058e57600080fd5b506104a36110ad565b3480156105a357600080fd5b506104cc600480360360208110156105ba57600080fd5b50356110bd565b3480156105cd57600080fd5b506103d1600480360360208110156105e457600080fd5b5035611139565b3480156105f757600080fd5b50610600611205565b6040805160ff9092168252519081900360200190f35b34801561062257600080fd5b506104a36004803603604081101561063957600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813516906020013561120e565b34801561066857600080fd5b506104cc611269565b34801561067d57600080fd5b506104cc6004803603604081101561069457600080fd5b5080359060200135151561126f565b3480156106af57600080fd5b506103d1600480360360208110156106c657600080fd5b503561131b565b3480156106d957600080fd5b506104a36114b1565b3480156106ee57600080fd5b506104a36114bf565b34801561070357600080fd5b5061070c6114ce565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b34801561074157600080fd5b5061070c6114f2565b34801561075657600080fd5b506103d1611516565b34801561076b57600080fd5b506104cc6004803603602081101561078257600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166119bd565b3480156107ab57600080fd5b506103d1611a46565b3480156107c057600080fd5b506104cc611b46565b3480156107d557600080fd5b506104cc611b4c565b3480156107ea57600080fd5b506104cc611b52565b3480156107ff57600080fd5b5061070c611b58565b34801561081457600080fd5b5061070c611b74565b34801561082957600080fd5b506104cc611b90565b34801561083e57600080fd5b506103e8611bb3565b34801561085357600080fd5b506104cc611c32565b34801561086857600080fd5b50610871611c38565b6040805192835260208301919091528051918290030190f35b34801561089657600080fd5b506104cc611dcf565b3480156108ab57600080fd5b506103d1600480360360208110156108c257600080fd5b50351515611dd5565b3480156108d757600080fd5b506103d1611ed2565b3480156108ec57600080fd5b506104a36004803603604081101561090357600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135611fbb565b34801561093257600080fd5b5061070c612030565b34801561094757600080fd5b506104a36004803603604081101561095e57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813516906020013561204c565b34801561098d57600080fd5b506103d1600480360360208110156109a457600080fd5b5035612060565b3480156109b757600080fd5b506104cc61212c565b3480156109cc57600080fd5b506103d1600480360360208110156109e357600080fd5b50351515612132565b3480156109f857600080fd5b506104cc6121fc565b348015610a0d57600080fd5b5061070c612202565b348015610a2257600080fd5b506104a360048036036020811015610a3957600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661221e565b348015610a6257600080fd5b506103d1612249565b348015610a7757600080fd5b506103d160048036036040811015610a8e57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020013516612304565b348015610abf57600080fd5b506103d160048036036020811015610ad657600080fd5b5035612615565b348015610ae957600080fd5b506104cc60048036036040811015610b0057600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160200135166126e1565b348015610b3157600080fd5b506104cc612719565b348015610b4657600080fd5b506104cc61271f565b348015610b5b57600080fd5b5061070c612725565b348015610b7057600080fd5b506104cc612741565b348015610b8557600080fd5b506103d160048036036020811015610b9c57600080fd5b5035612747565b348015610baf57600080fd5b5061070c61287a565b348015610bc457600080fd5b506103d160048036036020811015610bdb57600080fd5b5035612896565b348015610bee57600080fd5b506103d160048036036020811015610c0557600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166129bf565b348015610c2e57600080fd5b506103d160048036036020811015610c4557600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16612d5f565b348015610c6e57600080fd5b506103d160048036036020811015610c8557600080fd5b5035612ee9565b348015610c9857600080fd5b506103d160048036036020811015610caf57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661300f565b348015610cd857600080fd5b506104cc6132d8565b6000610ceb6133dc565b73ffffffffffffffffffffffffffffffffffffffff811660009081526004602052604090205490915060ff1615610d6d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260378152602001806152506037913960400191505060405180910390fd5b6000610d78836133e0565b5050505073ffffffffffffffffffffffffffffffffffffffff8416600090815260016020526040902054919250610db1919050826132de565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260016020526040902055600a54610de490826132de565b600a55600b54610df49084613440565b600b55505050565b600d8054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610ea65780601f10610e7b57610100808354040283529160200191610ea6565b820191906000526020600020905b815481529060010190602001808311610e8957829003601f168201915b5050505050905090565b6000610ec4610ebd6133dc565b84846134b4565b5060015b92915050565b601a5490565b60095490565b600c5481565b610ee86133dc565b60005473ffffffffffffffffffffffffffffffffffffffff908116911614610f7157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6601c6bf52634000811015610fd1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260368152602001806154876036913960400191505060405180910390fd5b60138190556040805182815290517f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf9181900360200190a150565b60006110198484846135fb565b6110a3846110256133dc565b61109e856040518060600160405280602881526020016153216028913973ffffffffffffffffffffffffffffffffffffffff8a166000908152600360205260408120906110706133dc565b73ffffffffffffffffffffffffffffffffffffffff1681526020810191909152604001600020549190613cae565b6134b4565b5060019392505050565b6017546301000000900460ff1681565b6000600a5482111561111a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260358152602001806154bd6035913960400191505060405180910390fd5b6000611124611b90565b9050611130838261339a565b9150505b919050565b6111416133dc565b60005473ffffffffffffffffffffffffffffffffffffffff9081169116146111ca57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b601d8190556040805182815290517feaed440fcec6c61f9f769421c03cc43636a7ae7ec94dab35cf5b906d2c67b5b89181900360200190a150565b600f5460ff1690565b6000610ec461121b6133dc565b8461109e856003600061122c6133dc565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918c168152925290205490613440565b60115481565b60006009548311156112e257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b816113015760006112f2846133e0565b50939550610ec8945050505050565b600061130c846133e0565b50929550610ec8945050505050565b6113236133dc565b60005473ffffffffffffffffffffffffffffffffffffffff9081169116146113ac57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b640ba43b740081101580156113c757506516bcc41e90008111155b61141c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260398152602001806154276039913960400191505060405180910390fd5b6016548111611476576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252604681526020018061520a6046913960600191505060405180910390fd5b60148190556040805182815290517f5948780118f41f7c4577ae4619d5cbd064057bd8562d9f7b7e60324053375c009181900360200190a150565b601754610100900460ff1681565b60175462010000900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b601754640100000000900473ffffffffffffffffffffffffffffffffffffffff1690565b601780547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055601b5461155461154f6133dc565b6119bd565b10156115ab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806153c7602c913960400191505060405180910390fd5b601d54601c5401421161161f57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f44696d656e73696f6e3a20546f6f20536f6f6e2e000000000000000000000000604482015290519081900360640190fd5b42601c55601954600854604080517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015290516000936116dd936064936116d79373ffffffffffffffffffffffffffffffffffffffff909216916370a0823191602480820192602092909190829003018186803b1580156116a557600080fd5b505afa1580156116b9573d6000803e3d6000fd5b505050506040513d60208110156116cf57600080fd5b505190613327565b9061339a565b90506116e881613d5f565b50601e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16637d7c2a1c6040518163ffffffff1660e01b8152600401602060405180830381600087803b15801561175357600080fd5b505af1158015611767573d6000803e3d6000fd5b505050506040513d602081101561177d57600080fd5b5050601e546000906117a49073ffffffffffffffffffffffffffffffffffffffff166119bd565b905060006117c260646116d7601a548561332790919063ffffffff16565b905060006117d083836132de565b905060006117dc611b90565b905060006117ea8383613327565b90506118326117f98584613327565b600160006118056133dc565b73ffffffffffffffffffffffffffffffffffffffff16815260208101919091526040016000205490613440565b6001600061183e6133dc565b73ffffffffffffffffffffffffffffffffffffffff90811682526020808301939093526040918201600090812094909455601e541683526001909152812055600c5461188a9084613440565b600c5560095461189a90846132de565b600955600a546118aa90826132de565b600a556118b56133dc565b601e5460408051878152905173ffffffffffffffffffffffffffffffffffffffff9384169392909216917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3601e5460408051858152905160009273ffffffffffffffffffffffffffffffffffffffff16917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef919081900360200190a36040805184815290517f811d4760f1a92875eb76dbd3dc2359544b2f6a000ba5b78784c0b105b3469bd09181900360200190a15050601780547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905550505050565b73ffffffffffffffffffffffffffffffffffffffff811660009081526004602052604081205460ff1615611a17575073ffffffffffffffffffffffffffffffffffffffff8116600090815260026020526040902054611134565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260016020526040902054610ec8906110bd565b611a4e6133dc565b60005473ffffffffffffffffffffffffffffffffffffffff908116911614611ad757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6000805460405173ffffffffffffffffffffffffffffffffffffffff909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60135481565b601c5490565b60145481565b60085473ffffffffffffffffffffffffffffffffffffffff1681565b60005473ffffffffffffffffffffffffffffffffffffffff1690565b6000806000611b9d611c38565b9092509050611bac828261339a565b9250505090565b600e8054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610ea65780601f10610e7b57610100808354040283529160200191610ea6565b60105481565b600a546009546000918291825b600554811015611d9d57826001600060058481548110611c6157fe5b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff1683528201929092526040019020541180611ce05750816002600060058481548110611cac57fe5b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff168352820192909252604001902054115b15611cf757600a5460095494509450505050611dcb565b611d446001600060058481548110611d0b57fe5b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff16835282019290925260400190205484906132de565b9250611d936002600060058481548110611d5a57fe5b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff16835282019290925260400190205483906132de565b9150600101611c45565b50600954600a54611dad9161339a565b821015611dc557600a54600954935093505050611dcb565b90925090505b9091565b60125481565b611ddd6133dc565b60005473ffffffffffffffffffffffffffffffffffffffff908116911614611e6657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6017805482151561010081027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff9092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b611eda6133dc565b60005473ffffffffffffffffffffffffffffffffffffffff908116911614611f6357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b601780547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff16620100001790556040517f799663458a5ef2936f7fa0c99b3336c69c25890f82974f04e811e5bb359186c790600090a1565b6000610ec4611fc86133dc565b8461109e856040518060600160405280602581526020016156296025913960036000611ff26133dc565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918d16815292529020549190613cae565b60065473ffffffffffffffffffffffffffffffffffffffff1681565b6000610ec46120596133dc565b84846135fb565b6120686133dc565b60005473ffffffffffffffffffffffffffffffffffffffff9081169116146120f157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b601b8190556040805182815290517f61d458eb71ce9ecb43ee6e4ecd01c659c610f0b0d7c91ac27dc4d2e2d043c1699181900360200190a150565b601b5490565b61213a6133dc565b60005473ffffffffffffffffffffffffffffffffffffffff9081169116146121c357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b601780549115156301000000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffff909216919091179055565b60155481565b60185473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1660009081526004602052604090205460ff1690565b6122516133dc565b60005473ffffffffffffffffffffffffffffffffffffffff9081169116146122da57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b601780547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff169055565b61230c6133dc565b60005473ffffffffffffffffffffffffffffffffffffffff90811691161461239557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff821661241757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f44696d656e73696f6e3a20506f6f6c2061646472657373206973207a65726f2e604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff8116612483576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061554f6026913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff81163014156124f2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b8152602001806155c7602b913960400191505060405180910390fd5b60175473ffffffffffffffffffffffffffffffffffffffff82811664010000000090920416141561256e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260358152602001806151d56035913960400191505060405180910390fd5b601880547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84811691909117909155601780547fffffffffffffffff0000000000000000000000000000000000000000ffffffff166401000000009284169283021790556040517f86eba8651458cc924e4911e8a0a31258558de0474fdc43da05cea932cf130aad90600090a25050565b61261d6133dc565b60005473ffffffffffffffffffffffffffffffffffffffff9081169116146126a657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60158190556040805182815290517f4a20ec16ec9328712eee6894b6007fb2e5fc53c50ea4cd271fd9e792a996818e9181900360200190a150565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260036020908152604080832093909416825291909152205490565b60075481565b60195490565b601e5473ffffffffffffffffffffffffffffffffffffffff1681565b601d5490565b61274f6133dc565b60005473ffffffffffffffffffffffffffffffffffffffff9081169116146127d857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600181101580156127ea5750600f8111155b61283f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f81526020018061517d602f913960400191505060405180910390fd5b601a8190556040805182815290517fe3069d1b5c6a34789416db1d3d27b4da922676a150402a5bd9c5d12cdd9a3ea19181900360200190a150565b601f5473ffffffffffffffffffffffffffffffffffffffff1681565b61289e6133dc565b60005473ffffffffffffffffffffffffffffffffffffffff90811691161461292757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b633b9aca00811015612984576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260378152602001806155f26037913960400191505060405180910390fd5b60168190556040805182815290517f74272e6f6c75e19c6f48bb75e2724eb55e3e1726f8b81d97f1db21d22ead93dc9181900360200190a150565b6129c76133dc565b60005473ffffffffffffffffffffffffffffffffffffffff908116911614612a5057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff82161415612ad3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d81526020018061539a602d913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8116301415612b42576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018061559b602c913960400191505060405180910390fd5b60065473ffffffffffffffffffffffffffffffffffffffff82811691161415612bb6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d815260200180615287602d913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff811660009081526004602052604090205460ff1615612c35576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806152b46026913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff811660009081526001602052604090205415612cb65773ffffffffffffffffffffffffffffffffffffffff8116600090815260016020526040902054612c8f906110bd565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600260205260409020555b73ffffffffffffffffffffffffffffffffffffffff16600081815260046020526040812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660019081179091556005805491820181559091527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180547fffffffffffffffffffffffff0000000000000000000000000000000000000000169091179055565b612d676133dc565b60005473ffffffffffffffffffffffffffffffffffffffff908116911614612df057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff8116612e5c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806151576026913960400191505060405180910390fd5b6000805460405173ffffffffffffffffffffffffffffffffffffffff808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b612ef16133dc565b60005473ffffffffffffffffffffffffffffffffffffffff908116911614612f7a57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6002811115612fd4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806154f2602a913960400191505060405180910390fd5b60108190556040805182815290517f1a7d0c0e85c956e4756c1a912c675c28814c419a7e8fc66c1f0512ea332fc1909181900360200190a150565b6130176133dc565b60005473ffffffffffffffffffffffffffffffffffffffff9081169116146130a057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff811660009081526004602052604090205460ff1661311e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806155756026913960400191505060405180910390fd5b60005b6005548110156132d4578173ffffffffffffffffffffffffffffffffffffffff166005828154811061314f57fe5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff1614156132cc57600580547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81019081106131a757fe5b6000918252602090912001546005805473ffffffffffffffffffffffffffffffffffffffff90921691839081106131da57fe5b600091825260208083209190910180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff948516179055918416815260028252604080822082905560049092522080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600580548061326f57fe5b60008281526020902081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90810180547fffffffffffffffffffffffff00000000000000000000000000000000000000001690550190556132d4565b600101613121565b5050565b600b5481565b600061332083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613cae565b9392505050565b60008261333657506000610ec8565b8282028284828161334357fe5b0414613320576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806153006021913960400191505060405180910390fd5b600061332083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613f16565b3390565b60008060008060008060008060006134008a601154601254601054613f95565b9250925092506000613410611b90565b905060008060006134238e878787613fef565b919e509c509a509598509396509194505050505091939550919395565b60008282018381101561332057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff8316613520576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806153496028913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff821661358c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806152da6026913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316613667576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806153716029913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff82166136d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260278152602001806154606027913960400191505060405180910390fd5b6000811161372c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260348152602001806153f36034913960400191505060405180910390fd5b613734611b74565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156137a25750613772611b74565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156137b1575060175460ff16155b1561392757601354811115613811576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603381526020018061551c6033913960400191505060405180910390fd5b60185473ffffffffffffffffffffffffffffffffffffffff166138326133dc565b73ffffffffffffffffffffffffffffffffffffffff1614806138a657507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1661388e6133dc565b73ffffffffffffffffffffffffffffffffffffffff16145b80156138bb575060175462010000900460ff16155b1561392757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f44696d656e73696f6e3a2074726164696e672069732064697361626c65642e00604482015290519081900360640190fd5b6017546301000000900460ff16156139985765b5e620f48000811115613998576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806151ac6029913960400191505060405180910390fd5b60175460ff16613aed5760006139ad306119bd565b601454909150811080159081906139dc575060185473ffffffffffffffffffffffffffffffffffffffff163314155b80156139ef5750601754610100900460ff165b15613aea577f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613a5a57600080fd5b505afa158015613a6e573d6000803e3d6000fd5b505050506040513d6020811015613a8457600080fd5b5051601754640100000000900473ffffffffffffffffffffffffffffffffffffffff90811691161415613abf57613aba8261403f565b613aea565b601754613aea90640100000000900473ffffffffffffffffffffffffffffffffffffffff16836141ec565b50505b73ffffffffffffffffffffffffffffffffffffffff831660009081526004602052604090205460ff168015613b48575073ffffffffffffffffffffffffffffffffffffffff821660009081526004602052604090205460ff16155b15613b5d57613b588383836144e2565b613ca9565b73ffffffffffffffffffffffffffffffffffffffff831660009081526004602052604090205460ff16158015613bb8575073ffffffffffffffffffffffffffffffffffffffff821660009081526004602052604090205460ff165b15613bc857613b5883838361479d565b73ffffffffffffffffffffffffffffffffffffffff831660009081526004602052604090205460ff16158015613c24575073ffffffffffffffffffffffffffffffffffffffff821660009081526004602052604090205460ff16155b15613c3457613b58838383614918565b73ffffffffffffffffffffffffffffffffffffffff831660009081526004602052604090205460ff168015613c8e575073ffffffffffffffffffffffffffffffffffffffff821660009081526004602052604090205460ff165b15613c9e57613b5883838361498a565b613ca9838383614918565b505050565b60008184841115613d57576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613d1c578181015183820152602001613d04565b50505050905090810190601f168015613d495780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600854604080517f095ea7b300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81166004830152602482018590529151600093929092169163095ea7b39160448082019260209290919082900301818787803b158015613dfe57600080fd5b505af1158015613e12573d6000803e3d6000fd5b505050506040513d6020811015613e2857600080fd5b5050601e54604080517faf2979eb000000000000000000000000000000000000000000000000000000008152306004820152602481018590526000604482018190526064820181905273ffffffffffffffffffffffffffffffffffffffff93841660848301524260a483015291517f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9093169263af2979eb9260c480840193602093929083900390910190829087803b158015613ee457600080fd5b505af1158015613ef8573d6000803e3d6000fd5b505050506040513d6020811015613f0e57600080fd5b505192915050565b60008183613f7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201818152835160248401528351909283926044909101919085019080838360008315613d1c578181015183820152602001613d04565b506000838581613f8b57fe5b0495945050505050565b6000808080613fae60028601600a0a6116d78a8a613327565b90506000613fc660028701600a0a6116d78b8a613327565b90506000613fde82613fd88c866132de565b906132de565b9a9299509097509095505050505050565b6000808080613ffe8886613327565b9050600061400c8887613327565b9050600061401a8888613327565b9050600061402c82613fd886866132de565b939b939a50919850919650505050505050565b601780547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905560165460009061407b9083906132de565b9050600061408a82600261339a565b9050600061409883836132de565b9050476140a483614a38565b60006140b047836132de565b90506140bc8382614caa565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561412257600080fd5b505afa158015614136573d6000803e3d6000fd5b505050506040513d602081101561414c57600080fd5b50516040805186815260208101849052808201869052905173ffffffffffffffffffffffffffffffffffffffff909216917fa5edfeb09a3d7a0edab24279a4ca1c35b82bb038f8a7eb53339c904a217fe1f69181900360600190a26141b430326016546135fb565b6141bc614db8565b5050601780547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905550505050565b601780547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790556016546000906142289083906132de565b9050600061423782600261339a565b9050600061424583836132de565b601f5490915061426d90309073ffffffffffffffffffffffffffffffffffffffff16846135fb565b60008573ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156142d657600080fd5b505afa1580156142ea573d6000803e3d6000fd5b505050506040513d602081101561430057600080fd5b5051601f54604080517fa114398d00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8a8116600483015260248201889052915193945091169163a114398d9160448082019260009290919082900301818387803b15801561437f57600080fd5b505af1158015614393573d6000803e3d6000fd5b505050506000614436828873ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561440457600080fd5b505afa158015614418573d6000803e3d6000fd5b505050506040513d602081101561442e57600080fd5b5051906132de565b9050614443878483614f51565b6040805185815260208101839052808201859052905173ffffffffffffffffffffffffffffffffffffffff8916917fa5edfeb09a3d7a0edab24279a4ca1c35b82bb038f8a7eb53339c904a217fe1f6919081900360600190a26144a930326016546135fb565b6144b1614db8565b5050601780547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690555050505050565b60006144ec611b90565b9050600080600080600080614500886133e0565b9550955095509550955095506000614521888361332790919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff8c16600090815260026020526040902054909150614554908a6132de565b73ffffffffffffffffffffffffffffffffffffffff8c1660009081526002602090815260408083209390935560019052205461459090886132de565b73ffffffffffffffffffffffffffffffffffffffff8c1660009081526001602052604090205560175460ff161561465a5773ffffffffffffffffffffffffffffffffffffffff8a166000908152600160205260409020546145f19088613440565b73ffffffffffffffffffffffffffffffffffffffff808c166000818152600160209081526040918290209490945580518d815290519193928f16927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3614790565b73ffffffffffffffffffffffffffffffffffffffff8a1660009081526001602052604090205461468a9087613440565b73ffffffffffffffffffffffffffffffffffffffff8b166000908152600160205260408082209290925530815220546146c39082613440565b306000908152600160205260409020556146dd8584615132565b604080518381529051309173ffffffffffffffffffffffffffffffffffffffff8e16917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a38973ffffffffffffffffffffffffffffffffffffffff168b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a35b5050505050505050505050565b60006147a7611b90565b90506000806000806000806147bb886133e0565b95509550955095509550955060006147dc888361332790919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff8c1660009081526001602052604090205490915061480f90886132de565b73ffffffffffffffffffffffffffffffffffffffff8c1660009081526001602052604090205560175460ff16156148ac5773ffffffffffffffffffffffffffffffffffffffff8a16600090815260026020526040902054614870908a613440565b73ffffffffffffffffffffffffffffffffffffffff8b166000908152600260209081526040808320939093556001905220546145f19088613440565b73ffffffffffffffffffffffffffffffffffffffff8a166000908152600260205260409020546148dc9085613440565b73ffffffffffffffffffffffffffffffffffffffff8b1660009081526002602090815260408083209390935560019052205461468a9087613440565b6000614922611b90565b9050600080600080600080614936886133e0565b9550955095509550955095506000614957888361332790919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff8c1660009081526001602052604090205490915061459090886132de565b6000614994611b90565b90506000806000806000806149a8886133e0565b95509550955095509550955060006149c9888361332790919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff8c166000908152600260205260409020549091506149fc908a6132de565b73ffffffffffffffffffffffffffffffffffffffff8c1660009081526002602090815260408083209390935560019052205461480f90886132de565b60408051600280825260608083018452926020830190803683370190505090503081600081518110614a6657fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015614b0657600080fd5b505afa158015614b1a573d6000803e3d6000fd5b505050506040513d6020811015614b3057600080fd5b5051815182906001908110614b4157fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614ba6307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846134b4565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015614c65578181015183820152602001614c4d565b505050509050019650505050505050600060405180830381600087803b158015614c8e57600080fd5b505af1158015614ca2573d6000803e3d6000fd5b505050505050565b614cd5307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846134b4565b604080517ff305d719000000000000000000000000000000000000000000000000000000008152306004820181905260248201859052600060448301819052606483015260848201524260a4820152905173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169163f305d71991849160c48082019260609290919082900301818588803b158015614d8757600080fd5b505af1158015614d9b573d6000803e3d6000fd5b50505050506040513d6060811015614db257600080fd5b50505050565b600754600654600091614de491613fd89073ffffffffffffffffffffffffffffffffffffffff166119bd565b9050601554811115614f4e576000614dfd82600061126f565b60185473ffffffffffffffffffffffffffffffffffffffff16600090815260016020526040902054909150614e329082613440565b60185473ffffffffffffffffffffffffffffffffffffffff9081166000908152600160205260408082209390935560065490911681522054614e7490826132de565b6006805473ffffffffffffffffffffffffffffffffffffffff90811660009081526001602090815260409182902094909455601854925481518781529151938316949216927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015614c8e57600080fd5b50565b614f7c307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846134b4565b8273ffffffffffffffffffffffffffffffffffffffff1663095ea7b37f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561500d57600080fd5b505af1158015615021573d6000803e3d6000fd5b505050506040513d602081101561503757600080fd5b5050604080517fe8e33700000000000000000000000000000000000000000000000000000000008152306004820181905273ffffffffffffffffffffffffffffffffffffffff8681166024840152604483018690526064830185905260006084840181905260a4840181905260c48401929092524260e484015292517f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9093169263e8e3370092610104808201936060939283900390910190829087803b15801561510157600080fd5b505af1158015615115573d6000803e3d6000fd5b505050506040513d606081101561512b57600080fd5b5050505050565b600a5461513f90836132de565b600a55600b5461514f9082613440565b600b55505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737344696d656e73696f6e3a20616c6368656d7943616c6c65724665652073686f756c6420626520696e2031202d2031354275792f53656c6c206c696d697474656420746f203230306b20546f6b656e207269676874206e6f7744696d656e73696f6e3a205061697220746f6b656e20616464726573732069732073616d652061732063757272656e74206f6e652e44696d656e73696f6e3a206d696e546f6b656e4265666f7265537761702073686f756c642062652067726561746572207468616e206175746f5377617043616c6c657246656544696d656e73696f6e3a204578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e44696d656e73696f6e3a2057652063616e206e6f74206578636c75646520726577656172642077616c6c65742e44696d656e73696f6e3a204163636f756e7420697320616c7265616479206578636c7564656444696d656e73696f6e3a20617070726f766520746f20746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636544696d656e73696f6e3a20617070726f76652066726f6d20746865207a65726f206164647265737344696d656e73696f6e3a207472616e736665722066726f6d20746865207a65726f206164647265737344696d656e73696f6e3a2057652063616e206e6f74206578636c75646520556e697377617020726f757465722e44696d656e73696f6e3a20596f752068617665206e6f7420656e6f7567682044696d656e73696f6e20746f2044696d656e73696f6e3a205472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f44696d656e73696f6e3a206d696e546f6b656e4265666f7265537761702073686f756c6420626520696e2035306539202d203235303030653944696d656e73696f6e3a207472616e7366657220746f20746865207a65726f206164647265737344696d656e73696f6e3a206d61785478416d6f756e742073686f756c642062652067726561746572207468616e20353030303030653944696d656e73696f6e3a20416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e7344696d656e73696f6e3a2066656520646563696d616c732073686f756c6420626520696e2030202d203244696d656e73696f6e3a205472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e44696d656e73696f6e3a205061697220746f6b656e2061646472657373206973207a65726f2e44696d656e73696f6e3a204163636f756e7420697320616c726561647920696e636c7564656444696d656e73696f6e3a2057652063616e206e6f74206578636c75646520636f6e74726163742073656c662e44696d656e73696f6e3a205061697220746f6b656e20616464726573732073656c6620616464726573732e44696d656e73696f6e3a206175746f5377617043616c6c65724665652073686f756c642062652067726561746572207468616e2031653945524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122078eaac6bcdac222c75a6af524e9132556e19886dbd1ed0eefc0d775a94a6baa364736f6c634300060c0033

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

0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000000000000000000000000000000000000000000000

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

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


Deployed Bytecode Sourcemap

22173:27869:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28335:388;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28335:388:0;;:::i;:::-;;26188:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27100:161;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27100:161:0;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;46205:103;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;26465:95;;;;;;;;;;;;;:::i;22925:26::-;;;;;;;;;;;;;:::i;46930:261::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46930:261:0;;:::i;27269:313::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27269:313:0;;;;;;;;;;;;;;;;;;:::i;23497:33::-;;;;;;;;;;;;;:::i;29175:264::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29175:264:0;;:::i;48768:183::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48768:183:0;;:::i;26374:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27590:218;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27590:218:0;;;;;;;;;:::i;23116:27::-;;;;;;;;;;;;;:::i;28731:436::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28731:436:0;;;;;;;;;:::i;47203:485::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47203:485:0;;:::i;23424:33::-;;;;;;;;;;;;;:::i;23464:26::-;;;;;;;;;;;;;:::i;22294:52::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45962:116;;;;;;;;;;;;;:::i;37297:1253::-;;;;;;;;;;;;;:::i;26568:198::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26568:198:0;;;;:::i;17302:148::-;;;;;;;;;;;;;:::i;23185:39::-;;;;;;;;;;;;;:::i;46439:93::-;;;;;;;;;;;;;:::i;23231:45::-;;;;;;;;;;;;;:::i;22702:30::-;;;;;;;;;;;;;:::i;16660:79::-;;;;;;;;;;;;;:::i;45102:162::-;;;;;;;;;;;;;:::i;26279:87::-;;;;;;;;;;;;;:::i;23078:31::-;;;;;;;;;;;;;:::i;45272:560::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;23150:28;;;;;;;;;;;;;:::i;48963:174::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48963:174:0;;;;:::i;49816:114::-;;;;;;;;;;;;;:::i;27816:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27816:269:0;;;;;;;;;:::i;22621:28::-;;;;;;;;;;;;;:::i;26774:167::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26774:167:0;;;;;;;;;:::i;48555:201::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48555:201:0;;:::i;46320:107::-;;;;;;;;;;;;;:::i;28213:110::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28213:110:0;;;;:::i;23283:43::-;;;;;;;;;;;;;:::i;45844:106::-;;;;;;;;;;;;;:::i;28093:110::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28093:110:0;;;;:::i;49942:91::-;;;;;;;;;;;;;:::i;49149:659::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49149:659:0;;;;;;;;;;;:::i;48010:213::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48010:213:0;;:::i;26949:143::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26949:143:0;;;;;;;;;;;:::i;22656:39::-;;;;;;;;;;;;;:::i;46086:107::-;;;;;;;;;;;;;:::i;25017:24::-;;;;;;;;;;;;;:::i;46544:101::-;;;;;;;;;;;;;:::i;48235:308::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48235:308:0;;:::i;25048:20::-;;;;;;;;;;;;;:::i;47700:298::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47700:298:0;;:::i;29447:660::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29447:660:0;;;;:::i;17605:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17605:244:0;;;;:::i;46657:261::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46657:261:0;;:::i;30115:489::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30115:489:0;;;;:::i;22893:25::-;;;;;;;;;;;;;:::i;28335:388::-;28387:14;28404:12;:10;:12::i;:::-;28436:19;;;;;;;:11;:19;;;;;;28387:29;;-1:-1:-1;28436:19:0;;28435:20;28427:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28527:15;28551:19;28562:7;28551:10;:19::i;:::-;-1:-1:-1;;;;28599:15:0;;;;;;;:7;:15;;;;;;28526:44;;-1:-1:-1;28599:28:0;;:15;-1:-1:-1;28526:44:0;28599:19;:28::i;:::-;28581:15;;;;;;;:7;:15;;;;;:46;28648:7;;:20;;28660:7;28648:11;:20::i;:::-;28638:7;:30;28692:10;;:23;;28707:7;28692:14;:23::i;:::-;28679:10;:36;-1:-1:-1;;;28335:388:0:o;26188:83::-;26258:5;26251:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26225:13;;26251:12;;26258:5;;26251:12;;26258:5;26251:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26188:83;:::o;27100:161::-;27175:4;27192:39;27201:12;:10;:12::i;:::-;27215:7;27224:6;27192:8;:39::i;:::-;-1:-1:-1;27249:4:0;27100:161;;;;;:::o;46205:103::-;46283:17;;46205:103;:::o;26465:95::-;26545:7;;26465:95;:::o;22925:26::-;;;;:::o;46930:261::-;16882:12;:10;:12::i;:::-;16872:6;;:22;:6;;;:22;;;16864:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47031:8:::1;47016:11;:23;;47008:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47110:12;:26:::0;;;47152:31:::1;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;46930:261:::0;:::o;27269:313::-;27367:4;27384:36;27394:6;27402:9;27413:6;27384:9;:36::i;:::-;27431:121;27440:6;27448:12;:10;:12::i;:::-;27462:89;27500:6;27462:89;;;;;;;;;;;;;;;;;:19;;;;;;;:11;:19;;;;;;27482:12;:10;:12::i;:::-;27462:33;;;;;;;;;;;;;-1:-1:-1;27462:33:0;;;:89;:37;:89::i;:::-;27431:8;:121::i;:::-;-1:-1:-1;27570:4:0;27269:313;;;;;:::o;23497:33::-;;;;;;;;;:::o;29175:264::-;29241:7;29280;;29269;:18;;29261:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29356:19;29379:10;:8;:10::i;:::-;29356:33;-1:-1:-1;29407:24:0;:7;29356:33;29407:11;:24::i;:::-;29400:31;;;29175:264;;;;:::o;48768:183::-;16882:12;:10;:12::i;:::-;16872:6;;:22;:6;;;:22;;;16864:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48854:16:::1;:34:::0;;;48904:39:::1;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;48768:183:::0;:::o;26374:83::-;26440:9;;;;26374:83;:::o;27590:218::-;27678:4;27695:83;27704:12;:10;:12::i;:::-;27718:7;27727:50;27766:10;27727:11;:25;27739:12;:10;:12::i;:::-;27727:25;;;;;;;;;;;;;;;;;;-1:-1:-1;27727:25:0;;;:34;;;;;;;;;;;:38;:50::i;23116:27::-;;;;:::o;28731:436::-;28821:7;28860;;28849;:18;;28841:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28919:17;28914:246;;28954:15;28978:19;28989:7;28978:10;:19::i;:::-;-1:-1:-1;28953:44:0;;-1:-1:-1;29012:14:0;;-1:-1:-1;;;;;29012:14:0;28914:246;29061:23;29092:19;29103:7;29092:10;:19::i;:::-;-1:-1:-1;29059:52:0;;-1:-1:-1;29126:22:0;;-1:-1:-1;;;;;29126:22:0;47203:485;16882:12;:10;:12::i;:::-;16872:6;;:22;:6;;;:22;;;16864:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47328:4:::1;47305:19;:27;;:61;;;;;47359:7;47336:19;:30;;47305:61;47297:132;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47470:18;;47448:19;:40;47440:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47575:20;:42:::0;;;47633:47:::1;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;47203:485:::0;:::o;23424:33::-;;;;;;;;;:::o;23464:26::-;;;;;;;;;:::o;22294:52::-;;;:::o;45962:116::-;46047:23;;;;;;;;45962:116::o;37297:1253::-;24927:16;:23;;;;24946:4;24927:23;;;37381:19:::1;::::0;37354:23:::1;37364:12;:10;:12::i;:::-;37354:9;:23::i;:::-;:46;;37346:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37489:16;;37474:12;;:31;37468:3;:37;37460:70;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;37566:3;37551:12;:18:::0;37660:19:::1;::::0;37614:15:::1;::::0;37607:48:::1;::::0;;;;;37649:4:::1;37607:48;::::0;::::1;::::0;;;37582:22:::1;::::0;37607:82:::1;::::0;37685:3:::1;::::0;37607:73:::1;::::0;37614:15:::1;::::0;;::::1;::::0;37607:33:::1;::::0;:48;;;;;::::1;::::0;;;;;;;;;37614:15;37607:48;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;37607:48:0;;:52:::1;:73::i;:::-;:77:::0;::::1;:82::i;:::-;37582:107;;37702:34;37721:14;37702:18;:34::i;:::-;;37747:8;;;;;;;;;;;:18;;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;;37825:8:0::1;::::0;37780:24:::1;::::0;37807:28:::1;::::0;37825:8:::1;;37807:9;:28::i;:::-;37780:55;;37846:24;37873:48;37917:3;37873:39;37894:17;;37873:16;:20;;:39;;;;:::i;:48::-;37846:75:::0;-1:-1:-1;37932:13:0::1;37948:38;:16:::0;37846:75;37948:20:::1;:38::i;:::-;37932:54;;38007:19;38030:10;:8;:10::i;:::-;38007:33:::0;-1:-1:-1;38051:13:0::1;38068:22;:5:::0;38007:33;38068:9:::1;:22::i;:::-;38051:39:::0;-1:-1:-1;38135:60:0::1;38161:33;:16:::0;38182:11;38161:20:::1;:33::i;:::-;38135:7;:21;38143:12;:10;:12::i;:::-;38135:21;;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;38135:21:0;;;:25:::1;:60::i;:::-;38111:7;:21;38119:12;:10;:12::i;:::-;38111:21;::::0;;::::1;::::0;;::::1;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;38111:21:0;;;:84;;;;38222:8:::1;::::0;::::1;38206:26:::0;;:7:::1;:26:::0;;;;;:30;38271:11:::1;::::0;:22:::1;::::0;38287:5;38271:15:::1;:22::i;:::-;38257:11;:36:::0;38314:7:::1;::::0;:18:::1;::::0;38326:5;38314:11:::1;:18::i;:::-;38304:7;:28:::0;38353:7:::1;::::0;:18:::1;::::0;38365:5;38353:11:::1;:18::i;:::-;38343:7;:28:::0;38417:12:::1;:10;:12::i;:::-;38406:8;::::0;38389:59:::1;::::0;;;;;;;::::1;::::0;;::::1;::::0;38406:8;;;::::1;::::0;38389:59:::1;::::0;;;;::::1;::::0;;::::1;38481:8;::::0;38464:46:::1;::::0;;;;;;;38500:1:::1;::::0;38464:46:::1;38481:8;::::0;38464:46:::1;::::0;;;;;::::1;::::0;;::::1;38526:16;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;-1:-1:-1::0;;24973:16:0;:24;;;;;;-1:-1:-1;;;;37297:1253:0:o;26568:198::-;26658:20;;;26634:7;26658:20;;;:11;:20;;;;;;;;26654:49;;;-1:-1:-1;26687:16:0;;;;;;;:7;:16;;;;;;26680:23;;26654:49;26741:16;;;;;;;:7;:16;;;;;;26721:37;;:19;:37::i;17302:148::-;16882:12;:10;:12::i;:::-;16872:6;;:22;:6;;;:22;;;16864:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17409:1:::1;17393:6:::0;;17372:40:::1;::::0;::::1;17393:6:::0;;::::1;::::0;17372:40:::1;::::0;17409:1;;17372:40:::1;17440:1;17423:19:::0;;;::::1;::::0;;17302:148::o;23185:39::-;;;;:::o;46439:93::-;46512:12;;46439:93;:::o;23231:45::-;;;;:::o;22702:30::-;;;;;;:::o;16660:79::-;16698:7;16725:6;;;16660:79;:::o;45102:162::-;45142:7;45163:15;45180;45199:19;:17;:19::i;:::-;45162:56;;-1:-1:-1;45162:56:0;-1:-1:-1;45236:20:0;45162:56;;45236:11;:20::i;:::-;45229:27;;;;45102:162;:::o;26279:87::-;26351:7;26344:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26318:13;;26344:14;;26351:7;;26344:14;;26351:7;26344:14;;;;;;;;;;;;;;;;;;;;;;;;23078:31;;;;:::o;45272:560::-;45368:7;;45404;;45321;;;;;45428:289;45452:9;:16;45448:20;;45428:289;;;45518:7;45494;:21;45502:9;45512:1;45502:12;;;;;;;;;;;;;;;;;;;;;;45494:21;;;;;;;;;;;;;:31;;:66;;;45553:7;45529;:21;45537:9;45547:1;45537:12;;;;;;;;;;;;;;;;;;;;;;45529:21;;;;;;;;;;;;;:31;45494:66;45490:97;;;45570:7;;45579;;45562:25;;;;;;;;;45490:97;45612:34;45624:7;:21;45632:9;45642:1;45632:12;;;;;;;;;;;;;;;;;;;;;;45624:21;;;;;;;;;;;;;45612:7;;:11;:34::i;:::-;45602:44;;45671:34;45683:7;:21;45691:9;45701:1;45691:12;;;;;;;;;;;;;;;;;;;;;;45683:21;;;;;;;;;;;;;45671:7;;:11;:34::i;:::-;45661:44;-1:-1:-1;45470:3:0;;45428:289;;;-1:-1:-1;45753:7:0;;45741;;:20;;:11;:20::i;:::-;45731:7;:30;45727:61;;;45771:7;;45780;;45763:25;;;;;;;;45727:61;45807:7;;-1:-1:-1;45816:7:0;-1:-1:-1;45272:560:0;;;:::o;23150:28::-;;;;:::o;48963:174::-;16882:12;:10;:12::i;:::-;16872:6;;:22;:6;;;:22;;;16864:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49043:21:::1;:32:::0;;;::::1;;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;;49091:38:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;48963:174:::0;:::o;49816:114::-;16882:12;:10;:12::i;:::-;16872:6;;:22;:6;;;:22;;;16864:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49874:14:::1;:21:::0;;;::::1;::::0;::::1;::::0;;49906:16:::1;::::0;::::1;::::0;49874:21;;49906:16:::1;49816:114::o:0;27816:269::-;27909:4;27926:129;27935:12;:10;:12::i;:::-;27949:7;27958:96;27997:15;27958:96;;;;;;;;;;;;;;;;;:11;:25;27970:12;:10;:12::i;:::-;27958:25;;;;;;;;;;;;;;;;;;-1:-1:-1;27958:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;22621:28::-;;;;;;:::o;26774:167::-;26852:4;26869:42;26879:12;:10;:12::i;:::-;26893:9;26904:6;26869:9;:42::i;48555:201::-;16882:12;:10;:12::i;:::-;16872:6;;:22;:6;;;:22;;;16864:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48647:19:::1;:40:::0;;;48703:45:::1;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;48555:201:::0;:::o;46320:107::-;46400:19;;46320:107;:::o;28213:110::-;16882:12;:10;:12::i;:::-;16872:6;;:22;:6;;;:22;;;16864:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28290:13:::1;:25:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;28213:110::o;23283:43::-;;;;:::o;45844:106::-;45924:18;;;;45844:106;:::o;28093:110::-;28175:20;;28151:4;28175:20;;;:11;:20;;;;;;;;;28093:110::o;49942:91::-;16882:12;:10;:12::i;:::-;16872:6;;:22;:6;;;:22;;;16864:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50001:14:::1;:22:::0;;;::::1;::::0;;49942:91::o;49149:659::-;16882:12;:10;:12::i;:::-;16872:6;;:22;:6;;;:22;;;16864:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49260:25:::1;::::0;::::1;49252:70;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;;;;;;;::::1;::::0;;;;;;;;;;;;;::::1;;49341:30;::::0;::::1;49333:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49433:33;::::0;::::1;49461:4;49433:33;;49425:89;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49553:23;::::0;::::1;49533:43:::0;;::::1;49553:23:::0;;;::::1;;49533:43;;49525:109;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49655:18;:32:::0;;;::::1;;::::0;;::::1;::::0;;;::::1;::::0;;;49698:23:::1;:42:::0;;;::::1;::::0;;;::::1;::::0;;::::1;;::::0;;49766:34:::1;::::0;::::1;::::0;-1:-1:-1;;49766:34:0::1;49149:659:::0;;:::o;48010:213::-;16882:12;:10;:12::i;:::-;16872:6;;:22;:6;;;:22;;;16864:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48106:21:::1;:44:::0;;;48166:49:::1;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;48010:213:::0;:::o;26949:143::-;27057:18;;;;27030:7;27057:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;26949:143::o;22656:39::-;;;;:::o;46086:107::-;46166:19;;46086:107;:::o;25017:24::-;;;;;;:::o;46544:101::-;46621:16;;46544:101;:::o;48235:308::-;16882:12;:10;:12::i;:::-;16872:6;;:22;:6;;;:22;;;16864:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48351:1:::1;48331:16;:21;;:47;;;;;48376:2;48356:16;:22;;48331:47;48323:108;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48442:17;:36:::0;;;48494:41:::1;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;48235:308:::0;:::o;25048:20::-;;;;;;:::o;47700:298::-;16882:12;:10;:12::i;:::-;16872:6;;:22;:6;;;:22;;;16864:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47819:3:::1;47798:17;:24;;47790:92;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47893:18;:38:::0;;;47947:43:::1;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;47700:298:::0;:::o;29447:660::-;16882:12;:10;:12::i;:::-;16872:6;;:22;:6;;;:22;;;16864:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29539:42:::1;29528:53;::::0;::::1;;;29520:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29650:24;::::0;::::1;29669:4;29650:24;;29642:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29753:13;::::0;::::1;29742:24:::0;;::::1;29753:13:::0;::::1;29742:24;;29734:82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29836:20;::::0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;29835:21;29827:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29923:16;::::0;::::1;29942:1;29923:16:::0;;;:7:::1;:16;::::0;;;;;:20;29920:108:::1;;29999:16;::::0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;29979:37:::1;::::0;:19:::1;:37::i;:::-;29960:16;::::0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;29920:108:::1;30038:20;;;::::0;;;:11:::1;:20;::::0;;;;:27;;;::::1;30061:4;30038:27:::0;;::::1;::::0;;;30076:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;;::::1;::::0;;::::1;::::0;;29447:660::o;17605:244::-;16882:12;:10;:12::i;:::-;16872:6;;:22;:6;;;:22;;;16864:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17694:22:::1;::::0;::::1;17686:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17796:6;::::0;;17775:38:::1;::::0;::::1;::::0;;::::1;::::0;17796:6;::::1;::::0;17775:38:::1;::::0;::::1;17824:6;:17:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;17605:244::o;46657:261::-;16882:12;:10;:12::i;:::-;16872:6;;:22;:6;;;:22;;;16864:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46778:1:::1;46763:11;:16;;46735:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46837:12;:26:::0;;;46879:31:::1;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;46657:261:::0;:::o;30115:489::-;16882:12;:10;:12::i;:::-;16872:6;;:22;:6;;;:22;;;16864:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30196:20:::1;::::0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;30188:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30275:9;30270:327;30294:9;:16:::0;30290:20;::::1;30270:327;;;30352:7;30336:23;;:9;30346:1;30336:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;::::1;;:23;30332:254;;;30395:9;30405:16:::0;;:20;;;;30395:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;30380:9:::1;:12:::0;;30395:31:::1;::::0;;::::1;::::0;30390:1;;30380:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;;::::1;;::::0;;::::1;;::::0;;30445:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;30484:11:::1;:20:::0;;;;:28;;;::::1;::::0;;30531:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;;;;;;;;::::1;::::0;;;;;30565:5:::1;;30332:254;30312:3;;30270:327;;;;30115:489:::0;:::o;22893:25::-;;;;:::o;5497:136::-;5555:7;5582:43;5586:1;5589;5582:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;5575:50;5497:136;-1:-1:-1;;;5497:136:0:o;6387:471::-;6445:7;6690:6;6686:47;;-1:-1:-1;6720:1:0;6713:8;;6686:47;6757:5;;;6761:1;6757;:5;:1;6781:5;;;;;:10;6773:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7334:132;7392:7;7419:39;7423:1;7426;7419:39;;;;;;;;;;;;;;;;;:3;:39::i;1118:106::-;1206:10;1118:106;:::o;43770:482::-;43829:7;43838;43847;43856;43865;43874;43895:23;43920:12;43934:13;43951:53;43963:7;43972;;43981:8;;43991:12;;43951:11;:53::i;:::-;43894:110;;;;;;44015:19;44038:10;:8;:10::i;:::-;44015:33;;44060:15;44077:23;44102:12;44118:46;44130:7;44139:4;44145:5;44152:11;44118;:46::i;:::-;44059:105;;-1:-1:-1;44059:105:0;-1:-1:-1;44059:105:0;-1:-1:-1;44215:15:0;;-1:-1:-1;44232:4:0;;-1:-1:-1;44238:5:0;;-1:-1:-1;;;;;43770:482:0;;;;;;;:::o;5033:181::-;5091:7;5123:5;;;5147:6;;;;5139:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30612:345;30705:19;;;30697:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30788:21;;;30780:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30865:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;30917:32;;;;;;;;;;;;;;;;;30612:345;;;:::o;30965:2143::-;31062:20;;;31054:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31147:23;;;31139:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31242:1;31233:6;:10;31225:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31334:7;:5;:7::i;:::-;31324:17;;:6;:17;;;;:41;;;;;31358:7;:5;:7::i;:::-;31345:20;;:9;:20;;;;31324:41;:62;;;;-1:-1:-1;31370:16:0;;;;31369:17;31324:62;31321:366;;;31421:12;;31411:6;:22;;31403:86;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31524:18;;;;31508:12;:10;:12::i;:::-;:34;;;:79;;;;31570:16;31546:41;;:12;:10;:12::i;:::-;:41;;;31508:79;31507:100;;;;-1:-1:-1;31593:14:0;;;;;;;31592:15;31507:100;31504:171;;;31626:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31710:13;;;;;;;31707:133;;;31767:15;31757:6;:25;;31749:79;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31864:16;;;;31860:624;;31897:28;31928:24;31946:4;31928:9;:24::i;:::-;32018:20;;31897:55;;-1:-1:-1;31994:44:0;;;;;;;32075:72;;-1:-1:-1;32129:18:0;;;;32115:10;:32;;32075:72;:114;;;;-1:-1:-1;32168:21:0;;;;;;;32075:114;32053:420;;;32254:16;:21;;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32254:23:0;32227;;;;;:50;:23;;;:50;;;32224:233;;;32300:42;32321:20;32300;:42::i;:::-;32224:233;;;32411:23;;32387:70;;32411:23;;;;;32436:20;32387:23;:70::i;:::-;31860:624;;;32508:19;;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;32532:22:0;;;;;;;:11;:22;;;;;;;;32531:23;32508:46;32504:597;;;32571:48;32593:6;32601:9;32612:6;32571:21;:48::i;:::-;32504:597;;;32642:19;;;;;;;:11;:19;;;;;;;;32641:20;:46;;;;-1:-1:-1;32665:22:0;;;;;;;:11;:22;;;;;;;;32641:46;32637:464;;;32704:46;32724:6;32732:9;32743:6;32704:19;:46::i;32637:464::-;32773:19;;;;;;;:11;:19;;;;;;;;32772:20;:47;;;;-1:-1:-1;32797:22:0;;;;;;;:11;:22;;;;;;;;32796:23;32772:47;32768:333;;;32836:44;32854:6;32862:9;32873:6;32836:17;:44::i;32768:333::-;32902:19;;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;32925:22:0;;;;;;;:11;:22;;;;;;;;32902:45;32898:203;;;32964:48;32986:6;32994:9;33005:6;32964:21;:48::i;32898:203::-;33045:44;33063:6;33071:9;33082:6;33045:17;:44::i;:::-;30965:2143;;;:::o;5936:192::-;6022:7;6058:12;6050:6;;;;6042:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;6094:5:0;;;5936:192::o;38562:452::-;38658:15;;38651:68;;;;;;38658:15;38691:16;38651:68;;;;;;;;;;;;;;-1:-1:-1;;38658:15:0;;;;;38651:31;;:68;;;;;;;;;;;;;;;-1:-1:-1;38658:15:0;38651:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;38948:8:0;;38744:262;;;;;;38849:4;38744:262;;;;;;;;;;-1:-1:-1;38744:262:0;;;;;;;;;;;;:78;38948:8;;;38744:262;;;;38976:15;38744:262;;;;;;:16;:78;;;;;;:262;;;;;38651:68;;38744:262;;;;;;;;;;;:78;:262;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38744:262:0;;38562:452;-1:-1:-1;;38562:452:0:o;7962:278::-;8048:7;8083:12;8076:5;8068:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8107:9;8123:1;8119;:5;;;;;;;7962:278;-1:-1:-1;;;;;7962:278:0:o;44260:417::-;44374:7;;;;44427:46;44470:1;44456:15;;44451:2;:21;44427:19;:7;44439:6;44427:11;:19::i;:46::-;44412:61;-1:-1:-1;44484:16:0;44503:47;44547:1;44533:15;;44528:2;:21;44503:20;:7;44515;44503:11;:20::i;:47::-;44484:66;-1:-1:-1;44561:23:0;44587:31;44484:66;44587:17;:7;44599:4;44587:11;:17::i;:::-;:21;;:31::i;:::-;44561:57;44654:4;;-1:-1:-1;44660:8:0;;-1:-1:-1;44260:417:0;;-1:-1:-1;;;;;;44260:417:0:o;44685:409::-;44795:7;;;;44851:24;:7;44863:11;44851;:24::i;:::-;44833:42;-1:-1:-1;44886:12:0;44901:21;:4;44910:11;44901:8;:21::i;:::-;44886:36;-1:-1:-1;44933:13:0;44949:22;:5;44959:11;44949:9;:22::i;:::-;44933:38;-1:-1:-1;44982:23:0;45008:28;44933:38;45008:17;:7;45020:4;45008:11;:17::i;:28::-;45055:7;;;;-1:-1:-1;45081:4:0;;-1:-1:-1;44685:409:0;;-1:-1:-1;;;;;;;44685:409:0:o;33161:1170::-;24927:16;:23;;;;24946:4;24927:23;;;33373:18:::1;::::0;24927:16;;33348:44:::1;::::0;:20;;:24:::1;:44::i;:::-;33324:68:::0;-1:-1:-1;33403:12:0::1;33418:20;33324:68:::0;33436:1:::1;33418:17;:20::i;:::-;33403:35:::0;-1:-1:-1;33449:17:0::1;33469:23;:13:::0;33403:35;33469:17:::1;:23::i;:::-;33449:43:::0;-1:-1:-1;33795:21:0::1;33861:22;33878:4:::0;33861:16:::1;:22::i;:::-;33952:18;33973:41;:21;33999:14:::0;33973:25:::1;:41::i;:::-;33952:62;;34064:41;34083:9;34094:10;34064:18;:41::i;:::-;34146:16;:21;;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;34146:23:0;34131:68:::1;::::0;;;;;34146:23:::1;34131:68:::0;::::1;::::0;;;;;;;;;;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;::::1;34220:55;34238:4;34245:9;34256:18;;34220:9;:55::i;:::-;34296:27;:25;:27::i;:::-;-1:-1:-1::0;;24973:16:0;:24;;;;;;-1:-1:-1;;;;33161:1170:0:o;35482:1110::-;24927:16;:23;;;;24946:4;24927:23;;;35723:18:::1;::::0;24927:16;;35698:44:::1;::::0;:20;;:24:::1;:44::i;:::-;35674:68:::0;-1:-1:-1;35753:12:0::1;35768:20;35674:68:::0;35786:1:::1;35768:17;:20::i;:::-;35753:35:::0;-1:-1:-1;35799:17:0::1;35819:23;:13:::0;35753:35;35819:17:::1;:23::i;:::-;35896:6;::::0;35799:43;;-1:-1:-1;35863:47:0::1;::::0;35881:4:::1;::::0;35896:6:::1;;35905:4:::0;35863:9:::1;:47::i;:::-;35931:31;35972:16;35965:34;;;36008:4;35965:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;35965:49:0;36073:6:::1;::::0;:41:::1;::::0;;;;;:6:::1;:41:::0;;::::1;;::::0;::::1;::::0;;;;;;;;;35965:49;;-1:-1:-1;36073:6:0;::::1;::::0;:17:::1;::::0;:41;;;;;:6:::1;::::0;:41;;;;;;;;:6;;:41;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;36135:27;36165:78;36219:23;36172:16;36165:34;;;36208:4;36165:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;36165:49:0;;:53:::1;:78::i;:::-;36135:108;;36293:71;36315:16;36333:9;36344:19;36293:21;:71::i;:::-;36390:70;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;::::1;::::0;::::1;::::0;::::1;::::0;;;;;;;;::::1;36481:55;36499:4;36506:9;36517:18;;36481:9;:55::i;:::-;36557:27;:25;:27::i;:::-;-1:-1:-1::0;;24973:16:0;:24;;;;;;-1:-1:-1;;;;;35482:1110:0:o;41558:945::-;41660:19;41683:10;:8;:10::i;:::-;41660:33;;41705:15;41722:23;41747:12;41761:23;41786:12;41800:13;41817:19;41828:7;41817:10;:19::i;:::-;41704:132;;;;;;;;;;;;41847:13;41864:22;41874:11;41864:5;:9;;:22;;;;:::i;:::-;41915:15;;;;;;;:7;:15;;;;;;41847:39;;-1:-1:-1;41915:28:0;;41935:7;41915:19;:28::i;:::-;41897:15;;;;;;;:7;:15;;;;;;;;:46;;;;41972:7;:15;;;;:28;;41992:7;41972:19;:28::i;:::-;41954:15;;;;;;;:7;:15;;;;;:46;42014:16;;;;42011:485;;;42068:18;;;;;;;:7;:18;;;;;;:31;;42091:7;42068:22;:31::i;:::-;42047:18;;;;;;;;:7;:18;;;;;;;;;:52;;;;42119:36;;;;;;;42047:18;;42119:36;;;;;;;;;;;;;42011:485;;;42209:18;;;;;;;:7;:18;;;;;;:39;;42232:15;42209:22;:39::i;:::-;42188:18;;;;;;;:7;:18;;;;;;:60;;;;42307:4;42291:22;;;;:33;;42318:5;42291:26;:33::i;:::-;42282:4;42266:22;;;;:7;:22;;;;;:58;42339:23;42351:4;42357;42339:11;:23::i;:::-;42382:38;;;;;;;;42407:4;;42382:38;;;;;;;;;;;;;42457:9;42440:44;;42449:6;42440:44;;;42468:15;42440:44;;;;;;;;;;;;;;;;;;42011:485;41558:945;;;;;;;;;;;:::o;40525:1025::-;40625:19;40648:10;:8;:10::i;:::-;40625:33;;40670:15;40687:23;40712:12;40726:23;40751:12;40765:13;40782:19;40793:7;40782:10;:19::i;:::-;40669:132;;;;;;;;;;;;40812:13;40829:22;40839:11;40829:5;:9;;:22;;;;:::i;:::-;40880:15;;;;;;;:7;:15;;;;;;40812:39;;-1:-1:-1;40880:28:0;;40900:7;40880:19;:28::i;:::-;40862:15;;;;;;;:7;:15;;;;;:46;40922:16;;;;40919:624;;;40976:18;;;;;;;:7;:18;;;;;;:31;;40999:7;40976:22;:31::i;:::-;40955:18;;;;;;;:7;:18;;;;;;;;:52;;;;41043:7;:18;;;;:31;;41066:7;41043:22;:31::i;40919:624::-;41184:18;;;;;;;:7;:18;;;;;;:39;;41207:15;41184:22;:39::i;:::-;41163:18;;;;;;;:7;:18;;;;;;;;:60;;;;41259:7;:18;;;;:39;;41282:15;41259:22;:39::i;39636:881::-;39734:19;39757:10;:8;:10::i;:::-;39734:33;;39779:15;39796:23;39821:12;39835:23;39860:12;39874:13;39891:19;39902:7;39891:10;:19::i;:::-;39778:132;;;;;;;;;;;;39921:13;39938:22;39948:11;39938:5;:9;;:22;;;;:::i;:::-;39989:15;;;;;;;:7;:15;;;;;;39921:39;;-1:-1:-1;39989:28:0;;40009:7;39989:19;:28::i;42511:1096::-;42613:19;42636:10;:8;:10::i;:::-;42613:33;;42658:15;42675:23;42700:12;42714:23;42739:12;42753:13;42770:19;42781:7;42770:10;:19::i;:::-;42657:132;;;;;;;;;;;;42800:13;42817:22;42827:11;42817:5;:9;;:22;;;;:::i;:::-;42868:15;;;;;;;:7;:15;;;;;;42800:39;;-1:-1:-1;42868:28:0;;42888:7;42868:19;:28::i;:::-;42850:15;;;;;;;:7;:15;;;;;;;;:46;;;;42925:7;:15;;;;:28;;42945:7;42925:19;:28::i;34343:592::-;34493:16;;;34507:1;34493:16;;;34469:21;34493:16;;;;;34469:21;34493:16;;;;;;;;;;-1:-1:-1;34493:16:0;34469:40;;34538:4;34520;34525:1;34520:7;;;;;;;;;;;;;:23;;;;;;;;;;;34564:16;:21;;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34564:23:0;34554:7;;:4;;34559:1;;34554:7;;;;;;;;;;;:33;;;;;;;;;;;34600:63;34617:4;34632:16;34651:11;34600:8;:63::i;:::-;34702:16;:67;;;34784:11;34810:1;34854:4;34881;34901:15;34702:225;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34343:592;;:::o;34943:527::-;35097:63;35114:4;35129:16;35148:11;35097:8;:63::i;:::-;35203:259;;;;;;35276:4;35203:259;;;;;;;;;;;;35322:1;35203:259;;;;;;;;;;;;;;35436:15;35203:259;;;;;;:32;:16;:32;;;;35243:9;;35203:259;;;;;;;;;;;;;;;35243:9;35203:32;:259;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;34943:527:0:o;39022:606::-;39133:24;;39114:13;;39078:23;;39104:54;;:24;;39114:13;;39104:9;:24::i;:54::-;39078:80;;39190:21;;39172:15;:39;39169:452;;;39228:23;39254:43;39274:15;39291:5;39254:19;:43::i;:::-;39350:18;;;;39342:27;;;;:7;:27;;;;;;39228:69;;-1:-1:-1;39342:48:0;;39228:69;39342:31;:48::i;:::-;39320:18;;;;;;39312:27;;;;:7;:27;;;;;;:78;;;;39438:13;;;;;39430:22;;;;:43;;39457:15;39430:26;:43::i;:::-;39413:13;;;;;;;39405:22;;;;:7;:22;;;;;;;;;:68;;;;39517:18;;39502:13;;39493:60;;;;;;;39517:18;;;;39502:13;;;39493:60;;;;;;;;;;;39583:18;;;;;;;;;;;39568:39;;;:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39169:452;39022:606;:::o;36600:689::-;36789:63;36806:4;36821:16;36840:11;36789:8;:63::i;:::-;36870:16;36863:32;;;36904:16;36923:15;36863:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;36982:299:0;;;;;;37034:4;36982:299;;;;;;:29;:299;;;;;;;;;;;;;;;;;;;-1:-1:-1;36982:299:0;;;;;;;;;;;;;;;;;;;37255:15;36982:299;;;;;;:16;:29;;;;;;:299;;;;;;;;;;;;;;;;;:29;:299;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36600:689:0:o;43615:147::-;43693:7;;:17;;43705:4;43693:11;:17::i;:::-;43683:7;:27;43734:10;;:20;;43749:4;43734:14;:20::i;:::-;43721:10;:33;-1:-1:-1;;43615:147:0:o

Swarm Source

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