ETH Price: $2,280.87 (-5.77%)

Token

Uncle Scrooge Finance (CROOGE)
 

Overview

Max Total Supply

1,000,000,000,000 CROOGE

Holders

309

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
978,493.534239179 CROOGE

Value
$0.00
0xa8a44a7446b5352a8e79214aa6f4acc0199519fb
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:
CROOGEToken

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-06-14
*/

// SPDX-License-Identifier: Unlicensed

/**
 *
 * Uncle Scrooge Finance
 * 
 * Telegram: https://t.me/Scroogetoken
 * Twitter: https://twitter.com/Scroogetoken
 * Website: https://uncle-scrooge.finance/
 * Medium: https://unclecrooge.medium.com/hortense-mcduck-wants-to-tell-you-a-little-story-about-uncle-crooge-fa90c24c7592
 * Whitepaper: https://uncle-scrooge.finance/assets/whitepaper/whitepaper.pdf
 * 
 * In many cultures of the world ducks are a symbol of luck, love and prosperity. 
 * 
 * Uncle $crooge needs your help to begin a new era in memecoin trading, 
 * THE ERA OF THE DUCK! Quack  * Quack
 * 
 * Looking at how long we’ve had dogs and cats rule the memecoin world, 
 * it’s time for a change. It’s time for  * a new trend! Innovation, be it creative or 
 * technological has to be RADICAL because crypto feeds off of innovation. 
 * 
 * Do you want to benefit the broader community? Do you want to see the bull 
 * market continue? Do you want new fresh projects to ape in? 
 * Are you tired of all the shibas and inus and elons? 
 * 
 * 
 * Total supply: 1 000 000 000 000 $CROOGE
 * 
 * Liquidity: 45%
 * 
 * Burned: 35%
 * 
 * Presale: 15%
 *
 * Marketing: 5%
 * 
 * Team: 0%
 * 
 * Fee Tax
 * 
 * Holders: 3% to Holders
 * 
 * LP Acquisition: 3% to increase LP
 * 
 * In total: 6%
 * 
 */

pragma solidity ^0.6.12;

interface IERC20 {

    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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



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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }

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


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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () 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;
    }

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

    //Locks the contract for owner for the amount of time provided
    function lock(uint256 time) public virtual onlyOwner {
        _previousOwner = _owner;
        _owner = address(0);
        _lockTime = now + time;
        emit OwnershipTransferred(_owner, address(0));
    }
    
    //Unlocks the contract for owner when _lockTime is exceeds
    function unlock() public virtual {
        require(_previousOwner == msg.sender, "You don't have permission to unlock");
        require(now > _lockTime , "Contract is locked until 7 days");
        emit OwnershipTransferred(_owner, _previousOwner);
        _owner = _previousOwner;
    }
}

// pragma solidity >=0.5.0;

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

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

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

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

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


// pragma solidity >=0.5.0;

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

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

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

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

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

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

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

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

    function initialize(address, address) external;
}

// pragma solidity >=0.6.2;

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

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

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


// pragma solidity >=0.6.2;

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

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


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

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

    mapping (address => bool) private _isExcludedFromFee;
    mapping (address => bool) private _isExcluded;
    address[] private _excluded;
    
    string  private _name       = "Uncle Scrooge Finance";
    string  private _symbol     = "CROOGE";
    uint8   private _decimals   = 9;
   
    uint256 private constant MAX    = ~uint256(0);
    uint256 private _tTotal         = 1 * 10**12 * 10**9;
    uint256 private _rTotal         = (MAX - (MAX % _tTotal));
    
    uint256 private _tFeeTotal;
    uint256 private _tBurnTotal;
    
    uint256 public _taxFee = 0;
    uint256 private _previousTaxFee = _taxFee;
    
    uint256 public _burnFee = 0;
    uint256 private _previousBurnFee = _burnFee;
    
    uint256 public _liquidityFee = 0;
    uint256 private _previousLiquidityFee = _liquidityFee;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    
    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;
    
    uint256 public _maxTxAmount = 3 * 10**9 * 10**9;
    uint256 private numTokensSellToAddToLiquidity = 3 * 10**9 * 10**9;
    
    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );
    
    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }
    
    constructor () public {
        _rOwned[_msgSender()] = _rTotal;
        
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
         // Create a uniswap pair for this new token
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        // set the rest of the contract variables
        uniswapV2Router = _uniswapV2Router;
        
        //exclude owner and this contract from fee
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        
        emit Transfer(address(0), _msgSender(), _tTotal);
    }

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

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

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

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

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

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

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

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

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

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

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

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

    function totalFees() public view returns (uint256) {
        return _tFeeTotal;
    }
    
    function totalBurn() public view returns (uint256) {
        return _tBurnTotal;
    }

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

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

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

    function excludeFromReward(address account) public onlyOwner() {
        // require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not exclude Uniswap router.');
        require(!_isExcluded[account], "Account is already excluded");
        if(_rOwned[account] > 0) {
            _tOwned[account] = tokenFromReflection(_rOwned[account]);
        }
        _isExcluded[account] = true;
        _excluded.push(account);
    }

    function includeInReward(address account) external onlyOwner() {
        require(_isExcluded[account], "Account is already excluded");
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_excluded[i] == account) {
                _excluded[i] = _excluded[_excluded.length - 1];
                _tOwned[account] = 0;
                _isExcluded[account] = false;
                _excluded.pop();
                break;
            }
        }
    }
    
    function excludeFromFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = true;
    }
    
    function includeInFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = false;
    }
    
    function setTaxFeePercent(uint256 taxFee) external onlyOwner() {
        _taxFee = taxFee;
    }
    
    function setLiquidityFeePercent(uint256 liquidityFee) external onlyOwner() {
        _liquidityFee = liquidityFee;
    }
    
    function setBurnFeePercent(uint256 burnFee) external onlyOwner() {
        _burnFee = burnFee;
    }
   
    function setMaxTxPercent(uint256 maxTxPercentMulTen) external onlyOwner() {
        _maxTxAmount = _tTotal.mul(maxTxPercentMulTen).div(10**3);
    }

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

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

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

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

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

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

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

    function calculateBurnFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_burnFee).div(10**2);
    }

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

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

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

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

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

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

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

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

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

        // add liquidity to uniswap
        addLiquidity(otherHalf, newBalance);
        
        emit SwapAndLiquify(half, newBalance, otherHalf);
    }

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

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

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

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

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

    //this method is responsible for taking all fee, if takeFee is true
    function _tokenTransfer(address sender, address recipient, uint256 amount,bool takeFee) private {
        if(!takeFee)
            removeAllFee();
        
        if (_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferFromExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && _isExcluded[recipient]) {
            _transferToExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferStandard(sender, recipient, amount);
        } else if (_isExcluded[sender] && _isExcluded[recipient]) {
            _transferBothExcluded(sender, recipient, amount);
        } else {
            _transferStandard(sender, recipient, amount);
        }
        
        if(!takeFee)
            restoreAllFee();
    }

    function _transferStandard(address sender, address recipient, uint256 tAmount) private {
        uint256 currentRate =  _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tBurn, uint256 tLiquidity) = _getValues(tAmount);
         uint256 rBurn =  tBurn.mul(currentRate);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, rBurn, tFee, tBurn);
        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 tBurn, uint256 tLiquidity) = _getValues(tAmount);
        uint256 rBurn =  tBurn.mul(currentRate);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);           
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, rBurn, tFee, tBurn);
        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 tBurn, uint256 tLiquidity) = _getValues(tAmount);
        uint256 rBurn =  tBurn.mul(currentRate);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);   
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, rBurn, tFee, tBurn);
        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 tBurn, uint256 tLiquidity) = _getValues(tAmount);
        uint256 rBurn =  tBurn.mul(currentRate);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);        
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, rBurn, tFee, tBurn);
        emit Transfer(sender, recipient, tTransferAmount);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_burnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"uint256","name":"burnFee","type":"uint256"}],"name":"setBurnFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercentMulTen","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"setTaxFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526040518060400160405280601581526020017f556e636c65205363726f6f67652046696e616e63650000000000000000000000815250600990805190602001906200005192919062000605565b506040518060400160405280600681526020017f43524f4f47450000000000000000000000000000000000000000000000000000815250600a90805190602001906200009f92919062000605565b506009600b60006101000a81548160ff021916908360ff160217905550683635c9adc5dea00000600c55600c5460001981620000d757fe5b0660001903600d556000601055601054601155600060125560125460135560006014556014546015556001601660016101000a81548160ff0219169083151502179055506729a2241af62c00006017556729a2241af62c00006018553480156200014057600080fd5b50600062000153620005d460201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350600d546003600062000208620005d460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620002a657600080fd5b505afa158015620002bb573d6000803e3d6000fd5b505050506040513d6020811015620002d257600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200034657600080fd5b505afa1580156200035b573d6000803e3d6000fd5b505050506040513d60208110156200037257600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b158015620003ed57600080fd5b505af115801562000402573d6000803e3d6000fd5b505050506040513d60208110156200041957600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b81525050600160066000620004ad620005dc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000566620005d460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600c546040518082815260200191505060405180910390a350620006ab565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200064857805160ff191683800117855562000679565b8280016001018555821562000679579182015b82811115620006785782518255916020019190600101906200065b565b5b5090506200068891906200068c565b5090565b5b80821115620006a75760008160009055506001016200068d565b5090565b60805160601c60a05160601c615234620006f3600039806118f552806131f6525080610f985280613f3e528061402a5280614051528061415c528061418352506152346000f3fe60806040526004361061023f5760003560e01c8063602bc62b1161012e578063a69df4b5116100ab578063d543dbeb1161006f578063d543dbeb14610c5d578063dd46706414610c98578063dd62ed3e14610cd3578063ea2f0b3714610d58578063f2fde38b14610da957610246565b8063a69df4b514610b32578063a9059cbb14610b49578063c0b0fda214610bba578063c49b9a8014610be5578063cea2695814610c2257610246565b806388f82020116100f257806388f820201461094e5780638da5cb5b146109b55780638ee88c53146109f657806395d89b4114610a31578063a457c2d714610ac157610246565b8063602bc62b146108515780636bc87c3a1461087c57806370a08231146108a7578063715018a61461090c5780637d1db4a51461092357610246565b806339509351116101bc5780634549b039116101805780634549b039146106d057806349bd5a5e1461072b5780634a74bb021461076c57806352390c02146107995780635342acb4146107ea57610246565b8063395093511461057d5780633b124fe7146105ee5780633bd5d173146106195780633c9f861d14610654578063437823ec1461067f57610246565b806318160ddd1161020357806318160ddd146103f357806323b872dd1461041e5780632d838119146104af578063313ce567146104fe5780633685d4191461052c57610246565b8063061c82d01461024b57806306fdde0314610286578063095ea7b31461031657806313114a9d146103875780631694505e146103b257610246565b3661024657005b600080fd5b34801561025757600080fd5b506102846004803603602081101561026e57600080fd5b8101908080359060200190929190505050610dfa565b005b34801561029257600080fd5b5061029b610ecc565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102db5780820151818401526020810190506102c0565b50505050905090810190601f1680156103085780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561032257600080fd5b5061036f6004803603604081101561033957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f6e565b60405180821515815260200191505060405180910390f35b34801561039357600080fd5b5061039c610f8c565b6040518082815260200191505060405180910390f35b3480156103be57600080fd5b506103c7610f96565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103ff57600080fd5b50610408610fba565b6040518082815260200191505060405180910390f35b34801561042a57600080fd5b506104976004803603606081101561044157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fc4565b60405180821515815260200191505060405180910390f35b3480156104bb57600080fd5b506104e8600480360360208110156104d257600080fd5b810190808035906020019092919050505061109d565b6040518082815260200191505060405180910390f35b34801561050a57600080fd5b50610513611121565b604051808260ff16815260200191505060405180910390f35b34801561053857600080fd5b5061057b6004803603602081101561054f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611138565b005b34801561058957600080fd5b506105d6600480360360408110156105a057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506114c2565b60405180821515815260200191505060405180910390f35b3480156105fa57600080fd5b50610603611575565b6040518082815260200191505060405180910390f35b34801561062557600080fd5b506106526004803603602081101561063c57600080fd5b810190808035906020019092919050505061157b565b005b34801561066057600080fd5b5061066961170d565b6040518082815260200191505060405180910390f35b34801561068b57600080fd5b506106ce600480360360208110156106a257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611717565b005b3480156106dc57600080fd5b50610715600480360360408110156106f357600080fd5b810190808035906020019092919080351515906020019092919050505061183a565b6040518082815260200191505060405180910390f35b34801561073757600080fd5b506107406118f3565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561077857600080fd5b50610781611917565b60405180821515815260200191505060405180910390f35b3480156107a557600080fd5b506107e8600480360360208110156107bc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061192a565b005b3480156107f657600080fd5b506108396004803603602081101561080d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c44565b60405180821515815260200191505060405180910390f35b34801561085d57600080fd5b50610866611c9a565b6040518082815260200191505060405180910390f35b34801561088857600080fd5b50610891611ca4565b6040518082815260200191505060405180910390f35b3480156108b357600080fd5b506108f6600480360360208110156108ca57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611caa565b6040518082815260200191505060405180910390f35b34801561091857600080fd5b50610921611d95565b005b34801561092f57600080fd5b50610938611f1b565b6040518082815260200191505060405180910390f35b34801561095a57600080fd5b5061099d6004803603602081101561097157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611f21565b60405180821515815260200191505060405180910390f35b3480156109c157600080fd5b506109ca611f77565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610a0257600080fd5b50610a2f60048036036020811015610a1957600080fd5b8101908080359060200190929190505050611fa0565b005b348015610a3d57600080fd5b50610a46612072565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a86578082015181840152602081019050610a6b565b50505050905090810190601f168015610ab35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610acd57600080fd5b50610b1a60048036036040811015610ae457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612114565b60405180821515815260200191505060405180910390f35b348015610b3e57600080fd5b50610b476121e1565b005b348015610b5557600080fd5b50610ba260048036036040811015610b6c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506123fe565b60405180821515815260200191505060405180910390f35b348015610bc657600080fd5b50610bcf61241c565b6040518082815260200191505060405180910390f35b348015610bf157600080fd5b50610c2060048036036020811015610c0857600080fd5b81019080803515159060200190929190505050612422565b005b348015610c2e57600080fd5b50610c5b60048036036020811015610c4557600080fd5b8101908080359060200190929190505050612540565b005b348015610c6957600080fd5b50610c9660048036036020811015610c8057600080fd5b8101908080359060200190929190505050612612565b005b348015610ca457600080fd5b50610cd160048036036020811015610cbb57600080fd5b810190808035906020019092919050505061270c565b005b348015610cdf57600080fd5b50610d4260048036036040811015610cf657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506128fd565b6040518082815260200191505060405180910390f35b348015610d6457600080fd5b50610da760048036036020811015610d7b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612984565b005b348015610db557600080fd5b50610df860048036036020811015610dcc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612aa7565b005b610e02612cb2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ec2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060108190555050565b606060098054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610f645780601f10610f3957610100808354040283529160200191610f64565b820191906000526020600020905b815481529060010190602001808311610f4757829003601f168201915b5050505050905090565b6000610f82610f7b612cb2565b8484612cba565b6001905092915050565b6000600e54905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600c54905090565b6000610fd1848484612eb1565b61109284610fdd612cb2565b61108d856040518060600160405280602881526020016150f160289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611043612cb2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133369092919063ffffffff16565b612cba565b600190509392505050565b6000600d548211156110fa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615036602a913960400191505060405180910390fd5b60006111046133f6565b9050611119818461342190919063ffffffff16565b915050919050565b6000600b60009054906101000a900460ff16905090565b611140612cb2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611200576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166112bf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b6008805490508110156114be578173ffffffffffffffffffffffffffffffffffffffff16600882815481106112f357fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156114b15760086001600880549050038154811061134f57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166008828154811061138757fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600880548061147757fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590556114be565b80806001019150506112c2565b5050565b600061156b6114cf612cb2565b8461156685600560006114e0612cb2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461346b90919063ffffffff16565b612cba565b6001905092915050565b60105481565b6000611585612cb2565b9050600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561162a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018061518b602c913960400191505060405180910390fd5b6000611635836134f3565b505050505050905061168f81600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461355b90919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506116e781600d5461355b90919063ffffffff16565b600d8190555061170283600e5461346b90919063ffffffff16565b600e81905550505050565b6000600f54905090565b61171f612cb2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600c548311156118b4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b816118d55760006118c4846134f3565b5050505050509050809150506118ed565b60006118e0846134f3565b5050505050915050809150505b92915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601660019054906101000a900460ff1681565b611932612cb2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146119f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611ab2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611b8657611b42600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461109d565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600254905090565b60145481565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611d4557600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050611d90565b611d8d600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461109d565b90505b919050565b611d9d612cb2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e5d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60175481565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611fa8612cb2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612068576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060148190555050565b6060600a8054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561210a5780601f106120df5761010080835404028352916020019161210a565b820191906000526020600020905b8154815290600101906020018083116120ed57829003601f168201915b5050505050905090565b60006121d7612121612cb2565b846121d2856040518060600160405280602581526020016151da602591396005600061214b612cb2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133369092919063ffffffff16565b612cba565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612287576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806151b76023913960400191505060405180910390fd5b60025442116122fe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f436f6e7472616374206973206c6f636b656420756e74696c203720646179730081525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600061241261240b612cb2565b8484612eb1565b6001905092915050565b60125481565b61242a612cb2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146124ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601660016101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1598160405180821515815260200191505060405180910390a150565b612548612cb2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060128190555050565b61261a612cb2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146126da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6127036103e86126f583600c546135a590919063ffffffff16565b61342190919063ffffffff16565b60178190555050565b612714612cb2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146127d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550804201600281905550600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61298c612cb2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612a4c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b612aaf612cb2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612b6f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612bf5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806150606026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612d40576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806151676024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612dc6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806150866022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f37576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806151426025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fbd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806150136023913960400191505060405180910390fd5b60008111613016576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806151196029913960400191505060405180910390fd5b61301e611f77565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561308c575061305c611f77565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156131ad576017548111156130ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806150a86028913960400191505060405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156131ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f4163636f756e74206973206578636c756465640000000000000000000000000081525060200191505060405180910390fd5b5b60006131b830611caa565b905060175481106131c95760175490505b600060185482101590508080156131ed5750601660009054906101000a900460ff16155b801561324557507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b801561325d5750601660019054906101000a900460ff165b156132715760185491506132708261362b565b5b600060019050600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806133185750600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561332257600090505b61332e8686868461370d565b505050505050565b60008383111582906133e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156133a857808201518184015260208101905061338d565b50505050905090810190601f1680156133d55780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000613403613a1e565b9150915061341a818361342190919063ffffffff16565b9250505090565b600061346383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613caf565b905092915050565b6000808284019050838110156134e9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600080600080600080600080600080600061350d8c613d75565b9350935093509350600080600061352e8f8787876135296133f6565b613df4565b925092509250828282898989899d509d509d509d509d509d509d5050505050505050919395979092949650565b600061359d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613336565b905092915050565b6000808314156135b85760009050613625565b60008284029050828482816135c957fe5b0414613620576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806150d06021913960400191505060405180910390fd5b809150505b92915050565b6001601660006101000a81548160ff021916908315150217905550600061365c60028361342190919063ffffffff16565b90506000613673828461355b90919063ffffffff16565b9050600047905061368383613ea8565b6000613698824761355b90919063ffffffff16565b90506136a48382614156565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56184828560405180848152602001838152602001828152602001935050505060405180910390a1505050506000601660006101000a81548160ff02191690831515021790555050565b8061371b5761371a6142a7565b5b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156137be5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156137d3576137ce848484614309565b613a0a565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156138765750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561388b57613886848484614595565b613a09565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561392f5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156139445761393f848484614821565b613a08565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156139e65750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156139fb576139f6848484614a18565b613a07565b613a06848484614821565b5b5b5b5b80613a1857613a17614d39565b5b50505050565b6000806000600d5490506000600c54905060005b600880549050811015613c7257826003600060088481548110613a5157fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180613b385750816004600060088481548110613ad057fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b15613b4f57600d54600c5494509450505050613cab565b613bd86003600060088481548110613b6357fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548461355b90919063ffffffff16565b9250613c636004600060088481548110613bee57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548361355b90919063ffffffff16565b91508080600101915050613a32565b50613c8a600c54600d5461342190919063ffffffff16565b821015613ca257600d54600c54935093505050613cab565b81819350935050505b9091565b60008083118290613d5b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613d20578082015181840152602081019050613d05565b50505050905090810190601f168015613d4d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581613d6757fe5b049050809150509392505050565b6000806000806000613d8686614d56565b90506000613d9387614d87565b90506000613da088614db8565b90506000613ddb82613dcd85613dbf888e61355b90919063ffffffff16565b61355b90919063ffffffff16565b61355b90919063ffffffff16565b9050808484849750975097509750505050509193509193565b600080600080613e0d858a6135a590919063ffffffff16565b90506000613e24868a6135a590919063ffffffff16565b90506000613e3b878a6135a590919063ffffffff16565b90506000613e52888a6135a590919063ffffffff16565b90506000613e8d82613e7f85613e71888a61355b90919063ffffffff16565b61355b90919063ffffffff16565b61355b90919063ffffffff16565b90508481859750975097505050505050955095509592505050565b6060600267ffffffffffffffff81118015613ec257600080fd5b50604051908082528060200260200182016040528015613ef15781602001602082028036833780820191505090505b5090503081600081518110613f0257fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613fa257600080fd5b505afa158015613fb6573d6000803e3d6000fd5b505050506040513d6020811015613fcc57600080fd5b810190808051906020019092919050505081600181518110613fea57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061404f307f000000000000000000000000000000000000000000000000000000000000000084612cba565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b838110156141115780820151818401526020810190506140f6565b505050509050019650505050505050600060405180830381600087803b15801561413a57600080fd5b505af115801561414e573d6000803e3d6000fd5b505050505050565b614181307f000000000000000000000000000000000000000000000000000000000000000084612cba565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7198230856000806141cb611f77565b426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b15801561425057600080fd5b505af1158015614264573d6000803e3d6000fd5b50505050506040513d606081101561427b57600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b60006010541480156142bb57506000601254145b80156142c957506000601454145b156142d357614307565b6010546011819055506012546013819055506014546015819055506000601081905550600060128190555060006014819055505b565b60006143136133f6565b90506000806000806000806000614329896134f3565b9650965096509650965096509650600061434c89846135a590919063ffffffff16565b90506143a08a600460008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461355b90919063ffffffff16565b600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061443588600360008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461355b90919063ffffffff16565b600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506144ca87600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461346b90919063ffffffff16565b600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061451682614de9565b61452286828686614f8e565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040518082815260200191505060405180910390a3505050505050505050505050565b600061459f6133f6565b905060008060008060008060006145b5896134f3565b965096509650965096509650965060006145d889846135a590919063ffffffff16565b905061462c88600360008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461355b90919063ffffffff16565b600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506146c185600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461346b90919063ffffffff16565b600460008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061475687600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461346b90919063ffffffff16565b600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506147a282614de9565b6147ae86828686614f8e565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040518082815260200191505060405180910390a3505050505050505050505050565b600061482b6133f6565b90506000806000806000806000614841896134f3565b9650965096509650965096509650600061486489846135a590919063ffffffff16565b90506148b888600360008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461355b90919063ffffffff16565b600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061494d87600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461346b90919063ffffffff16565b600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061499982614de9565b6149a586828686614f8e565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040518082815260200191505060405180910390a3505050505050505050505050565b6000614a226133f6565b90506000806000806000806000614a38896134f3565b96509650965096509650965096506000614a5b89846135a590919063ffffffff16565b9050614aaf8a600460008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461355b90919063ffffffff16565b600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614b4488600360008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461355b90919063ffffffff16565b600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614bd985600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461346b90919063ffffffff16565b600460008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614c6e87600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461346b90919063ffffffff16565b600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614cba82614de9565b614cc686828686614f8e565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040518082815260200191505060405180910390a3505050505050505050505050565b601154601081905550601354601281905550601554601481905550565b6000614d806064614d72601054856135a590919063ffffffff16565b61342190919063ffffffff16565b9050919050565b6000614db16064614da3601254856135a590919063ffffffff16565b61342190919063ffffffff16565b9050919050565b6000614de26064614dd4601454856135a590919063ffffffff16565b61342190919063ffffffff16565b9050919050565b6000614df36133f6565b90506000614e0a82846135a590919063ffffffff16565b9050614e5e81600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461346b90919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615614f8957614f4583600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461346b90919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b614fb583614fa786600d5461355b90919063ffffffff16565b61355b90919063ffffffff16565b600d81905550614fd082600e5461346b90919063ffffffff16565b600e81905550614feb81600f5461346b90919063ffffffff16565b600f8190555061500681600c5461355b90919063ffffffff16565b600c819055505050505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a2e5d2893cf7c55f2eec83884a05ace2e5ccb656b5357a3690bb51f245ebef5c64736f6c634300060c0033

Deployed Bytecode

0x60806040526004361061023f5760003560e01c8063602bc62b1161012e578063a69df4b5116100ab578063d543dbeb1161006f578063d543dbeb14610c5d578063dd46706414610c98578063dd62ed3e14610cd3578063ea2f0b3714610d58578063f2fde38b14610da957610246565b8063a69df4b514610b32578063a9059cbb14610b49578063c0b0fda214610bba578063c49b9a8014610be5578063cea2695814610c2257610246565b806388f82020116100f257806388f820201461094e5780638da5cb5b146109b55780638ee88c53146109f657806395d89b4114610a31578063a457c2d714610ac157610246565b8063602bc62b146108515780636bc87c3a1461087c57806370a08231146108a7578063715018a61461090c5780637d1db4a51461092357610246565b806339509351116101bc5780634549b039116101805780634549b039146106d057806349bd5a5e1461072b5780634a74bb021461076c57806352390c02146107995780635342acb4146107ea57610246565b8063395093511461057d5780633b124fe7146105ee5780633bd5d173146106195780633c9f861d14610654578063437823ec1461067f57610246565b806318160ddd1161020357806318160ddd146103f357806323b872dd1461041e5780632d838119146104af578063313ce567146104fe5780633685d4191461052c57610246565b8063061c82d01461024b57806306fdde0314610286578063095ea7b31461031657806313114a9d146103875780631694505e146103b257610246565b3661024657005b600080fd5b34801561025757600080fd5b506102846004803603602081101561026e57600080fd5b8101908080359060200190929190505050610dfa565b005b34801561029257600080fd5b5061029b610ecc565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102db5780820151818401526020810190506102c0565b50505050905090810190601f1680156103085780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561032257600080fd5b5061036f6004803603604081101561033957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f6e565b60405180821515815260200191505060405180910390f35b34801561039357600080fd5b5061039c610f8c565b6040518082815260200191505060405180910390f35b3480156103be57600080fd5b506103c7610f96565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103ff57600080fd5b50610408610fba565b6040518082815260200191505060405180910390f35b34801561042a57600080fd5b506104976004803603606081101561044157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fc4565b60405180821515815260200191505060405180910390f35b3480156104bb57600080fd5b506104e8600480360360208110156104d257600080fd5b810190808035906020019092919050505061109d565b6040518082815260200191505060405180910390f35b34801561050a57600080fd5b50610513611121565b604051808260ff16815260200191505060405180910390f35b34801561053857600080fd5b5061057b6004803603602081101561054f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611138565b005b34801561058957600080fd5b506105d6600480360360408110156105a057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506114c2565b60405180821515815260200191505060405180910390f35b3480156105fa57600080fd5b50610603611575565b6040518082815260200191505060405180910390f35b34801561062557600080fd5b506106526004803603602081101561063c57600080fd5b810190808035906020019092919050505061157b565b005b34801561066057600080fd5b5061066961170d565b6040518082815260200191505060405180910390f35b34801561068b57600080fd5b506106ce600480360360208110156106a257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611717565b005b3480156106dc57600080fd5b50610715600480360360408110156106f357600080fd5b810190808035906020019092919080351515906020019092919050505061183a565b6040518082815260200191505060405180910390f35b34801561073757600080fd5b506107406118f3565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561077857600080fd5b50610781611917565b60405180821515815260200191505060405180910390f35b3480156107a557600080fd5b506107e8600480360360208110156107bc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061192a565b005b3480156107f657600080fd5b506108396004803603602081101561080d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c44565b60405180821515815260200191505060405180910390f35b34801561085d57600080fd5b50610866611c9a565b6040518082815260200191505060405180910390f35b34801561088857600080fd5b50610891611ca4565b6040518082815260200191505060405180910390f35b3480156108b357600080fd5b506108f6600480360360208110156108ca57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611caa565b6040518082815260200191505060405180910390f35b34801561091857600080fd5b50610921611d95565b005b34801561092f57600080fd5b50610938611f1b565b6040518082815260200191505060405180910390f35b34801561095a57600080fd5b5061099d6004803603602081101561097157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611f21565b60405180821515815260200191505060405180910390f35b3480156109c157600080fd5b506109ca611f77565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610a0257600080fd5b50610a2f60048036036020811015610a1957600080fd5b8101908080359060200190929190505050611fa0565b005b348015610a3d57600080fd5b50610a46612072565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a86578082015181840152602081019050610a6b565b50505050905090810190601f168015610ab35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610acd57600080fd5b50610b1a60048036036040811015610ae457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612114565b60405180821515815260200191505060405180910390f35b348015610b3e57600080fd5b50610b476121e1565b005b348015610b5557600080fd5b50610ba260048036036040811015610b6c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506123fe565b60405180821515815260200191505060405180910390f35b348015610bc657600080fd5b50610bcf61241c565b6040518082815260200191505060405180910390f35b348015610bf157600080fd5b50610c2060048036036020811015610c0857600080fd5b81019080803515159060200190929190505050612422565b005b348015610c2e57600080fd5b50610c5b60048036036020811015610c4557600080fd5b8101908080359060200190929190505050612540565b005b348015610c6957600080fd5b50610c9660048036036020811015610c8057600080fd5b8101908080359060200190929190505050612612565b005b348015610ca457600080fd5b50610cd160048036036020811015610cbb57600080fd5b810190808035906020019092919050505061270c565b005b348015610cdf57600080fd5b50610d4260048036036040811015610cf657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506128fd565b6040518082815260200191505060405180910390f35b348015610d6457600080fd5b50610da760048036036020811015610d7b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612984565b005b348015610db557600080fd5b50610df860048036036020811015610dcc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612aa7565b005b610e02612cb2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ec2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060108190555050565b606060098054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610f645780601f10610f3957610100808354040283529160200191610f64565b820191906000526020600020905b815481529060010190602001808311610f4757829003601f168201915b5050505050905090565b6000610f82610f7b612cb2565b8484612cba565b6001905092915050565b6000600e54905090565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600c54905090565b6000610fd1848484612eb1565b61109284610fdd612cb2565b61108d856040518060600160405280602881526020016150f160289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611043612cb2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133369092919063ffffffff16565b612cba565b600190509392505050565b6000600d548211156110fa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615036602a913960400191505060405180910390fd5b60006111046133f6565b9050611119818461342190919063ffffffff16565b915050919050565b6000600b60009054906101000a900460ff16905090565b611140612cb2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611200576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166112bf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b6008805490508110156114be578173ffffffffffffffffffffffffffffffffffffffff16600882815481106112f357fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156114b15760086001600880549050038154811061134f57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166008828154811061138757fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600880548061147757fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590556114be565b80806001019150506112c2565b5050565b600061156b6114cf612cb2565b8461156685600560006114e0612cb2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461346b90919063ffffffff16565b612cba565b6001905092915050565b60105481565b6000611585612cb2565b9050600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561162a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018061518b602c913960400191505060405180910390fd5b6000611635836134f3565b505050505050905061168f81600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461355b90919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506116e781600d5461355b90919063ffffffff16565b600d8190555061170283600e5461346b90919063ffffffff16565b600e81905550505050565b6000600f54905090565b61171f612cb2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600c548311156118b4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b816118d55760006118c4846134f3565b5050505050509050809150506118ed565b60006118e0846134f3565b5050505050915050809150505b92915050565b7f00000000000000000000000009271c86c5fe517d8a1bdce47a2c6c2c2e60095f81565b601660019054906101000a900460ff1681565b611932612cb2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146119f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611ab2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611b8657611b42600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461109d565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600254905090565b60145481565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611d4557600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050611d90565b611d8d600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461109d565b90505b919050565b611d9d612cb2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e5d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60175481565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611fa8612cb2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612068576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060148190555050565b6060600a8054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561210a5780601f106120df5761010080835404028352916020019161210a565b820191906000526020600020905b8154815290600101906020018083116120ed57829003601f168201915b5050505050905090565b60006121d7612121612cb2565b846121d2856040518060600160405280602581526020016151da602591396005600061214b612cb2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133369092919063ffffffff16565b612cba565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612287576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806151b76023913960400191505060405180910390fd5b60025442116122fe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f436f6e7472616374206973206c6f636b656420756e74696c203720646179730081525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600061241261240b612cb2565b8484612eb1565b6001905092915050565b60125481565b61242a612cb2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146124ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601660016101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1598160405180821515815260200191505060405180910390a150565b612548612cb2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060128190555050565b61261a612cb2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146126da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6127036103e86126f583600c546135a590919063ffffffff16565b61342190919063ffffffff16565b60178190555050565b612714612cb2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146127d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550804201600281905550600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61298c612cb2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612a4c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b612aaf612cb2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612b6f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612bf5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806150606026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612d40576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806151676024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612dc6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806150866022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f37576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806151426025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fbd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806150136023913960400191505060405180910390fd5b60008111613016576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806151196029913960400191505060405180910390fd5b61301e611f77565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561308c575061305c611f77565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156131ad576017548111156130ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806150a86028913960400191505060405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156131ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f4163636f756e74206973206578636c756465640000000000000000000000000081525060200191505060405180910390fd5b5b60006131b830611caa565b905060175481106131c95760175490505b600060185482101590508080156131ed5750601660009054906101000a900460ff16155b801561324557507f00000000000000000000000009271c86c5fe517d8a1bdce47a2c6c2c2e60095f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b801561325d5750601660019054906101000a900460ff165b156132715760185491506132708261362b565b5b600060019050600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806133185750600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561332257600090505b61332e8686868461370d565b505050505050565b60008383111582906133e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156133a857808201518184015260208101905061338d565b50505050905090810190601f1680156133d55780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000613403613a1e565b9150915061341a818361342190919063ffffffff16565b9250505090565b600061346383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613caf565b905092915050565b6000808284019050838110156134e9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600080600080600080600080600080600061350d8c613d75565b9350935093509350600080600061352e8f8787876135296133f6565b613df4565b925092509250828282898989899d509d509d509d509d509d509d5050505050505050919395979092949650565b600061359d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613336565b905092915050565b6000808314156135b85760009050613625565b60008284029050828482816135c957fe5b0414613620576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806150d06021913960400191505060405180910390fd5b809150505b92915050565b6001601660006101000a81548160ff021916908315150217905550600061365c60028361342190919063ffffffff16565b90506000613673828461355b90919063ffffffff16565b9050600047905061368383613ea8565b6000613698824761355b90919063ffffffff16565b90506136a48382614156565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56184828560405180848152602001838152602001828152602001935050505060405180910390a1505050506000601660006101000a81548160ff02191690831515021790555050565b8061371b5761371a6142a7565b5b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156137be5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156137d3576137ce848484614309565b613a0a565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156138765750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561388b57613886848484614595565b613a09565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561392f5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156139445761393f848484614821565b613a08565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156139e65750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156139fb576139f6848484614a18565b613a07565b613a06848484614821565b5b5b5b5b80613a1857613a17614d39565b5b50505050565b6000806000600d5490506000600c54905060005b600880549050811015613c7257826003600060088481548110613a5157fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180613b385750816004600060088481548110613ad057fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b15613b4f57600d54600c5494509450505050613cab565b613bd86003600060088481548110613b6357fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548461355b90919063ffffffff16565b9250613c636004600060088481548110613bee57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548361355b90919063ffffffff16565b91508080600101915050613a32565b50613c8a600c54600d5461342190919063ffffffff16565b821015613ca257600d54600c54935093505050613cab565b81819350935050505b9091565b60008083118290613d5b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613d20578082015181840152602081019050613d05565b50505050905090810190601f168015613d4d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581613d6757fe5b049050809150509392505050565b6000806000806000613d8686614d56565b90506000613d9387614d87565b90506000613da088614db8565b90506000613ddb82613dcd85613dbf888e61355b90919063ffffffff16565b61355b90919063ffffffff16565b61355b90919063ffffffff16565b9050808484849750975097509750505050509193509193565b600080600080613e0d858a6135a590919063ffffffff16565b90506000613e24868a6135a590919063ffffffff16565b90506000613e3b878a6135a590919063ffffffff16565b90506000613e52888a6135a590919063ffffffff16565b90506000613e8d82613e7f85613e71888a61355b90919063ffffffff16565b61355b90919063ffffffff16565b61355b90919063ffffffff16565b90508481859750975097505050505050955095509592505050565b6060600267ffffffffffffffff81118015613ec257600080fd5b50604051908082528060200260200182016040528015613ef15781602001602082028036833780820191505090505b5090503081600081518110613f0257fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613fa257600080fd5b505afa158015613fb6573d6000803e3d6000fd5b505050506040513d6020811015613fcc57600080fd5b810190808051906020019092919050505081600181518110613fea57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061404f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612cba565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b838110156141115780820151818401526020810190506140f6565b505050509050019650505050505050600060405180830381600087803b15801561413a57600080fd5b505af115801561414e573d6000803e3d6000fd5b505050505050565b614181307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612cba565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7198230856000806141cb611f77565b426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b15801561425057600080fd5b505af1158015614264573d6000803e3d6000fd5b50505050506040513d606081101561427b57600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b60006010541480156142bb57506000601254145b80156142c957506000601454145b156142d357614307565b6010546011819055506012546013819055506014546015819055506000601081905550600060128190555060006014819055505b565b60006143136133f6565b90506000806000806000806000614329896134f3565b9650965096509650965096509650600061434c89846135a590919063ffffffff16565b90506143a08a600460008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461355b90919063ffffffff16565b600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061443588600360008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461355b90919063ffffffff16565b600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506144ca87600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461346b90919063ffffffff16565b600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061451682614de9565b61452286828686614f8e565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040518082815260200191505060405180910390a3505050505050505050505050565b600061459f6133f6565b905060008060008060008060006145b5896134f3565b965096509650965096509650965060006145d889846135a590919063ffffffff16565b905061462c88600360008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461355b90919063ffffffff16565b600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506146c185600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461346b90919063ffffffff16565b600460008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061475687600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461346b90919063ffffffff16565b600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506147a282614de9565b6147ae86828686614f8e565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040518082815260200191505060405180910390a3505050505050505050505050565b600061482b6133f6565b90506000806000806000806000614841896134f3565b9650965096509650965096509650600061486489846135a590919063ffffffff16565b90506148b888600360008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461355b90919063ffffffff16565b600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061494d87600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461346b90919063ffffffff16565b600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061499982614de9565b6149a586828686614f8e565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040518082815260200191505060405180910390a3505050505050505050505050565b6000614a226133f6565b90506000806000806000806000614a38896134f3565b96509650965096509650965096506000614a5b89846135a590919063ffffffff16565b9050614aaf8a600460008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461355b90919063ffffffff16565b600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614b4488600360008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461355b90919063ffffffff16565b600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614bd985600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461346b90919063ffffffff16565b600460008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614c6e87600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461346b90919063ffffffff16565b600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614cba82614de9565b614cc686828686614f8e565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040518082815260200191505060405180910390a3505050505050505050505050565b601154601081905550601354601281905550601554601481905550565b6000614d806064614d72601054856135a590919063ffffffff16565b61342190919063ffffffff16565b9050919050565b6000614db16064614da3601254856135a590919063ffffffff16565b61342190919063ffffffff16565b9050919050565b6000614de26064614dd4601454856135a590919063ffffffff16565b61342190919063ffffffff16565b9050919050565b6000614df36133f6565b90506000614e0a82846135a590919063ffffffff16565b9050614e5e81600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461346b90919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615614f8957614f4583600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461346b90919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b614fb583614fa786600d5461355b90919063ffffffff16565b61355b90919063ffffffff16565b600d81905550614fd082600e5461346b90919063ffffffff16565b600e81905550614feb81600f5461346b90919063ffffffff16565b600f8190555061500681600c5461355b90919063ffffffff16565b600c819055505050505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a2e5d2893cf7c55f2eec83884a05ace2e5ccb656b5357a3690bb51f245ebef5c64736f6c634300060c0033

Deployed Bytecode Sourcemap

26941:19824:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34016:98;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29504:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30416:161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31537:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28081:51;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29781:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30585:313;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32564:253;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29690:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;33280:479;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30906:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27803:26;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31732:378;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;31636:88;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33771:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32118:438;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28139:38;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28218:40;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32825:447;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;38542:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;18092:90;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27980:32;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29884:198;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17537:148;;;;;;;;;;;;;:::i;:::-;;28271:47;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31409:120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;16894:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;34126:122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29595:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31132:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;18548:293;;;;;;;;;;;;;:::i;:::-;;30090:167;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27890:27;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;34531:171;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34260:102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34373:150;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;18258:214;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30265:143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33894:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;17840:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34016:98;17116:12;:10;:12::i;:::-;17106:22;;:6;;;;;;;;;;:22;;;17098:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34100:6:::1;34090:7;:16;;;;34016:98:::0;:::o;29504:83::-;29541:13;29574:5;29567:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29504:83;:::o;30416:161::-;30491:4;30508:39;30517:12;:10;:12::i;:::-;30531:7;30540:6;30508:8;:39::i;:::-;30565:4;30558:11;;30416:161;;;;:::o;31537:87::-;31579:7;31606:10;;31599:17;;31537:87;:::o;28081:51::-;;;:::o;29781:95::-;29834:7;29861;;29854:14;;29781:95;:::o;30585:313::-;30683:4;30700:36;30710:6;30718:9;30729:6;30700:9;:36::i;:::-;30747:121;30756:6;30764:12;:10;:12::i;:::-;30778:89;30816:6;30778:89;;;;;;;;;;;;;;;;;:11;:19;30790:6;30778:19;;;;;;;;;;;;;;;:33;30798:12;:10;:12::i;:::-;30778:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;30747:8;:121::i;:::-;30886:4;30879:11;;30585:313;;;;;:::o;32564:253::-;32630:7;32669;;32658;:18;;32650:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32734:19;32757:10;:8;:10::i;:::-;32734:33;;32785:24;32797:11;32785:7;:11;;:24;;;;:::i;:::-;32778:31;;;32564:253;;;:::o;29690:83::-;29731:5;29756:9;;;;;;;;;;;29749:16;;29690:83;:::o;33280:479::-;17116:12;:10;:12::i;:::-;17106:22;;:6;;;;;;;;;;:22;;;17098:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33362:11:::1;:20;33374:7;33362:20;;;;;;;;;;;;;;;;;;;;;;;;;33354:60;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;33430:9;33425:327;33449:9;:16;;;;33445:1;:20;33425:327;;;33507:7;33491:23;;:9;33501:1;33491:12;;;;;;;;;;;;;;;;;;;;;;;;;:23;;;33487:254;;;33550:9;33579:1;33560:9;:16;;;;:20;33550:31;;;;;;;;;;;;;;;;;;;;;;;;;33535:9;33545:1;33535:12;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;33619:1;33600:7;:16;33608:7;33600:16;;;;;;;;;;;;;;;:20;;;;33662:5;33639:11;:20;33651:7;33639:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;33686:9;:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33720:5;;33487:254;33467:3;;;;;;;33425:327;;;;33280:479:::0;:::o;30906:218::-;30994:4;31011:83;31020:12;:10;:12::i;:::-;31034:7;31043:50;31082:10;31043:11;:25;31055:12;:10;:12::i;:::-;31043:25;;;;;;;;;;;;;;;:34;31069:7;31043:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;31011:8;:83::i;:::-;31112:4;31105:11;;30906:218;;;;:::o;27803:26::-;;;;:::o;31732:378::-;31784:14;31801:12;:10;:12::i;:::-;31784:29;;31833:11;:19;31845:6;31833:19;;;;;;;;;;;;;;;;;;;;;;;;;31832:20;31824:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31913:15;31938:19;31949:7;31938:10;:19::i;:::-;31912:45;;;;;;;;31986:28;32006:7;31986;:15;31994:6;31986:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;31968:7;:15;31976:6;31968:15;;;;;;;;;;;;;;;:46;;;;32035:20;32047:7;32035;;:11;;:20;;;;:::i;:::-;32025:7;:30;;;;32079:23;32094:7;32079:10;;:14;;:23;;;;:::i;:::-;32066:10;:36;;;;31732:378;;;:::o;31636:88::-;31678:7;31705:11;;31698:18;;31636:88;:::o;33771:111::-;17116:12;:10;:12::i;:::-;17106:22;;:6;;;;;;;;;;:22;;;17098:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33870:4:::1;33840:18;:27;33859:7;33840:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;33771:111:::0;:::o;32118:438::-;32208:7;32247;;32236;:18;;32228:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32306:17;32301:248;;32341:15;32366:19;32377:7;32366:10;:19::i;:::-;32340:45;;;;;;;;32407:7;32400:14;;;;;32301:248;32449:23;32481:19;32492:7;32481:10;:19::i;:::-;32447:53;;;;;;;;32522:15;32515:22;;;32118:438;;;;;:::o;28139:38::-;;;:::o;28218:40::-;;;;;;;;;;;;;:::o;32825:447::-;17116:12;:10;:12::i;:::-;17106:22;;:6;;;;;;;;;;:22;;;17098:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33022:11:::1;:20;33034:7;33022:20;;;;;;;;;;;;;;;;;;;;;;;;;33021:21;33013:61;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;33107:1;33088:7;:16;33096:7;33088:16;;;;;;;;;;;;;;;;:20;33085:108;;;33144:37;33164:7;:16;33172:7;33164:16;;;;;;;;;;;;;;;;33144:19;:37::i;:::-;33125:7;:16;33133:7;33125:16;;;;;;;;;;;;;;;:56;;;;33085:108;33226:4;33203:11;:20;33215:7;33203:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;33241:9;33256:7;33241:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32825:447:::0;:::o;38542:123::-;38606:4;38630:18;:27;38649:7;38630:27;;;;;;;;;;;;;;;;;;;;;;;;;38623:34;;38542:123;;;:::o;18092:90::-;18138:7;18165:9;;18158:16;;18092:90;:::o;27980:32::-;;;;:::o;29884:198::-;29950:7;29974:11;:20;29986:7;29974:20;;;;;;;;;;;;;;;;;;;;;;;;;29970:49;;;30003:7;:16;30011:7;30003:16;;;;;;;;;;;;;;;;29996:23;;;;29970:49;30037:37;30057:7;:16;30065:7;30057:16;;;;;;;;;;;;;;;;30037:19;:37::i;:::-;30030:44;;29884:198;;;;:::o;17537:148::-;17116:12;:10;:12::i;:::-;17106:22;;:6;;;;;;;;;;:22;;;17098:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17644:1:::1;17607:40;;17628:6;::::0;::::1;;;;;;;;17607:40;;;;;;;;;;;;17675:1;17658:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;17537:148::o:0;28271:47::-;;;;:::o;31409:120::-;31477:4;31501:11;:20;31513:7;31501:20;;;;;;;;;;;;;;;;;;;;;;;;;31494:27;;31409:120;;;:::o;16894:79::-;16932:7;16959:6;;;;;;;;;;;16952:13;;16894:79;:::o;34126:122::-;17116:12;:10;:12::i;:::-;17106:22;;:6;;;;;;;;;;:22;;;17098:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34228:12:::1;34212:13;:28;;;;34126:122:::0;:::o;29595:87::-;29634:13;29667:7;29660:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29595:87;:::o;31132:269::-;31225:4;31242:129;31251:12;:10;:12::i;:::-;31265:7;31274:96;31313:15;31274:96;;;;;;;;;;;;;;;;;:11;:25;31286:12;:10;:12::i;:::-;31274:25;;;;;;;;;;;;;;;:34;31300:7;31274:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;31242:8;:129::i;:::-;31389:4;31382:11;;31132:269;;;;:::o;18548:293::-;18618:10;18600:28;;:14;;;;;;;;;;;:28;;;18592:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18693:9;;18687:3;:15;18679:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18784:14;;;;;;;;;;;18755:44;;18776:6;;;;;;;;;;18755:44;;;;;;;;;;;;18819:14;;;;;;;;;;;18810:6;;:23;;;;;;;;;;;;;;;;;;18548:293::o;30090:167::-;30168:4;30185:42;30195:12;:10;:12::i;:::-;30209:9;30220:6;30185:9;:42::i;:::-;30245:4;30238:11;;30090:167;;;;:::o;27890:27::-;;;;:::o;34531:171::-;17116:12;:10;:12::i;:::-;17106:22;;:6;;;;;;;;;;:22;;;17098:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34632:8:::1;34608:21;;:32;;;;;;;;;;;;;;;;;;34656:38;34685:8;34656:38;;;;;;;;;;;;;;;;;;;;34531:171:::0;:::o;34260:102::-;17116:12;:10;:12::i;:::-;17106:22;;:6;;;;;;;;;;:22;;;17098:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34347:7:::1;34336:8;:18;;;;34260:102:::0;:::o;34373:150::-;17116:12;:10;:12::i;:::-;17106:22;;:6;;;;;;;;;;:22;;;17098:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34473:42:::1;34509:5;34473:31;34485:18;34473:7;;:11;;:31;;;;:::i;:::-;:35;;:42;;;;:::i;:::-;34458:12;:57;;;;34373:150:::0;:::o;18258:214::-;17116:12;:10;:12::i;:::-;17106:22;;:6;;;;;;;;;;:22;;;17098:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18339:6:::1;::::0;::::1;;;;;;;;18322:14;;:23;;;;;;;;;;;;;;;;;;18373:1;18356:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;18404:4;18398:3;:10;18386:9;:22;;;;18461:1;18424:40;;18445:6;::::0;::::1;;;;;;;;18424:40;;;;;;;;;;;;18258:214:::0;:::o;30265:143::-;30346:7;30373:11;:18;30385:5;30373:18;;;;;;;;;;;;;;;:27;30392:7;30373:27;;;;;;;;;;;;;;;;30366:34;;30265:143;;;;:::o;33894:110::-;17116:12;:10;:12::i;:::-;17106:22;;:6;;;;;;;;;;:22;;;17098:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33991:5:::1;33961:18;:27;33980:7;33961:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;33894:110:::0;:::o;17840:244::-;17116:12;:10;:12::i;:::-;17106:22;;:6;;;;;;;;;;:22;;;17098:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17949:1:::1;17929:22;;:8;:22;;;;17921:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18039:8;18010:38;;18031:6;::::0;::::1;;;;;;;;18010:38;;;;;;;;;;;;18068:8;18059:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;17840:244:::0;:::o;9302:106::-;9355:15;9390:10;9383:17;;9302:106;:::o;38673:337::-;38783:1;38766:19;;:5;:19;;;;38758:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38864:1;38845:21;;:7;:21;;;;38837:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38948:6;38918:11;:18;38930:5;38918:18;;;;;;;;;;;;;;;:27;38937:7;38918:27;;;;;;;;;;;;;;;:36;;;;38986:7;38970:32;;38979:5;38970:32;;;38995:6;38970:32;;;;;;;;;;;;;;;;;;38673:337;;;:::o;39018:1891::-;39156:1;39140:18;;:4;:18;;;;39132:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39233:1;39219:16;;:2;:16;;;;39211:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39303:1;39294:6;:10;39286:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39372:7;:5;:7::i;:::-;39364:15;;:4;:15;;;;:32;;;;;39389:7;:5;:7::i;:::-;39383:13;;:2;:13;;;;39364:32;39361:204;;;39431:12;;39421:6;:22;;39413:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39512:11;:17;39524:4;39512:17;;;;;;;;;;;;;;;;;;;;;;;;;39511:18;39503:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39361:204;39859:28;39890:24;39908:4;39890:9;:24::i;:::-;39859:55;;39962:12;;39938:20;:36;39935:112;;40023:12;;40000:35;;39935:112;40067:24;40118:29;;40094:20;:53;;40067:80;;40176:19;:53;;;;;40213:16;;;;;;;;;;;40212:17;40176:53;:91;;;;;40254:13;40246:21;;:4;:21;;;;40176:91;:129;;;;;40284:21;;;;;;;;;;;40176:129;40158:318;;;40355:29;;40332:52;;40428:36;40443:20;40428:14;:36::i;:::-;40158:318;40557:12;40572:4;40557:19;;40684:18;:24;40703:4;40684:24;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;40712:18;:22;40731:2;40712:22;;;;;;;;;;;;;;;;;;;;;;;;;40684:50;40681:96;;;40760:5;40750:15;;40681:96;40863:38;40878:4;40883:2;40886:6;40893:7;40863:14;:38::i;:::-;39018:1891;;;;;;:::o;5712:192::-;5798:7;5831:1;5826;:6;;5834:12;5818:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5858:9;5874:1;5870;:5;5858:17;;5895:1;5888:8;;;5712:192;;;;;:::o;36484:163::-;36525:7;36546:15;36563;36582:19;:17;:19::i;:::-;36545:56;;;;36619:20;36631:7;36619;:11;;:20;;;;:::i;:::-;36612:27;;;;36484:163;:::o;7110:132::-;7168:7;7195:39;7199:1;7202;7195:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;7188:46;;7110:132;;;;:::o;4809:181::-;4867:7;4887:9;4903:1;4899;:5;4887:17;;4928:1;4923;:6;;4915:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4981:1;4974:8;;;4809:181;;;;:::o;35090:457::-;35149:7;35158;35167;35176;35185;35194;35203;35224:23;35249:12;35263:13;35278:18;35300:20;35312:7;35300:11;:20::i;:::-;35223:97;;;;;;;;35332:15;35349:23;35374:12;35390:57;35402:7;35411:4;35417:5;35424:10;35436;:8;:10::i;:::-;35390:11;:57::i;:::-;35331:116;;;;;;35466:7;35475:15;35492:4;35498:15;35515:4;35521:5;35528:10;35458:81;;;;;;;;;;;;;;;;;;;;;35090:457;;;;;;;;;:::o;5273:136::-;5331:7;5358:43;5362:1;5365;5358:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;5351:50;;5273:136;;;;:::o;6163:471::-;6221:7;6471:1;6466;:6;6462:47;;;6496:1;6489:8;;;;6462:47;6521:9;6537:1;6533;:5;6521:17;;6566:1;6561;6557;:5;;;;;;:10;6549:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6625:1;6618:8;;;6163:471;;;;;:::o;40917:985::-;28716:4;28697:16;;:23;;;;;;;;;;;;;;;;;;41053:12:::1;41068:27;41093:1;41068:20;:24;;:27;;;;:::i;:::-;41053:42;;41106:17;41126:30;41151:4;41126:20;:24;;:30;;;;:::i;:::-;41106:50;;41434:22;41459:21;41434:46;;41525:22;41542:4;41525:16;:22::i;:::-;41678:18;41699:41;41725:14;41699:21;:25;;:41;;;;:::i;:::-;41678:62;;41790:35;41803:9;41814:10;41790:12;:35::i;:::-;41851:43;41866:4;41872:10;41884:9;41851:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28731:1;;;;28762:5:::0;28743:16;;:24;;;;;;;;;;;;;;;;;;40917:985;:::o;43101:834::-;43212:7;43208:40;;43234:14;:12;:14::i;:::-;43208:40;43273:11;:19;43285:6;43273:19;;;;;;;;;;;;;;;;;;;;;;;;;:46;;;;;43297:11;:22;43309:9;43297:22;;;;;;;;;;;;;;;;;;;;;;;;;43296:23;43273:46;43269:597;;;43336:48;43358:6;43366:9;43377:6;43336:21;:48::i;:::-;43269:597;;;43407:11;:19;43419:6;43407:19;;;;;;;;;;;;;;;;;;;;;;;;;43406:20;:46;;;;;43430:11;:22;43442:9;43430:22;;;;;;;;;;;;;;;;;;;;;;;;;43406:46;43402:464;;;43469:46;43489:6;43497:9;43508:6;43469:19;:46::i;:::-;43402:464;;;43538:11;:19;43550:6;43538:19;;;;;;;;;;;;;;;;;;;;;;;;;43537:20;:47;;;;;43562:11;:22;43574:9;43562:22;;;;;;;;;;;;;;;;;;;;;;;;;43561:23;43537:47;43533:333;;;43601:44;43619:6;43627:9;43638:6;43601:17;:44::i;:::-;43533:333;;;43667:11;:19;43679:6;43667:19;;;;;;;;;;;;;;;;;;;;;;;;;:45;;;;;43690:11;:22;43702:9;43690:22;;;;;;;;;;;;;;;;;;;;;;;;;43667:45;43663:203;;;43729:48;43751:6;43759:9;43770:6;43729:21;:48::i;:::-;43663:203;;;43810:44;43828:6;43836:9;43847:6;43810:17;:44::i;:::-;43663:203;43533:333;43402:464;43269:597;43890:7;43886:41;;43912:15;:13;:15::i;:::-;43886:41;43101:834;;;;:::o;36655:561::-;36705:7;36714;36734:15;36752:7;;36734:25;;36770:15;36788:7;;36770:25;;36817:9;36812:289;36836:9;:16;;;;36832:1;:20;36812:289;;;36902:7;36878;:21;36886:9;36896:1;36886:12;;;;;;;;;;;;;;;;;;;;;;;;;36878:21;;;;;;;;;;;;;;;;:31;:66;;;;36937:7;36913;:21;36921:9;36931:1;36921:12;;;;;;;;;;;;;;;;;;;;;;;;;36913:21;;;;;;;;;;;;;;;;:31;36878:66;36874:97;;;36954:7;;36963;;36946:25;;;;;;;;;36874:97;36996:34;37008:7;:21;37016:9;37026:1;37016:12;;;;;;;;;;;;;;;;;;;;;;;;;37008:21;;;;;;;;;;;;;;;;36996:7;:11;;:34;;;;:::i;:::-;36986:44;;37055:34;37067:7;:21;37075:9;37085:1;37075:12;;;;;;;;;;;;;;;;;;;;;;;;;37067:21;;;;;;;;;;;;;;;;37055:7;:11;;:34;;;;:::i;:::-;37045:44;;36854:3;;;;;;;36812:289;;;;37125:20;37137:7;;37125;;:11;;:20;;;;:::i;:::-;37115:7;:30;37111:61;;;37155:7;;37164;;37147:25;;;;;;;;37111:61;37191:7;37200;37183:25;;;;;;36655:561;;;:::o;7738:278::-;7824:7;7856:1;7852;:5;7859:12;7844:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7883:9;7899:1;7895;:5;;;;;;7883:17;;8007:1;8000:8;;;7738:278;;;;;:::o;35555:409::-;35615:7;35624;35633;35642;35662:12;35677:24;35693:7;35677:15;:24::i;:::-;35662:39;;35712:13;35728:25;35745:7;35728:16;:25::i;:::-;35712:41;;35764:18;35785:30;35807:7;35785:21;:30::i;:::-;35764:51;;35826:23;35852:44;35885:10;35852:28;35874:5;35852:17;35864:4;35852:7;:11;;:17;;;;:::i;:::-;:21;;:28;;;;:::i;:::-;:32;;:44;;;;:::i;:::-;35826:70;;35915:15;35932:4;35938:5;35945:10;35907:49;;;;;;;;;;;;35555:409;;;;;:::o;35972:504::-;36102:7;36111;36120;36140:15;36158:24;36170:11;36158:7;:11;;:24;;;;:::i;:::-;36140:42;;36193:12;36208:21;36217:11;36208:4;:8;;:21;;;;:::i;:::-;36193:36;;36240:13;36256:22;36266:11;36256:5;:9;;:22;;;;:::i;:::-;36240:38;;36289:18;36310:27;36325:11;36310:10;:14;;:27;;;;:::i;:::-;36289:48;;36348:23;36374:44;36407:10;36374:28;36396:5;36374:17;36386:4;36374:7;:11;;:17;;;;:::i;:::-;:21;;:28;;;;:::i;:::-;:32;;:44;;;;:::i;:::-;36348:70;;36437:7;36446:15;36463:4;36429:39;;;;;;;;;;;35972:504;;;;;;;;;:::o;41910:589::-;42036:21;42074:1;42060:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42036:40;;42105:4;42087;42092:1;42087:7;;;;;;;;;;;;;:23;;;;;;;;;;;42131:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42121:4;42126:1;42121:7;;;;;;;;;;;;;:32;;;;;;;;;;;42166:62;42183:4;42198:15;42216:11;42166:8;:62::i;:::-;42267:15;:66;;;42348:11;42374:1;42418:4;42445;42465:15;42267:224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41910:589;;:::o;42507:513::-;42655:62;42672:4;42687:15;42705:11;42655:8;:62::i;:::-;42760:15;:31;;;42799:9;42832:4;42852:11;42878:1;42921;42964:7;:5;:7::i;:::-;42986:15;42760:252;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42507:513;;:::o;38027:328::-;38084:1;38073:7;;:12;:29;;;;;38101:1;38089:8;;:13;38073:29;:51;;;;;38123:1;38106:13;;:18;38073:51;38070:63;;;38126:7;;38070:63;38171:7;;38153:15;:25;;;;38208:8;;38189:16;:27;;;;38251:13;;38227:21;:37;;;;38295:1;38285:7;:11;;;;38318:1;38307:8;:12;;;;38346:1;38330:13;:17;;;;38027:328;:::o;45294:689::-;45396:19;45419:10;:8;:10::i;:::-;45396:33;;45441:15;45458:23;45483:12;45497:23;45522:12;45536:13;45551:18;45573:19;45584:7;45573:10;:19::i;:::-;45440:152;;;;;;;;;;;;;;45603:13;45620:22;45630:11;45620:5;:9;;:22;;;;:::i;:::-;45603:39;;45671:28;45691:7;45671;:15;45679:6;45671:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;45653:7;:15;45661:6;45653:15;;;;;;;;;;;;;;;:46;;;;45728:28;45748:7;45728;:15;45736:6;45728:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;45710:7;:15;45718:6;45710:15;;;;;;;;;;;;;;;:46;;;;45788:39;45811:15;45788:7;:18;45796:9;45788:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;45767:7;:18;45775:9;45767:18;;;;;;;;;;;;;;;:60;;;;45841:26;45856:10;45841:14;:26::i;:::-;45878:37;45890:4;45896:5;45903:4;45909:5;45878:11;:37::i;:::-;45948:9;45931:44;;45940:6;45931:44;;;45959:15;45931:44;;;;;;;;;;;;;;;;;;45294:689;;;;;;;;;;;;:::o;44577:709::-;44677:19;44700:10;:8;:10::i;:::-;44677:33;;44722:15;44739:23;44764:12;44778:23;44803:12;44817:13;44832:18;44854:19;44865:7;44854:10;:19::i;:::-;44721:152;;;;;;;;;;;;;;44884:13;44901:22;44911:11;44901:5;:9;;:22;;;;:::i;:::-;44884:39;;44952:28;44972:7;44952;:15;44960:6;44952:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;44934:7;:15;44942:6;44934:15;;;;;;;;;;;;;;;:46;;;;45012:39;45035:15;45012:7;:18;45020:9;45012:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;44991:7;:18;44999:9;44991:18;;;;;;;;;;;;;;;:60;;;;45083:39;45106:15;45083:7;:18;45091:9;45083:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;45062:7;:18;45070:9;45062:18;;;;;;;;;;;;;;;:60;;;;45144:26;45159:10;45144:14;:26::i;:::-;45181:37;45193:4;45199:5;45206:4;45212:5;45181:11;:37::i;:::-;45251:9;45234:44;;45243:6;45234:44;;;45262:15;45234:44;;;;;;;;;;;;;;;;;;44577:709;;;;;;;;;;;;:::o;43943:626::-;44041:19;44064:10;:8;:10::i;:::-;44041:33;;44086:15;44103:23;44128:12;44142:23;44167:12;44181:13;44196:18;44218:19;44229:7;44218:10;:19::i;:::-;44085:152;;;;;;;;;;;;;;44249:13;44266:22;44276:11;44266:5;:9;;:22;;;;:::i;:::-;44249:39;;44317:28;44337:7;44317;:15;44325:6;44317:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;44299:7;:15;44307:6;44299:15;;;;;;;;;;;;;;;:46;;;;44377:39;44400:15;44377:7;:18;44385:9;44377:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;44356:7;:18;44364:9;44356:18;;;;;;;;;;;;;;;:60;;;;44427:26;44442:10;44427:14;:26::i;:::-;44464:37;44476:4;44482:5;44489:4;44495:5;44464:11;:37::i;:::-;44534:9;44517:44;;44526:6;44517:44;;;44545:15;44517:44;;;;;;;;;;;;;;;;;;43943:626;;;;;;;;;;;;:::o;45995:765::-;46097:19;46120:10;:8;:10::i;:::-;46097:33;;46142:15;46159:23;46184:12;46198:23;46223:12;46237:13;46252:18;46274:19;46285:7;46274:10;:19::i;:::-;46141:152;;;;;;;;;;;;;;46304:13;46321:22;46331:11;46321:5;:9;;:22;;;;:::i;:::-;46304:39;;46372:28;46392:7;46372;:15;46380:6;46372:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;46354:7;:15;46362:6;46354:15;;;;;;;;;;;;;;;:46;;;;46429:28;46449:7;46429;:15;46437:6;46429:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;46411:7;:15;46419:6;46411:15;;;;;;;;;;;;;;;:46;;;;46489:39;46512:15;46489:7;:18;46497:9;46489:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;46468:7;:18;46476:9;46468:18;;;;;;;;;;;;;;;:60;;;;46560:39;46583:15;46560:7;:18;46568:9;46560:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;46539:7;:18;46547:9;46539:18;;;;;;;;;;;;;;;:60;;;;46618:26;46633:10;46618:14;:26::i;:::-;46655:37;46667:4;46673:5;46680:4;46686:5;46655:11;:37::i;:::-;46725:9;46708:44;;46717:6;46708:44;;;46736:15;46708:44;;;;;;;;;;;;;;;;;;45995:765;;;;;;;;;;;;:::o;38367:163::-;38421:15;;38411:7;:25;;;;38458:16;;38447:8;:27;;;;38501:21;;38485:13;:37;;;;38367:163::o;37595:130::-;37659:7;37686:31;37711:5;37686:20;37698:7;;37686;:11;;:20;;;;:::i;:::-;:24;;:31;;;;:::i;:::-;37679:38;;37595:130;;;:::o;37733:132::-;37798:7;37825:32;37851:5;37825:21;37837:8;;37825:7;:11;;:21;;;;:::i;:::-;:25;;:32;;;;:::i;:::-;37818:39;;37733:132;;;:::o;37873:142::-;37943:7;37970:37;38001:5;37970:26;37982:13;;37970:7;:11;;:26;;;;:::i;:::-;:30;;:37;;;;:::i;:::-;37963:44;;37873:142;;;:::o;37228:355::-;37291:19;37314:10;:8;:10::i;:::-;37291:33;;37335:18;37356:27;37371:11;37356:10;:14;;:27;;;;:::i;:::-;37335:48;;37419:38;37446:10;37419:7;:22;37435:4;37419:22;;;;;;;;;;;;;;;;:26;;:38;;;;:::i;:::-;37394:7;:22;37410:4;37394:22;;;;;;;;;;;;;;;:63;;;;37471:11;:26;37491:4;37471:26;;;;;;;;;;;;;;;;;;;;;;;;;37468:107;;;37537:38;37564:10;37537:7;:22;37553:4;37537:22;;;;;;;;;;;;;;;;:26;;:38;;;;:::i;:::-;37512:7;:22;37528:4;37512:22;;;;;;;;;;;;;;;:63;;;;37468:107;37228:355;;;:::o;34808:274::-;34916:28;34938:5;34916:17;34928:4;34916:7;;:11;;:17;;;;:::i;:::-;:21;;:28;;;;:::i;:::-;34906:7;:38;;;;34968:20;34983:4;34968:10;;:14;;:20;;;;:::i;:::-;34955:10;:33;;;;35013:22;35029:5;35013:11;;:15;;:22;;;;:::i;:::-;34999:11;:36;;;;35056:18;35068:5;35056:7;;:11;;:18;;;;:::i;:::-;35046:7;:28;;;;34808:274;;;;:::o

Swarm Source

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