ETH Price: $3,461.27 (-1.74%)
Gas: 3 Gwei

Token

TOUCHDOWN SHIBA INU (TDSHIB)
 

Overview

Max Total Supply

1,000,000,000,000,000 TDSHIB

Holders

452

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Balance
1,167,949,790.70264676 TDSHIB

Value
$0.00
0xe0b196f941427d6cD5eB3E693bEDa5715d4087B9
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x98447829...427eED122
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
TouchDownShibaInu

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-12-27
*/

// TOUCHDOWN SHIBA INU
// Telegram: https://t.me/TOUCHDOWNSHIB
// Web: https://touchdownshib.com
// Twitter: https://twitter.com/TOUCHDOWNSHIB

pragma solidity ^0.8.10;

// SPDX-License-Identifier: Unlicensed
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 payable(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() {
        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 geUnlockTime() public view returns (uint256) {
        return _lockTime;
    }

    //Locks the contract for owner for the amount of time provided
    function lock(uint256 time) public virtual onlyOwner {
        _previousOwner = _owner;
        _owner = address(0);
        _lockTime = block.timestamp + time;
        emit OwnershipTransferred(_owner, address(0));
    }

    //Unlocks the contract for owner when _lockTime is exceeds
    function unlock() public virtual {
        require(
            _previousOwner == msg.sender,
            "You don't have permission to unlock"
        );
        require(block.timestamp > _lockTime, "Contract is locked until a later date");
        emit OwnershipTransferred(_owner, _previousOwner);
        _owner = _previousOwner;
        _previousOwner = address(0);
    }
}

/**
 * @title TokenRecover
 * @author Vittorio Minacori (https://github.com/vittominacori)
 * @dev Allows owner to recover any ERC20 sent into the contract
 */
contract TokenRecover is Ownable {

    using Address for address payable;
    /**
     * @dev Remember that only owner can call so be careful when use on contracts generated from other contracts.
     * @param tokenAddress The token contract address
     * @param tokenAmount Number of tokens to be sent
     */
    function recoverERC20(address tokenAddress, uint256 tokenAmount) public virtual onlyOwner {
        IERC20(tokenAddress).transfer(owner(), tokenAmount);
    }

    function recoverETH(address account, uint256 amount) public virtual onlyOwner {
        payable(account).sendValue(amount);
    }
}

// pragma solidity >=0.5.0;

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

    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(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

    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,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 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 (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 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 (uint256);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    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 (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 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,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETH(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountToken, uint256 amountETH);

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}

// pragma solidity >=0.6.2;

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

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

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

    mapping(address => bool) private _isExcludedFromFee;

    mapping(address => bool) private _isExcluded;
    address[] private _excluded;
    mapping(address => bool) private _isBlackListedBot;

    mapping(address => bool) private _isExcludedFromLimit;
    address[] private _blackListedBots;

    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal = 1000000000 * 10**6 * 10**8;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;


    string private _name = "TOUCHDOWN SHIBA INU";
    string private _symbol = "TDSHIB";
    uint8 private _decimals = 8;

    struct BuyFee {
        uint8 tax;
        uint8 liquidity;
    }

    struct SellFee {
        uint8 tax;
        uint8 liquidity;
    }

    BuyFee public buyFee;
    SellFee public sellFee;

    uint8 private _taxFee;
    uint8 private _liquidityFee;

    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;

    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;

    uint256 public _maxTxAmount = 1000000000 * 10**6 * 10**8;
    uint256 private numTokensSellToAddToLiquidity = 500000 * 10**6 * 10**8;
    uint256 public _maxWalletSize = 1 * 10**13 * 10**8;

    event botAddedToBlacklist(address account);
    event botRemovedFromBlacklist(address account);

    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );
    event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress);

    modifier lockTheSwap() {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

    constructor() {
        _rOwned[_msgSender()] = _rTotal;

        buyFee.tax = 2;
        buyFee.liquidity = 8;

        sellFee.tax = 2;
        sellFee.liquidity = 8;

        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, dev wallet, and this contract from fee
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;

        _isExcludedFromLimit[owner()] = true;
        _isExcludedFromLimit[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 deliver(uint256 tAmount) public {
        address sender = _msgSender();
        require(
            !_isExcluded[sender],
            "Excluded addresses cannot call this function"
        );

        (
            ,
            uint256 tFee,
            uint256 tLiquidity
        ) = _getTValues(tAmount);
        (uint256 rAmount, , ) = _getRValues(
            tAmount,
            tFee,
            tLiquidity,
            _getRate()
        );

        _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");

        (
            ,
            uint256 tFee,
            uint256 tLiquidity
        ) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, ) = _getRValues(
            tAmount,
            tFee,
            tLiquidity,
            _getRate()
        );

        if (!deductTransferFee) {
            return rAmount;
        } else {
            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 addBotToBlacklist(address account) external onlyOwner {
        require(
            account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D,
            "We cannot blacklist UniSwap router"
        );
        require(!_isBlackListedBot[account], "Account is already blacklisted");
        _isBlackListedBot[account] = true;
        _blackListedBots.push(account);

        emit botAddedToBlacklist(account);
    }

        function isBotBlacklisted(address account) public view returns(bool) {
            return _isBlackListedBot[account];
    }

    function removeBotFromBlacklist(address account) external onlyOwner {
        require(_isBlackListedBot[account], "Account is not blacklisted");
        for (uint256 i = 0; i < _blackListedBots.length; i++) {
            if (_blackListedBots[i] == account) {
                _blackListedBots[i] = _blackListedBots[
                    _blackListedBots.length - 1
                ];
                _isBlackListedBot[account] = false;
                _blackListedBots.pop();
                break;
            }
        }
        emit botRemovedFromBlacklist(account);
    }

    function excludeFromReward(address account) public onlyOwner {
        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 not 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 excludeFromLimit(address account) public onlyOwner {
        _isExcludedFromLimit[account] = true;
    }

    function includeInLimit(address account) public onlyOwner {
        _isExcludedFromLimit[account] = false;
    }

    function setSellFee(
        uint8 tax,
        uint8 liquidity
    ) external onlyOwner {
        sellFee.tax = tax;
        sellFee.liquidity = liquidity;
    }

    function setBuyFee(
        uint8 tax,
        uint8 liquidity
    ) external onlyOwner {
        buyFee.tax = tax;
        buyFee.liquidity = liquidity;
    }


    function setNumTokensSellToAddToLiquidity(uint256 numTokens) external onlyOwner {
        numTokensSellToAddToLiquidity = numTokens;
    }

    function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner {
        _maxTxAmount = _tTotal.mul(maxTxPercent).div(10**2);
    }

    function _setMaxWalletSizePercent(uint256 maxWalletSize)
        external
        onlyOwner
    {
        _maxWalletSize = _tTotal.mul(maxWalletSize).div(10**2);
    }

    function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }

    //to receive ETH from uniswapV2Router when swapping
    receive() external payable {}

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

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

        return (tTransferAmount, tFee, tLiquidity);
    }

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

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

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

    function _takeLiquidity(uint256 tLiquidity) private {
        uint256 currentRate = _getRate();
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity);
        if (_isExcluded[address(this)])
            _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity);
    }

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

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

    function removeAllFee() private {
        if (_taxFee == 0 && _liquidityFee == 0) return;

        _taxFee = 0;
        _liquidityFee = 0;
    }

    function setBuy() private {
        _taxFee = buyFee.tax;
        _liquidityFee = buyFee.liquidity;

    }

    function setSell() private {
        _taxFee = sellFee.tax;
        _liquidityFee = sellFee.liquidity;
    }

    function isExcludedFromFee(address account) public view returns (bool) {
        return _isExcludedFromFee[account];
    }

    function isExcludedFromLimit(address account) public view returns (bool) {
        return _isExcludedFromLimit[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");
        require(!_isBlackListedBot[from], "from is blacklisted");
        require(!_isBlackListedBot[msg.sender], "you are blacklisted");
        require(!_isBlackListedBot[tx.origin], "blacklisted");

        if (!_isExcludedFromLimit[from] && !_isExcludedFromLimit[to]) { 
            require(amount <= _maxTxAmount,"Transfer amount exceeds the maxTxAmount.");
            
            if(to != uniswapV2Pair) { 
                require(balanceOf(to) + amount < _maxWalletSize, "TOKEN: Balance exceeds wallet size!");
            }
        }


        // 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]) || (from != uniswapV2Pair && to != uniswapV2Pair)) {
            takeFee = false;
        } else {
            //Set Fee for Buys
            if(from == uniswapV2Pair && to != address(uniswapV2Router)) {
                setBuy();
            }
            //Set Fee for Sells
            if (to == uniswapV2Pair && from != address(uniswapV2Router)) {
                setSell();
            }
        }

        //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);
        }
        removeAllFee();
    }

    function _transferStandard(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        (
            uint256 tTransferAmount,
            uint256 tFee,
            uint256 tLiquidity
        ) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(
            tAmount,
            tFee,
            tLiquidity,
            _getRate()
        );

        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }


    function _transferToExcluded(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        (
            uint256 tTransferAmount,
            uint256 tFee,
            uint256 tLiquidity
        ) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(
            tAmount,
            tFee,
            tLiquidity,
            _getRate()
        );

        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferFromExcluded(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        (
            uint256 tTransferAmount,
            uint256 tFee,
            uint256 tLiquidity
        ) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(
            tAmount,
            tFee,
            tLiquidity,
            _getRate()
        );

        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferBothExcluded(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        (
            uint256 tTransferAmount,
            uint256 tFee,
            uint256 tLiquidity
        ) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(
            tAmount,
            tFee,
            tLiquidity,
            _getRate()
        );

        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }
}

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":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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"botAddedToBlacklist","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"botRemovedFromBlacklist","type":"event"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxWalletSize","type":"uint256"}],"name":"_setMaxWalletSizePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addBotToBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint8","name":"tax","type":"uint8"},{"internalType":"uint8","name":"liquidity","type":"uint8"}],"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":"excludeFromLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInLimit","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":"isBotBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromLimit","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":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"recoverERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"recoverETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeBotFromBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint8","name":"tax","type":"uint8"},{"internalType":"uint8","name":"liquidity","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"tax","type":"uint8"},{"internalType":"uint8","name":"liquidity","type":"uint8"}],"name":"setBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"setNumTokensSellToAddToLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"tax","type":"uint8"},{"internalType":"uint8","name":"liquidity","type":"uint8"}],"name":"setSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405269152d02c7e14af6800000600c819055620000229060001962000446565b620000309060001962000469565b600d556040805180820190915260138082527f544f554348444f574e20534849424120494e550000000000000000000000000060209092019182526200007991600f91620003a0565b50604080518082019091526006808252652a2229a424a160d11b6020909201918252620000a991601091620003a0565b506011805460ff191660081790556015805460ff60a81b1916600160a81b17905569152d02c7e14af68000006016556802b5e3af16b1880000601755683635c9adc5dea00000601855348015620000ff57600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600d5433600090815260036020908152604091829020929092556012805461080261ffff199182168117909255601380549091169091179055805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d92839263c45a015592600480830193928290030181865afa158015620001c7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001ed91906200048f565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200023b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200026191906200048f565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620002af573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002d591906200048f565b601580546001600160a01b0319166001600160a01b039283161790556014805462010000600160b01b03191662010000848416021790556000805482168152600660209081526040808320805460ff19908116600190811790925530808652838620805483168417905585549096168552600a84528285208054821683179055948452818420805490951617909355600c54925192835233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350620004fe565b828054620003ae90620004c1565b90600052602060002090601f016020900481019282620003d257600085556200041d565b82601f10620003ed57805160ff19168380011785556200041d565b828001600101855582156200041d579182015b828111156200041d57825182559160200191906001019062000400565b506200042b9291506200042f565b5090565b5b808211156200042b576000815560010162000430565b6000826200046457634e487b7160e01b600052601260045260246000fd5b500690565b6000828210156200048a57634e487b7160e01b600052601160045260246000fd5b500390565b600060208284031215620004a257600080fd5b81516001600160a01b0381168114620004ba57600080fd5b9392505050565b600181811c90821680620004d657607f821691505b60208210811415620004f857634e487b7160e01b600052602260045260246000fd5b50919050565b613336806200050e6000396000f3fe6080604052600436106102975760003560e01c806370a082311161015a578063af2ce614116100c1578063dd4670641161007a578063dd46706414610853578063dd62ed3e14610873578063ea2f0b37146108b9578063f0f165af146108d9578063f2fde38b146108f9578063f6831bf21461091957600080fd5b8063af2ce61414610785578063b030b34a146107a5578063b6c52324146107c5578063c49b9a80146107da578063d543dbeb146107fa578063d94160e01461081a57600080fd5b80638f9a55c0116101135780638f9a55c0146106e557806391d919a9146106fb57806395d89b411461071b578063a457c2d714610730578063a69df4b514610750578063a9059cbb1461076557600080fd5b806370a0823114610623578063715018a6146106435780637d1db4a51461065857806388f820201461066e5780638980f11f146106a75780638da5cb5b146106c757600080fd5b80633685d419116101fe57806347062402116101b7578063470624021461054657806349bd5a5e146105695780634a74bb021461058957806352390c02146105aa5780635342acb4146105ca5780636e4778611461060357600080fd5b80633685d4191461048657806339509351146104a65780633bd5d173146104c65780633e0c0629146104e6578063437823ec146105065780634549b0391461052657600080fd5b806318160ddd1161025057806318160ddd146103b25780631d7ef879146103c757806323b872dd146103e75780632b14ca56146104075780632d83811914610444578063313ce5671461046457600080fd5b806305cb4893146102a357806306fdde03146102f1578063095ea7b3146103135780630bd3a7f91461033357806313114a9d146103555780631694505e1461037457600080fd5b3661029e57005b600080fd5b3480156102af57600080fd5b506102dc6102be366004612eb3565b6001600160a01b031660009081526009602052604090205460ff1690565b60405190151581526020015b60405180910390f35b3480156102fd57600080fd5b50610306610939565b6040516102e89190612ed0565b34801561031f57600080fd5b506102dc61032e366004612f25565b6109cb565b34801561033f57600080fd5b5061035361034e366004612eb3565b6109e2565b005b34801561036157600080fd5b50600e545b6040519081526020016102e8565b34801561038057600080fd5b5060145461039a906201000090046001600160a01b031681565b6040516001600160a01b0390911681526020016102e8565b3480156103be57600080fd5b50600c54610366565b3480156103d357600080fd5b506103536103e2366004612eb3565b610a39565b3480156103f357600080fd5b506102dc610402366004612f51565b610be1565b34801561041357600080fd5b5060135461042a9060ff8082169161010090041682565b6040805160ff9384168152929091166020830152016102e8565b34801561045057600080fd5b5061036661045f366004612f92565b610c4a565b34801561047057600080fd5b5060115460405160ff90911681526020016102e8565b34801561049257600080fd5b506103536104a1366004612eb3565b610cce565b3480156104b257600080fd5b506102dc6104c1366004612f25565b610e85565b3480156104d257600080fd5b506103536104e1366004612f92565b610ebb565b3480156104f257600080fd5b50610353610501366004612f25565b610fbe565b34801561051257600080fd5b50610353610521366004612eb3565b610ffb565b34801561053257600080fd5b50610366610541366004612fb9565b611049565b34801561055257600080fd5b5060125461042a9060ff8082169161010090041682565b34801561057557600080fd5b5060155461039a906001600160a01b031681565b34801561059557600080fd5b506015546102dc90600160a81b900460ff1681565b3480156105b657600080fd5b506103536105c5366004612eb3565b6110df565b3480156105d657600080fd5b506102dc6105e5366004612eb3565b6001600160a01b031660009081526006602052604090205460ff1690565b34801561060f57600080fd5b5061035361061e366004612fff565b611232565b34801561062f57600080fd5b5061036661063e366004612eb3565b611280565b34801561064f57600080fd5b506103536112df565b34801561066457600080fd5b5061036660165481565b34801561067a57600080fd5b506102dc610689366004612eb3565b6001600160a01b031660009081526007602052604090205460ff1690565b3480156106b357600080fd5b506103536106c2366004612f25565b611341565b3480156106d357600080fd5b506000546001600160a01b031661039a565b3480156106f157600080fd5b5061036660185481565b34801561070757600080fd5b50610353610716366004612eb3565b611402565b34801561072757600080fd5b5061030661144d565b34801561073c57600080fd5b506102dc61074b366004612f25565b61145c565b34801561075c57600080fd5b506103536114ab565b34801561077157600080fd5b506102dc610780366004612f25565b6115c2565b34801561079157600080fd5b506103536107a0366004612f92565b6115cf565b3480156107b157600080fd5b506103536107c0366004612eb3565b61161f565b3480156107d157600080fd5b50600254610366565b3480156107e657600080fd5b506103536107f5366004613032565b611804565b34801561080657600080fd5b50610353610815366004612f92565b61187b565b34801561082657600080fd5b506102dc610835366004612eb3565b6001600160a01b03166000908152600a602052604090205460ff1690565b34801561085f57600080fd5b5061035361086e366004612f92565b6118c5565b34801561087f57600080fd5b5061036661088e36600461304f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b3480156108c557600080fd5b506103536108d4366004612eb3565b61194a565b3480156108e557600080fd5b506103536108f4366004612f92565b611995565b34801561090557600080fd5b50610353610914366004612eb3565b6119c4565b34801561092557600080fd5b50610353610934366004612fff565b611a9c565b6060600f80546109489061307d565b80601f01602080910402602001604051908101604052809291908181526020018280546109749061307d565b80156109c15780601f10610996576101008083540402835291602001916109c1565b820191906000526020600020905b8154815290600101906020018083116109a457829003601f168201915b5050505050905090565b60006109d8338484611aea565b5060015b92915050565b6000546001600160a01b03163314610a155760405162461bcd60e51b8152600401610a0c906130b8565b60405180910390fd5b6001600160a01b03166000908152600a60205260409020805460ff19166001179055565b6000546001600160a01b03163314610a635760405162461bcd60e51b8152600401610a0c906130b8565b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610adb5760405162461bcd60e51b815260206004820152602260248201527f57652063616e6e6f7420626c61636b6c69737420556e695377617020726f757460448201526132b960f11b6064820152608401610a0c565b6001600160a01b03811660009081526009602052604090205460ff1615610b445760405162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c697374656400006044820152606401610a0c565b6001600160a01b0381166000818152600960209081526040808320805460ff19166001908117909155600b805491820181559093527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db990920180546001600160a01b0319168417905590519182527f6cf65f3ff491cb358bea0efd5ee0fe0340757225d38a096d09c637ba897a679f91015b60405180910390a150565b6000610bee848484611c0e565b610c408433610c3b85604051806060016040528060288152602001613294602891396001600160a01b038a166000908152600560209081526040808320338452909152902054919061213e565b611aea565b5060019392505050565b6000600d54821115610cb15760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b6064820152608401610a0c565b6000610cbb612178565b9050610cc7838261219b565b9392505050565b6000546001600160a01b03163314610cf85760405162461bcd60e51b8152600401610a0c906130b8565b6001600160a01b03811660009081526007602052604090205460ff16610d605760405162461bcd60e51b815260206004820152601760248201527f4163636f756e74206973206e6f74206578636c756465640000000000000000006044820152606401610a0c565b60005b600854811015610e8157816001600160a01b031660088281548110610d8a57610d8a6130ed565b6000918252602090912001546001600160a01b03161415610e6f5760088054610db590600190613119565b81548110610dc557610dc56130ed565b600091825260209091200154600880546001600160a01b039092169183908110610df157610df16130ed565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610e4957610e49613130565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610e7981613146565b915050610d63565b5050565b3360008181526005602090815260408083206001600160a01b038716845290915281205490916109d8918590610c3b90866121dd565b3360008181526007602052604090205460ff1615610f305760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b6064820152608401610a0c565b600080610f3c8461223c565b92509250506000610f56858484610f51612178565b61227e565b50506001600160a01b038516600090815260036020526040902054909150610f7e90826122ce565b6001600160a01b038516600090815260036020526040902055600d54610fa490826122ce565b600d55600e54610fb490866121dd565b600e555050505050565b6000546001600160a01b03163314610fe85760405162461bcd60e51b8152600401610a0c906130b8565b610e816001600160a01b03831682612310565b6000546001600160a01b031633146110255760405162461bcd60e51b8152600401610a0c906130b8565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600c5483111561109d5760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610a0c565b6000806110a98561223c565b92509250506000806110bf878585610f51612178565b5091509150856110d4575092506109dc915050565b93506109dc92505050565b6000546001600160a01b031633146111095760405162461bcd60e51b8152600401610a0c906130b8565b6001600160a01b03811660009081526007602052604090205460ff16156111725760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610a0c565b6001600160a01b038116600090815260036020526040902054156111cc576001600160a01b0381166000908152600360205260409020546111b290610c4a565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6000546001600160a01b0316331461125c5760405162461bcd60e51b8152600401610a0c906130b8565b6012805460ff9283166101000261ffff199091169290931691909117919091179055565b6001600160a01b03811660009081526007602052604081205460ff16156112bd57506001600160a01b031660009081526004602052604090205490565b6001600160a01b0382166000908152600360205260409020546109dc90610c4a565b6000546001600160a01b031633146113095760405162461bcd60e51b8152600401610a0c906130b8565b600080546040516001600160a01b03909116906000805160206132bc833981519152908390a3600080546001600160a01b0319169055565b6000546001600160a01b0316331461136b5760405162461bcd60e51b8152600401610a0c906130b8565b816001600160a01b031663a9059cbb61138c6000546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af11580156113d9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113fd9190613161565b505050565b6000546001600160a01b0316331461142c5760405162461bcd60e51b8152600401610a0c906130b8565b6001600160a01b03166000908152600a60205260409020805460ff19169055565b6060601080546109489061307d565b60006109d83384610c3b856040518060600160405280602581526020016132dc602591393360009081526005602090815260408083206001600160a01b038d168452909152902054919061213e565b6001546001600160a01b031633146115115760405162461bcd60e51b815260206004820152602360248201527f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6044820152626f636b60e81b6064820152608401610a0c565b60025442116115705760405162461bcd60e51b815260206004820152602560248201527f436f6e7472616374206973206c6f636b656420756e74696c2061206c61746572604482015264206461746560d81b6064820152608401610a0c565b600154600080546040516001600160a01b0393841693909116916000805160206132bc83398151915291a360018054600080546001600160a01b03199081166001600160a01b03841617909155169055565b60006109d8338484611c0e565b6000546001600160a01b031633146115f95760405162461bcd60e51b8152600401610a0c906130b8565b611619606461161383600c5461242990919063ffffffff16565b9061219b565b60185550565b6000546001600160a01b031633146116495760405162461bcd60e51b8152600401610a0c906130b8565b6001600160a01b03811660009081526009602052604090205460ff166116b15760405162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c69737465640000000000006044820152606401610a0c565b60005b600b548110156117ca57816001600160a01b0316600b82815481106116db576116db6130ed565b6000918252602090912001546001600160a01b031614156117b857600b805461170690600190613119565b81548110611716576117166130ed565b600091825260209091200154600b80546001600160a01b039092169183908110611742576117426130ed565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600990915260409020805460ff19169055600b80548061179157611791613130565b600082815260209020810160001990810180546001600160a01b03191690550190556117ca565b806117c281613146565b9150506116b4565b506040516001600160a01b03821681527fbbde34c13f8f74d401949e0eb9a888308ee89bb0887791bba7e8dd0bced4704190602001610bd6565b6000546001600160a01b0316331461182e5760405162461bcd60e51b8152600401610a0c906130b8565b60158054821515600160a81b0260ff60a81b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15990610bd690831515815260200190565b6000546001600160a01b031633146118a55760405162461bcd60e51b8152600401610a0c906130b8565b6118bf606461161383600c5461242990919063ffffffff16565b60165550565b6000546001600160a01b031633146118ef5760405162461bcd60e51b8152600401610a0c906130b8565b60008054600180546001600160a01b03199081166001600160a01b0384161790915516905561191e814261317e565b600255600080546040516001600160a01b03909116906000805160206132bc833981519152908390a350565b6000546001600160a01b031633146119745760405162461bcd60e51b8152600401610a0c906130b8565b6001600160a01b03166000908152600660205260409020805460ff19169055565b6000546001600160a01b031633146119bf5760405162461bcd60e51b8152600401610a0c906130b8565b601755565b6000546001600160a01b031633146119ee5760405162461bcd60e51b8152600401610a0c906130b8565b6001600160a01b038116611a535760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a0c565b600080546040516001600160a01b03808516939216916000805160206132bc83398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314611ac65760405162461bcd60e51b8152600401610a0c906130b8565b6013805460ff9283166101000261ffff199091169290931691909117919091179055565b6001600160a01b038316611b4c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a0c565b6001600160a01b038216611bad5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a0c565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611c725760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a0c565b6001600160a01b038216611cd45760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a0c565b60008111611d365760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610a0c565b6001600160a01b03831660009081526009602052604090205460ff1615611d955760405162461bcd60e51b8152602060048201526013602482015272199c9bdb481a5cc8189b1858dadb1a5cdd1959606a1b6044820152606401610a0c565b3360009081526009602052604090205460ff1615611deb5760405162461bcd60e51b81526020600482015260136024820152721e5bdd48185c9948189b1858dadb1a5cdd1959606a1b6044820152606401610a0c565b3260009081526009602052604090205460ff1615611e395760405162461bcd60e51b815260206004820152600b60248201526a189b1858dadb1a5cdd195960aa1b6044820152606401610a0c565b6001600160a01b0383166000908152600a602052604090205460ff16158015611e7b57506001600160a01b0382166000908152600a602052604090205460ff16155b15611f6857601654811115611ee35760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610a0c565b6015546001600160a01b03838116911614611f685760185481611f0584611280565b611f0f919061317e565b10611f685760405162461bcd60e51b815260206004820152602360248201527f544f4b454e3a2042616c616e636520657863656564732077616c6c65742073696044820152627a652160e81b6064820152608401610a0c565b6000611f7330611280565b90506016548110611f8357506016545b60175481108015908190611fa15750601554600160a01b900460ff16155b8015611fbb57506015546001600160a01b03868116911614155b8015611fd05750601554600160a81b900460ff165b15611fe3576017549150611fe3826124a8565b6001600160a01b03851660009081526006602052604090205460019060ff168061202557506001600160a01b03851660009081526006602052604090205460ff165b8061205757506015546001600160a01b0387811691161480159061205757506015546001600160a01b03868116911614155b156120645750600061212a565b6015546001600160a01b03878116911614801561209557506014546001600160a01b03868116620100009092041614155b156120c7576120c76012546014805461010080840460ff90811690910261ffff19909216931692909217919091179055565b6015546001600160a01b0386811691161480156120f857506014546001600160a01b03878116620100009092041614155b1561212a5761212a6013546014805461010080840460ff90811690910261ffff19909216931692909217919091179055565b6121368686868461254f565b505050505050565b600081848411156121625760405162461bcd60e51b8152600401610a0c9190612ed0565b50600061216f8486613119565b95945050505050565b60008060006121856126be565b9092509050612194828261219b565b9250505090565b6000610cc783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612840565b6000806121ea838561317e565b905083811015610cc75760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610a0c565b60008060008061224b8561286e565b9050600061225886612889565b905060006122708261226a89866122ce565b906122ce565b979296509094509092505050565b600080808061228d8886612429565b9050600061229b8887612429565b905060006122a98888612429565b905060006122bb8261226a86866122ce565b939b939a50919850919650505050505050565b6000610cc783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061213e565b804710156123605760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610a0c565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146123ad576040519150601f19603f3d011682016040523d82523d6000602084013e6123b2565b606091505b50509050806113fd5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610a0c565b600082612438575060006109dc565b60006124448385613196565b90508261245185836131b5565b14610cc75760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610a0c565b6015805460ff60a01b1916600160a01b17905560006124c882600261219b565b905060006124d683836122ce565b9050476124e2836128a9565b60006124ee47836122ce565b90506124fa8382612a20565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a150506015805460ff60a01b19169055505050565b8061255c5761255c612b02565b6001600160a01b03841660009081526007602052604090205460ff16801561259d57506001600160a01b03831660009081526007602052604090205460ff16155b156125b2576125ad848484612b31565b6126b0565b6001600160a01b03841660009081526007602052604090205460ff161580156125f357506001600160a01b03831660009081526007602052604090205460ff165b15612603576125ad848484612c65565b6001600160a01b03841660009081526007602052604090205460ff1615801561264557506001600160a01b03831660009081526007602052604090205460ff16155b15612655576125ad848484612d1c565b6001600160a01b03841660009081526007602052604090205460ff16801561269557506001600160a01b03831660009081526007602052604090205460ff165b156126a5576125ad848484612d6e565b6126b0848484612d1c565b6126b8612b02565b50505050565b600d54600c546000918291825b600854811015612810578260036000600884815481106126ed576126ed6130ed565b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806127585750816004600060088481548110612731576127316130ed565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561276e57600d54600c54945094505050509091565b6127b46003600060088481548110612788576127886130ed565b60009182526020808320909101546001600160a01b0316835282019290925260400190205484906122ce565b92506127fc60046000600884815481106127d0576127d06130ed565b60009182526020808320909101546001600160a01b0316835282019290925260400190205483906122ce565b91508061280881613146565b9150506126cb565b50600c54600d546128209161219b565b82101561283757600d54600c549350935050509091565b90939092509050565b600081836128615760405162461bcd60e51b8152600401610a0c9190612ed0565b50600061216f84866131b5565b6014546000906109dc9060649061161390859060ff16612429565b6014546000906109dc90606490611613908590610100900460ff16612429565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106128de576128de6130ed565b60200260200101906001600160a01b031690816001600160a01b031681525050601460029054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612951573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061297591906131d7565b81600181518110612988576129886130ed565b6001600160a01b0392831660209182029290920101526014546129b49130916201000090041684611aea565b60145460405163791ac94760e01b8152620100009091046001600160a01b03169063791ac947906129f29085906000908690309042906004016131f4565b600060405180830381600087803b158015612a0c57600080fd5b505af1158015612136573d6000803e3d6000fd5b601454612a3e9030906201000090046001600160a01b031684611aea565b6014546001600160a01b03620100009091041663f305d719823085600080612a6e6000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612ad6573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612afb9190613265565b5050505050565b60145460ff16158015612b1d5750601454610100900460ff16155b15612b2457565b6014805461ffff19169055565b6000806000612b3f8461223c565b9250925092506000806000612b58878686610f51612178565b6001600160a01b038c166000908152600460205260409020549295509093509150612b8390886122ce565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612bb290846122ce565b6001600160a01b03808b1660009081526003602052604080822093909355908a1681522054612be190836121dd565b6001600160a01b038916600090815260036020526040902055612c0384612def565b612c0d8186612e77565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef88604051612c5291815260200190565b60405180910390a3505050505050505050565b6000806000612c738461223c565b9250925092506000806000612c8c878686610f51612178565b6001600160a01b038c166000908152600360205260409020549295509093509150612cb790846122ce565b6001600160a01b03808b16600090815260036020908152604080832094909455918b16815260049091522054612ced90876121dd565b6001600160a01b038916600090815260046020908152604080832093909355600390522054612be190836121dd565b6000806000612d2a8461223c565b9250925092506000806000612d43878686610f51612178565b6001600160a01b038c166000908152600360205260409020549295509093509150612bb290846122ce565b6000806000612d7c8461223c565b9250925092506000806000612d95878686610f51612178565b6001600160a01b038c166000908152600460205260409020549295509093509150612dc090886122ce565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612cb790846122ce565b6000612df9612178565b90506000612e078383612429565b30600090815260036020526040902054909150612e2490826121dd565b3060009081526003602090815260408083209390935560079052205460ff16156113fd5730600090815260046020526040902054612e6290846121dd565b30600090815260046020526040902055505050565b600d54612e8490836122ce565b600d55600e54612e9490826121dd565b600e555050565b6001600160a01b0381168114612eb057600080fd5b50565b600060208284031215612ec557600080fd5b8135610cc781612e9b565b600060208083528351808285015260005b81811015612efd57858101830151858201604001528201612ee1565b81811115612f0f576000604083870101525b50601f01601f1916929092016040019392505050565b60008060408385031215612f3857600080fd5b8235612f4381612e9b565b946020939093013593505050565b600080600060608486031215612f6657600080fd5b8335612f7181612e9b565b92506020840135612f8181612e9b565b929592945050506040919091013590565b600060208284031215612fa457600080fd5b5035919050565b8015158114612eb057600080fd5b60008060408385031215612fcc57600080fd5b823591506020830135612fde81612fab565b809150509250929050565b803560ff81168114612ffa57600080fd5b919050565b6000806040838503121561301257600080fd5b61301b83612fe9565b915061302960208401612fe9565b90509250929050565b60006020828403121561304457600080fd5b8135610cc781612fab565b6000806040838503121561306257600080fd5b823561306d81612e9b565b91506020830135612fde81612e9b565b600181811c9082168061309157607f821691505b602082108114156130b257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60008282101561312b5761312b613103565b500390565b634e487b7160e01b600052603160045260246000fd5b600060001982141561315a5761315a613103565b5060010190565b60006020828403121561317357600080fd5b8151610cc781612fab565b6000821982111561319157613191613103565b500190565b60008160001904831182151516156131b0576131b0613103565b500290565b6000826131d257634e487b7160e01b600052601260045260246000fd5b500490565b6000602082840312156131e957600080fd5b8151610cc781612e9b565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156132445784516001600160a01b03168352938301939183019160010161321f565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561327a57600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63658be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e045524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122083230c24abe751ea30124fbdff06cb73e73a94a62fa28b7433e3b7d21193d6f364736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106102975760003560e01c806370a082311161015a578063af2ce614116100c1578063dd4670641161007a578063dd46706414610853578063dd62ed3e14610873578063ea2f0b37146108b9578063f0f165af146108d9578063f2fde38b146108f9578063f6831bf21461091957600080fd5b8063af2ce61414610785578063b030b34a146107a5578063b6c52324146107c5578063c49b9a80146107da578063d543dbeb146107fa578063d94160e01461081a57600080fd5b80638f9a55c0116101135780638f9a55c0146106e557806391d919a9146106fb57806395d89b411461071b578063a457c2d714610730578063a69df4b514610750578063a9059cbb1461076557600080fd5b806370a0823114610623578063715018a6146106435780637d1db4a51461065857806388f820201461066e5780638980f11f146106a75780638da5cb5b146106c757600080fd5b80633685d419116101fe57806347062402116101b7578063470624021461054657806349bd5a5e146105695780634a74bb021461058957806352390c02146105aa5780635342acb4146105ca5780636e4778611461060357600080fd5b80633685d4191461048657806339509351146104a65780633bd5d173146104c65780633e0c0629146104e6578063437823ec146105065780634549b0391461052657600080fd5b806318160ddd1161025057806318160ddd146103b25780631d7ef879146103c757806323b872dd146103e75780632b14ca56146104075780632d83811914610444578063313ce5671461046457600080fd5b806305cb4893146102a357806306fdde03146102f1578063095ea7b3146103135780630bd3a7f91461033357806313114a9d146103555780631694505e1461037457600080fd5b3661029e57005b600080fd5b3480156102af57600080fd5b506102dc6102be366004612eb3565b6001600160a01b031660009081526009602052604090205460ff1690565b60405190151581526020015b60405180910390f35b3480156102fd57600080fd5b50610306610939565b6040516102e89190612ed0565b34801561031f57600080fd5b506102dc61032e366004612f25565b6109cb565b34801561033f57600080fd5b5061035361034e366004612eb3565b6109e2565b005b34801561036157600080fd5b50600e545b6040519081526020016102e8565b34801561038057600080fd5b5060145461039a906201000090046001600160a01b031681565b6040516001600160a01b0390911681526020016102e8565b3480156103be57600080fd5b50600c54610366565b3480156103d357600080fd5b506103536103e2366004612eb3565b610a39565b3480156103f357600080fd5b506102dc610402366004612f51565b610be1565b34801561041357600080fd5b5060135461042a9060ff8082169161010090041682565b6040805160ff9384168152929091166020830152016102e8565b34801561045057600080fd5b5061036661045f366004612f92565b610c4a565b34801561047057600080fd5b5060115460405160ff90911681526020016102e8565b34801561049257600080fd5b506103536104a1366004612eb3565b610cce565b3480156104b257600080fd5b506102dc6104c1366004612f25565b610e85565b3480156104d257600080fd5b506103536104e1366004612f92565b610ebb565b3480156104f257600080fd5b50610353610501366004612f25565b610fbe565b34801561051257600080fd5b50610353610521366004612eb3565b610ffb565b34801561053257600080fd5b50610366610541366004612fb9565b611049565b34801561055257600080fd5b5060125461042a9060ff8082169161010090041682565b34801561057557600080fd5b5060155461039a906001600160a01b031681565b34801561059557600080fd5b506015546102dc90600160a81b900460ff1681565b3480156105b657600080fd5b506103536105c5366004612eb3565b6110df565b3480156105d657600080fd5b506102dc6105e5366004612eb3565b6001600160a01b031660009081526006602052604090205460ff1690565b34801561060f57600080fd5b5061035361061e366004612fff565b611232565b34801561062f57600080fd5b5061036661063e366004612eb3565b611280565b34801561064f57600080fd5b506103536112df565b34801561066457600080fd5b5061036660165481565b34801561067a57600080fd5b506102dc610689366004612eb3565b6001600160a01b031660009081526007602052604090205460ff1690565b3480156106b357600080fd5b506103536106c2366004612f25565b611341565b3480156106d357600080fd5b506000546001600160a01b031661039a565b3480156106f157600080fd5b5061036660185481565b34801561070757600080fd5b50610353610716366004612eb3565b611402565b34801561072757600080fd5b5061030661144d565b34801561073c57600080fd5b506102dc61074b366004612f25565b61145c565b34801561075c57600080fd5b506103536114ab565b34801561077157600080fd5b506102dc610780366004612f25565b6115c2565b34801561079157600080fd5b506103536107a0366004612f92565b6115cf565b3480156107b157600080fd5b506103536107c0366004612eb3565b61161f565b3480156107d157600080fd5b50600254610366565b3480156107e657600080fd5b506103536107f5366004613032565b611804565b34801561080657600080fd5b50610353610815366004612f92565b61187b565b34801561082657600080fd5b506102dc610835366004612eb3565b6001600160a01b03166000908152600a602052604090205460ff1690565b34801561085f57600080fd5b5061035361086e366004612f92565b6118c5565b34801561087f57600080fd5b5061036661088e36600461304f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b3480156108c557600080fd5b506103536108d4366004612eb3565b61194a565b3480156108e557600080fd5b506103536108f4366004612f92565b611995565b34801561090557600080fd5b50610353610914366004612eb3565b6119c4565b34801561092557600080fd5b50610353610934366004612fff565b611a9c565b6060600f80546109489061307d565b80601f01602080910402602001604051908101604052809291908181526020018280546109749061307d565b80156109c15780601f10610996576101008083540402835291602001916109c1565b820191906000526020600020905b8154815290600101906020018083116109a457829003601f168201915b5050505050905090565b60006109d8338484611aea565b5060015b92915050565b6000546001600160a01b03163314610a155760405162461bcd60e51b8152600401610a0c906130b8565b60405180910390fd5b6001600160a01b03166000908152600a60205260409020805460ff19166001179055565b6000546001600160a01b03163314610a635760405162461bcd60e51b8152600401610a0c906130b8565b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610adb5760405162461bcd60e51b815260206004820152602260248201527f57652063616e6e6f7420626c61636b6c69737420556e695377617020726f757460448201526132b960f11b6064820152608401610a0c565b6001600160a01b03811660009081526009602052604090205460ff1615610b445760405162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c697374656400006044820152606401610a0c565b6001600160a01b0381166000818152600960209081526040808320805460ff19166001908117909155600b805491820181559093527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db990920180546001600160a01b0319168417905590519182527f6cf65f3ff491cb358bea0efd5ee0fe0340757225d38a096d09c637ba897a679f91015b60405180910390a150565b6000610bee848484611c0e565b610c408433610c3b85604051806060016040528060288152602001613294602891396001600160a01b038a166000908152600560209081526040808320338452909152902054919061213e565b611aea565b5060019392505050565b6000600d54821115610cb15760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b6064820152608401610a0c565b6000610cbb612178565b9050610cc7838261219b565b9392505050565b6000546001600160a01b03163314610cf85760405162461bcd60e51b8152600401610a0c906130b8565b6001600160a01b03811660009081526007602052604090205460ff16610d605760405162461bcd60e51b815260206004820152601760248201527f4163636f756e74206973206e6f74206578636c756465640000000000000000006044820152606401610a0c565b60005b600854811015610e8157816001600160a01b031660088281548110610d8a57610d8a6130ed565b6000918252602090912001546001600160a01b03161415610e6f5760088054610db590600190613119565b81548110610dc557610dc56130ed565b600091825260209091200154600880546001600160a01b039092169183908110610df157610df16130ed565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610e4957610e49613130565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610e7981613146565b915050610d63565b5050565b3360008181526005602090815260408083206001600160a01b038716845290915281205490916109d8918590610c3b90866121dd565b3360008181526007602052604090205460ff1615610f305760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b6064820152608401610a0c565b600080610f3c8461223c565b92509250506000610f56858484610f51612178565b61227e565b50506001600160a01b038516600090815260036020526040902054909150610f7e90826122ce565b6001600160a01b038516600090815260036020526040902055600d54610fa490826122ce565b600d55600e54610fb490866121dd565b600e555050505050565b6000546001600160a01b03163314610fe85760405162461bcd60e51b8152600401610a0c906130b8565b610e816001600160a01b03831682612310565b6000546001600160a01b031633146110255760405162461bcd60e51b8152600401610a0c906130b8565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600c5483111561109d5760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610a0c565b6000806110a98561223c565b92509250506000806110bf878585610f51612178565b5091509150856110d4575092506109dc915050565b93506109dc92505050565b6000546001600160a01b031633146111095760405162461bcd60e51b8152600401610a0c906130b8565b6001600160a01b03811660009081526007602052604090205460ff16156111725760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610a0c565b6001600160a01b038116600090815260036020526040902054156111cc576001600160a01b0381166000908152600360205260409020546111b290610c4a565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6000546001600160a01b0316331461125c5760405162461bcd60e51b8152600401610a0c906130b8565b6012805460ff9283166101000261ffff199091169290931691909117919091179055565b6001600160a01b03811660009081526007602052604081205460ff16156112bd57506001600160a01b031660009081526004602052604090205490565b6001600160a01b0382166000908152600360205260409020546109dc90610c4a565b6000546001600160a01b031633146113095760405162461bcd60e51b8152600401610a0c906130b8565b600080546040516001600160a01b03909116906000805160206132bc833981519152908390a3600080546001600160a01b0319169055565b6000546001600160a01b0316331461136b5760405162461bcd60e51b8152600401610a0c906130b8565b816001600160a01b031663a9059cbb61138c6000546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af11580156113d9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113fd9190613161565b505050565b6000546001600160a01b0316331461142c5760405162461bcd60e51b8152600401610a0c906130b8565b6001600160a01b03166000908152600a60205260409020805460ff19169055565b6060601080546109489061307d565b60006109d83384610c3b856040518060600160405280602581526020016132dc602591393360009081526005602090815260408083206001600160a01b038d168452909152902054919061213e565b6001546001600160a01b031633146115115760405162461bcd60e51b815260206004820152602360248201527f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6044820152626f636b60e81b6064820152608401610a0c565b60025442116115705760405162461bcd60e51b815260206004820152602560248201527f436f6e7472616374206973206c6f636b656420756e74696c2061206c61746572604482015264206461746560d81b6064820152608401610a0c565b600154600080546040516001600160a01b0393841693909116916000805160206132bc83398151915291a360018054600080546001600160a01b03199081166001600160a01b03841617909155169055565b60006109d8338484611c0e565b6000546001600160a01b031633146115f95760405162461bcd60e51b8152600401610a0c906130b8565b611619606461161383600c5461242990919063ffffffff16565b9061219b565b60185550565b6000546001600160a01b031633146116495760405162461bcd60e51b8152600401610a0c906130b8565b6001600160a01b03811660009081526009602052604090205460ff166116b15760405162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c69737465640000000000006044820152606401610a0c565b60005b600b548110156117ca57816001600160a01b0316600b82815481106116db576116db6130ed565b6000918252602090912001546001600160a01b031614156117b857600b805461170690600190613119565b81548110611716576117166130ed565b600091825260209091200154600b80546001600160a01b039092169183908110611742576117426130ed565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600990915260409020805460ff19169055600b80548061179157611791613130565b600082815260209020810160001990810180546001600160a01b03191690550190556117ca565b806117c281613146565b9150506116b4565b506040516001600160a01b03821681527fbbde34c13f8f74d401949e0eb9a888308ee89bb0887791bba7e8dd0bced4704190602001610bd6565b6000546001600160a01b0316331461182e5760405162461bcd60e51b8152600401610a0c906130b8565b60158054821515600160a81b0260ff60a81b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15990610bd690831515815260200190565b6000546001600160a01b031633146118a55760405162461bcd60e51b8152600401610a0c906130b8565b6118bf606461161383600c5461242990919063ffffffff16565b60165550565b6000546001600160a01b031633146118ef5760405162461bcd60e51b8152600401610a0c906130b8565b60008054600180546001600160a01b03199081166001600160a01b0384161790915516905561191e814261317e565b600255600080546040516001600160a01b03909116906000805160206132bc833981519152908390a350565b6000546001600160a01b031633146119745760405162461bcd60e51b8152600401610a0c906130b8565b6001600160a01b03166000908152600660205260409020805460ff19169055565b6000546001600160a01b031633146119bf5760405162461bcd60e51b8152600401610a0c906130b8565b601755565b6000546001600160a01b031633146119ee5760405162461bcd60e51b8152600401610a0c906130b8565b6001600160a01b038116611a535760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a0c565b600080546040516001600160a01b03808516939216916000805160206132bc83398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314611ac65760405162461bcd60e51b8152600401610a0c906130b8565b6013805460ff9283166101000261ffff199091169290931691909117919091179055565b6001600160a01b038316611b4c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a0c565b6001600160a01b038216611bad5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a0c565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611c725760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a0c565b6001600160a01b038216611cd45760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a0c565b60008111611d365760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610a0c565b6001600160a01b03831660009081526009602052604090205460ff1615611d955760405162461bcd60e51b8152602060048201526013602482015272199c9bdb481a5cc8189b1858dadb1a5cdd1959606a1b6044820152606401610a0c565b3360009081526009602052604090205460ff1615611deb5760405162461bcd60e51b81526020600482015260136024820152721e5bdd48185c9948189b1858dadb1a5cdd1959606a1b6044820152606401610a0c565b3260009081526009602052604090205460ff1615611e395760405162461bcd60e51b815260206004820152600b60248201526a189b1858dadb1a5cdd195960aa1b6044820152606401610a0c565b6001600160a01b0383166000908152600a602052604090205460ff16158015611e7b57506001600160a01b0382166000908152600a602052604090205460ff16155b15611f6857601654811115611ee35760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610a0c565b6015546001600160a01b03838116911614611f685760185481611f0584611280565b611f0f919061317e565b10611f685760405162461bcd60e51b815260206004820152602360248201527f544f4b454e3a2042616c616e636520657863656564732077616c6c65742073696044820152627a652160e81b6064820152608401610a0c565b6000611f7330611280565b90506016548110611f8357506016545b60175481108015908190611fa15750601554600160a01b900460ff16155b8015611fbb57506015546001600160a01b03868116911614155b8015611fd05750601554600160a81b900460ff165b15611fe3576017549150611fe3826124a8565b6001600160a01b03851660009081526006602052604090205460019060ff168061202557506001600160a01b03851660009081526006602052604090205460ff165b8061205757506015546001600160a01b0387811691161480159061205757506015546001600160a01b03868116911614155b156120645750600061212a565b6015546001600160a01b03878116911614801561209557506014546001600160a01b03868116620100009092041614155b156120c7576120c76012546014805461010080840460ff90811690910261ffff19909216931692909217919091179055565b6015546001600160a01b0386811691161480156120f857506014546001600160a01b03878116620100009092041614155b1561212a5761212a6013546014805461010080840460ff90811690910261ffff19909216931692909217919091179055565b6121368686868461254f565b505050505050565b600081848411156121625760405162461bcd60e51b8152600401610a0c9190612ed0565b50600061216f8486613119565b95945050505050565b60008060006121856126be565b9092509050612194828261219b565b9250505090565b6000610cc783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612840565b6000806121ea838561317e565b905083811015610cc75760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610a0c565b60008060008061224b8561286e565b9050600061225886612889565b905060006122708261226a89866122ce565b906122ce565b979296509094509092505050565b600080808061228d8886612429565b9050600061229b8887612429565b905060006122a98888612429565b905060006122bb8261226a86866122ce565b939b939a50919850919650505050505050565b6000610cc783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061213e565b804710156123605760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610a0c565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146123ad576040519150601f19603f3d011682016040523d82523d6000602084013e6123b2565b606091505b50509050806113fd5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610a0c565b600082612438575060006109dc565b60006124448385613196565b90508261245185836131b5565b14610cc75760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610a0c565b6015805460ff60a01b1916600160a01b17905560006124c882600261219b565b905060006124d683836122ce565b9050476124e2836128a9565b60006124ee47836122ce565b90506124fa8382612a20565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a150506015805460ff60a01b19169055505050565b8061255c5761255c612b02565b6001600160a01b03841660009081526007602052604090205460ff16801561259d57506001600160a01b03831660009081526007602052604090205460ff16155b156125b2576125ad848484612b31565b6126b0565b6001600160a01b03841660009081526007602052604090205460ff161580156125f357506001600160a01b03831660009081526007602052604090205460ff165b15612603576125ad848484612c65565b6001600160a01b03841660009081526007602052604090205460ff1615801561264557506001600160a01b03831660009081526007602052604090205460ff16155b15612655576125ad848484612d1c565b6001600160a01b03841660009081526007602052604090205460ff16801561269557506001600160a01b03831660009081526007602052604090205460ff165b156126a5576125ad848484612d6e565b6126b0848484612d1c565b6126b8612b02565b50505050565b600d54600c546000918291825b600854811015612810578260036000600884815481106126ed576126ed6130ed565b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806127585750816004600060088481548110612731576127316130ed565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561276e57600d54600c54945094505050509091565b6127b46003600060088481548110612788576127886130ed565b60009182526020808320909101546001600160a01b0316835282019290925260400190205484906122ce565b92506127fc60046000600884815481106127d0576127d06130ed565b60009182526020808320909101546001600160a01b0316835282019290925260400190205483906122ce565b91508061280881613146565b9150506126cb565b50600c54600d546128209161219b565b82101561283757600d54600c549350935050509091565b90939092509050565b600081836128615760405162461bcd60e51b8152600401610a0c9190612ed0565b50600061216f84866131b5565b6014546000906109dc9060649061161390859060ff16612429565b6014546000906109dc90606490611613908590610100900460ff16612429565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106128de576128de6130ed565b60200260200101906001600160a01b031690816001600160a01b031681525050601460029054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612951573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061297591906131d7565b81600181518110612988576129886130ed565b6001600160a01b0392831660209182029290920101526014546129b49130916201000090041684611aea565b60145460405163791ac94760e01b8152620100009091046001600160a01b03169063791ac947906129f29085906000908690309042906004016131f4565b600060405180830381600087803b158015612a0c57600080fd5b505af1158015612136573d6000803e3d6000fd5b601454612a3e9030906201000090046001600160a01b031684611aea565b6014546001600160a01b03620100009091041663f305d719823085600080612a6e6000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612ad6573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612afb9190613265565b5050505050565b60145460ff16158015612b1d5750601454610100900460ff16155b15612b2457565b6014805461ffff19169055565b6000806000612b3f8461223c565b9250925092506000806000612b58878686610f51612178565b6001600160a01b038c166000908152600460205260409020549295509093509150612b8390886122ce565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612bb290846122ce565b6001600160a01b03808b1660009081526003602052604080822093909355908a1681522054612be190836121dd565b6001600160a01b038916600090815260036020526040902055612c0384612def565b612c0d8186612e77565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef88604051612c5291815260200190565b60405180910390a3505050505050505050565b6000806000612c738461223c565b9250925092506000806000612c8c878686610f51612178565b6001600160a01b038c166000908152600360205260409020549295509093509150612cb790846122ce565b6001600160a01b03808b16600090815260036020908152604080832094909455918b16815260049091522054612ced90876121dd565b6001600160a01b038916600090815260046020908152604080832093909355600390522054612be190836121dd565b6000806000612d2a8461223c565b9250925092506000806000612d43878686610f51612178565b6001600160a01b038c166000908152600360205260409020549295509093509150612bb290846122ce565b6000806000612d7c8461223c565b9250925092506000806000612d95878686610f51612178565b6001600160a01b038c166000908152600460205260409020549295509093509150612dc090886122ce565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612cb790846122ce565b6000612df9612178565b90506000612e078383612429565b30600090815260036020526040902054909150612e2490826121dd565b3060009081526003602090815260408083209390935560079052205460ff16156113fd5730600090815260046020526040902054612e6290846121dd565b30600090815260046020526040902055505050565b600d54612e8490836122ce565b600d55600e54612e9490826121dd565b600e555050565b6001600160a01b0381168114612eb057600080fd5b50565b600060208284031215612ec557600080fd5b8135610cc781612e9b565b600060208083528351808285015260005b81811015612efd57858101830151858201604001528201612ee1565b81811115612f0f576000604083870101525b50601f01601f1916929092016040019392505050565b60008060408385031215612f3857600080fd5b8235612f4381612e9b565b946020939093013593505050565b600080600060608486031215612f6657600080fd5b8335612f7181612e9b565b92506020840135612f8181612e9b565b929592945050506040919091013590565b600060208284031215612fa457600080fd5b5035919050565b8015158114612eb057600080fd5b60008060408385031215612fcc57600080fd5b823591506020830135612fde81612fab565b809150509250929050565b803560ff81168114612ffa57600080fd5b919050565b6000806040838503121561301257600080fd5b61301b83612fe9565b915061302960208401612fe9565b90509250929050565b60006020828403121561304457600080fd5b8135610cc781612fab565b6000806040838503121561306257600080fd5b823561306d81612e9b565b91506020830135612fde81612e9b565b600181811c9082168061309157607f821691505b602082108114156130b257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60008282101561312b5761312b613103565b500390565b634e487b7160e01b600052603160045260246000fd5b600060001982141561315a5761315a613103565b5060010190565b60006020828403121561317357600080fd5b8151610cc781612fab565b6000821982111561319157613191613103565b500190565b60008160001904831182151516156131b0576131b0613103565b500290565b6000826131d257634e487b7160e01b600052601260045260246000fd5b500490565b6000602082840312156131e957600080fd5b8151610cc781612e9b565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156132445784516001600160a01b03168352938301939183019160010161321f565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561327a57600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63658be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e045524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122083230c24abe751ea30124fbdff06cb73e73a94a62fa28b7433e3b7d21193d6f364736f6c634300080a0033

Deployed Bytecode Sourcemap

28726:23199:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36363:125;;;;;;;;;;-1:-1:-1;36363:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;36454:26:0;36426:4;36454:26;;;:17;:26;;;;;;;;;36363:125;;;;567:14:1;;560:22;542:41;;530:2;515:18;36363:125:0;;;;;;;;31724:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;32709:193::-;;;;;;;;;;-1:-1:-1;32709:193:0;;;;;:::i;:::-;;:::i;38148:115::-;;;;;;;;;;-1:-1:-1;38148:115:0;;;;;:::i;:::-;;:::i;:::-;;34208:87;;;;;;;;;;-1:-1:-1;34277:10:0;;34208:87;;;1662:25:1;;;1650:2;1635:18;34208:87:0;1516:177:1;29955:41:0;;;;;;;;;;-1:-1:-1;29955:41:0;;;;;;;-1:-1:-1;;;;;29955:41:0;;;;;;-1:-1:-1;;;;;1889:32:1;;;1871:51;;1859:2;1844:18;29955:41:0;1698:230:1;32001:95:0;;;;;;;;;;-1:-1:-1;32081:7:0;;32001:95;;35920:431;;;;;;;;;;-1:-1:-1;35920:431:0;;;;;:::i;:::-;;:::i;32910:446::-;;;;;;;;;;-1:-1:-1;32910:446:0;;;;;:::i;:::-;;:::i;29860:22::-;;;;;;;;;;-1:-1:-1;29860:22:0;;;;;;;;;;;;;;;;;;;2590:4:1;2578:17;;;2560:36;;2632:17;;;;2627:2;2612:18;;2605:45;2533:18;29860:22:0;2394:262:1;35588:322:0;;;;;;;;;;-1:-1:-1;35588:322:0;;;;;:::i;:::-;;:::i;31910:83::-;;;;;;;;;;-1:-1:-1;31976:9:0;;31910:83;;31976:9;;;;2988:36:1;;2976:2;2961:18;31910:83:0;2846:184:1;37430:473:0;;;;;;;;;;-1:-1:-1;37430:473:0;;;;;:::i;:::-;;:::i;33364:300::-;;;;;;;;;;-1:-1:-1;33364:300:0;;;;;:::i;:::-;;:::i;34303:631::-;;;;;;;;;;-1:-1:-1;34303:631:0;;;;;:::i;:::-;;:::i;19121:131::-;;;;;;;;;;-1:-1:-1;19121:131:0;;;;;:::i;:::-;;:::i;37911:111::-;;;;;;;;;;-1:-1:-1;37911:111:0;;;;;:::i;:::-;;:::i;34942:638::-;;;;;;;;;;-1:-1:-1;34942:638:0;;;;;:::i;:::-;;:::i;29833:20::-;;;;;;;;;;-1:-1:-1;29833:20:0;;;;;;;;;;;;;;;30003:28;;;;;;;;;;-1:-1:-1;30003:28:0;;;;-1:-1:-1;;;;;30003:28:0;;;30068:40;;;;;;;;;;-1:-1:-1;30068:40:0;;;;-1:-1:-1;;;30068:40:0;;;;;;37090:332;;;;;;;;;;-1:-1:-1;37090:332:0;;;;;:::i;:::-;;:::i;42518:124::-;;;;;;;;;;-1:-1:-1;42518:124:0;;;;;:::i;:::-;-1:-1:-1;;;;;42607:27:0;42583:4;42607:27;;;:18;:27;;;;;;;;;42518:124;38569:165;;;;;;;;;;-1:-1:-1;38569:165:0;;;;;:::i;:::-;;:::i;32104:198::-;;;;;;;;;;-1:-1:-1;32104:198:0;;;;;:::i;:::-;;:::i;17016:148::-;;;;;;;;;;;;;:::i;30117:56::-;;;;;;;;;;;;;;;;34080:120;;;;;;;;;;-1:-1:-1;34080:120:0;;;;;:::i;:::-;-1:-1:-1;;;;;34172:20:0;34148:4;34172:20;;;:11;:20;;;;;;;;;34080:120;18953:160;;;;;;;;;;-1:-1:-1;18953:160:0;;;;;:::i;:::-;;:::i;16374:79::-;;;;;;;;;;-1:-1:-1;16412:7:0;16439:6;-1:-1:-1;;;;;16439:6:0;16374:79;;30257:50;;;;;;;;;;;;;;;;38271:114;;;;;;;;;;-1:-1:-1;38271:114:0;;;;;:::i;:::-;;:::i;31815:87::-;;;;;;;;;;;;;:::i;33672:400::-;;;;;;;;;;-1:-1:-1;33672:400:0;;;;;:::i;:::-;;:::i;18071:385::-;;;;;;;;;;;;;:::i;32310:199::-;;;;;;;;;;-1:-1:-1;32310:199:0;;;;;:::i;:::-;;:::i;39036:172::-;;;;;;;;;;-1:-1:-1;39036:172:0;;;;;:::i;:::-;;:::i;36496:586::-;;;;;;;;;;-1:-1:-1;36496:586:0;;;;;:::i;:::-;;:::i;17608:89::-;;;;;;;;;;-1:-1:-1;17680:9:0;;17608:89;;39216:171;;;;;;;;;;-1:-1:-1;39216:171:0;;;;;:::i;:::-;;:::i;38892:136::-;;;;;;;;;;-1:-1:-1;38892:136:0;;;;;:::i;:::-;;:::i;42650:128::-;;;;;;;;;;-1:-1:-1;42650:128:0;;;;;:::i;:::-;-1:-1:-1;;;;;42741:29:0;42717:4;42741:29;;;:20;:29;;;;;;;;;42650:128;17773:226;;;;;;;;;;-1:-1:-1;17773:226:0;;;;;:::i;:::-;;:::i;32517:184::-;;;;;;;;;;-1:-1:-1;32517:184:0;;;;;:::i;:::-;-1:-1:-1;;;;;32666:18:0;;;32634:7;32666:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;32517:184;38030:110;;;;;;;;;;-1:-1:-1;38030:110:0;;;;;:::i;:::-;;:::i;38744:140::-;;;;;;;;;;-1:-1:-1;38744:140:0;;;;;:::i;:::-;;:::i;17319:281::-;;;;;;;;;;-1:-1:-1;17319:281:0;;;;;:::i;:::-;;:::i;38393:168::-;;;;;;;;;;-1:-1:-1;38393:168:0;;;;;:::i;:::-;;:::i;31724:83::-;31761:13;31794:5;31787:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31724:83;:::o;32709:193::-;32811:4;32833:39;8428:10;32856:7;32865:6;32833:8;:39::i;:::-;-1:-1:-1;32890:4:0;32709:193;;;;;:::o;38148:115::-;16586:6;;-1:-1:-1;;;;;16586:6:0;8428:10;16586:22;16578:67;;;;-1:-1:-1;;;16578:67:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;38219:29:0::1;;::::0;;;:20:::1;:29;::::0;;;;:36;;-1:-1:-1;;38219:36:0::1;38251:4;38219:36;::::0;;38148:115::o;35920:431::-;16586:6;;-1:-1:-1;;;;;16586:6:0;8428:10;16586:22;16578:67;;;;-1:-1:-1;;;16578:67:0;;;;;;;:::i;:::-;36027:42:::1;-1:-1:-1::0;;;;;36016:53:0;::::1;;;35994:137;;;::::0;-1:-1:-1;;;35994:137:0;;5685:2:1;35994:137:0::1;::::0;::::1;5667:21:1::0;5724:2;5704:18;;;5697:30;5763:34;5743:18;;;5736:62;-1:-1:-1;;;5814:18:1;;;5807:32;5856:19;;35994:137:0::1;5483:398:1::0;35994:137:0::1;-1:-1:-1::0;;;;;36151:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;36150:27;36142:70;;;::::0;-1:-1:-1;;;36142:70:0;;6088:2:1;36142:70:0::1;::::0;::::1;6070:21:1::0;6127:2;6107:18;;;6100:30;6166:32;6146:18;;;6139:60;6216:18;;36142:70:0::1;5886:354:1::0;36142:70:0::1;-1:-1:-1::0;;;;;36223:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;;;:33;;-1:-1:-1;;36223:33:0::1;36252:4;36223:33:::0;;::::1;::::0;;;36267:16:::1;:30:::0;;;;::::1;::::0;;;;;;;;::::1;::::0;;-1:-1:-1;;;;;;36267:30:0::1;::::0;::::1;::::0;;36315:28;;1871:51:1;;;36315:28:0::1;::::0;1844:18:1;36315:28:0::1;;;;;;;;35920:431:::0;:::o;32910:446::-;33042:4;33059:36;33069:6;33077:9;33088:6;33059:9;:36::i;:::-;33106:220;33129:6;8428:10;33177:138;33233:6;33177:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33177:19:0;;;;;;:11;:19;;;;;;;;8428:10;33177:33;;;;;;;;;;:37;:138::i;:::-;33106:8;:220::i;:::-;-1:-1:-1;33344:4:0;32910:446;;;;;:::o;35588:322::-;35682:7;35740;;35729;:18;;35707:110;;;;-1:-1:-1;;;35707:110:0;;6447:2:1;35707:110:0;;;6429:21:1;6486:2;6466:18;;;6459:30;6525:34;6505:18;;;6498:62;-1:-1:-1;;;6576:18:1;;;6569:40;6626:19;;35707:110:0;6245:406:1;35707:110:0;35828:19;35850:10;:8;:10::i;:::-;35828:32;-1:-1:-1;35878:24:0;:7;35828:32;35878:11;:24::i;:::-;35871:31;35588:322;-1:-1:-1;;;35588:322:0:o;37430:473::-;16586:6;;-1:-1:-1;;;;;16586:6:0;8428:10;16586:22;16578:67;;;;-1:-1:-1;;;16578:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37510:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;37502:56;;;::::0;-1:-1:-1;;;37502:56:0;;6858:2:1;37502:56:0::1;::::0;::::1;6840:21:1::0;6897:2;6877:18;;;6870:30;6936:25;6916:18;;;6909:53;6979:18;;37502:56:0::1;6656:347:1::0;37502:56:0::1;37574:9;37569:327;37593:9;:16:::0;37589:20;::::1;37569:327;;;37651:7;-1:-1:-1::0;;;;;37635:23:0::1;:9;37645:1;37635:12;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;37635:12:0::1;:23;37631:254;;;37694:9;37704:16:::0;;:20:::1;::::0;37723:1:::1;::::0;37704:20:::1;:::i;:::-;37694:31;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;37679:9:::1;:12:::0;;-1:-1:-1;;;;;37694:31:0;;::::1;::::0;37689:1;;37679:12;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;37679:46:0::1;-1:-1:-1::0;;;;;37679:46:0;;::::1;;::::0;;37744:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;37783:11:::1;:20:::0;;;;:28;;-1:-1:-1;;37783:28:0::1;::::0;;37830:9:::1;:15:::0;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;-1:-1:-1;;37830:15:0;;;;;-1:-1:-1;;;;;;37830:15:0::1;::::0;;;;;37569:327:::1;37430:473:::0;:::o;37631:254::-:1;37611:3:::0;::::1;::::0;::::1;:::i;:::-;;;;37569:327;;;;37430:473:::0;:::o;33364:300::-;8428:10;33479:4;33573:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;33573:34:0;;;;;;;;;;33479:4;;33501:133;;33551:7;;33573:50;;33612:10;33573:38;:50::i;34303:631::-;8428:10;34355:14;34418:19;;;:11;:19;;;;;;;;34417:20;34395:114;;;;-1:-1:-1;;;34395:114:0;;7876:2:1;34395:114:0;;;7858:21:1;7915:2;7895:18;;;7888:30;7954:34;7934:18;;;7927:62;-1:-1:-1;;;8005:18:1;;;7998:42;8057:19;;34395:114:0;7674:408:1;34395:114:0;34552:12;34579:18;34611:20;34623:7;34611:11;:20::i;:::-;34522:109;;;;;34643:15;34666:113;34692:7;34714:4;34733:10;34758;:8;:10::i;:::-;34666:11;:113::i;:::-;-1:-1:-1;;;;;;;34810:15:0;;;;;;:7;:15;;;;;;34642:137;;-1:-1:-1;34810:28:0;;34642:137;34810:19;:28::i;:::-;-1:-1:-1;;;;;34792:15:0;;;;;;:7;:15;;;;;:46;34859:7;;:20;;34871:7;34859:11;:20::i;:::-;34849:7;:30;34903:10;;:23;;34918:7;34903:14;:23::i;:::-;34890:10;:36;-1:-1:-1;;;;;34303:631:0:o;19121:131::-;16586:6;;-1:-1:-1;;;;;16586:6:0;8428:10;16586:22;16578:67;;;;-1:-1:-1;;;16578:67:0;;;;;;;:::i;:::-;19210:34:::1;-1:-1:-1::0;;;;;19210:26:0;::::1;19237:6:::0;19210:26:::1;:34::i;37911:111::-:0;16586:6;;-1:-1:-1;;;;;16586:6:0;8428:10;16586:22;16578:67;;;;-1:-1:-1;;;16578:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37980:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;37980:34:0::1;38010:4;37980:34;::::0;;37911:111::o;34942:638::-;35060:7;35104;;35093;:18;;35085:62;;;;-1:-1:-1;;;35085:62:0;;8289:2:1;35085:62:0;;;8271:21:1;8328:2;8308:18;;;8301:30;8367:33;8347:18;;;8340:61;8418:18;;35085:62:0;8087:355:1;35085:62:0;35190:12;35217:18;35249:20;35261:7;35249:11;:20::i;:::-;35160:109;;;;;35281:15;35298:23;35327:113;35353:7;35375:4;35394:10;35419;:8;:10::i;35327:113::-;35280:160;;;;;35458:17;35453:120;;-1:-1:-1;35499:7:0;-1:-1:-1;35492:14:0;;-1:-1:-1;;35492:14:0;35453:120;35546:15;-1:-1:-1;35539:22:0;;-1:-1:-1;;;35539:22:0;37090:332;16586:6;;-1:-1:-1;;;;;16586:6:0;8428:10;16586:22;16578:67;;;;-1:-1:-1;;;16578:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37171:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;37170:21;37162:61;;;::::0;-1:-1:-1;;;37162:61:0;;8649:2:1;37162:61:0::1;::::0;::::1;8631:21:1::0;8688:2;8668:18;;;8661:30;8727:29;8707:18;;;8700:57;8774:18;;37162:61:0::1;8447:351:1::0;37162:61:0::1;-1:-1:-1::0;;;;;37238:16:0;::::1;37257:1;37238:16:::0;;;:7:::1;:16;::::0;;;;;:20;37234:109:::1;;-1:-1:-1::0;;;;;37314:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;37294:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;37275:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;37234:109:::1;-1:-1:-1::0;;;;;37353:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;37353:27:0::1;37376:4;37353:27:::0;;::::1;::::0;;;37391:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;37391:23:0::1;::::0;;::::1;::::0;;37090:332::o;38569:165::-;16586:6;;-1:-1:-1;;;;;16586:6:0;8428:10;16586:22;16578:67;;;;-1:-1:-1;;;16578:67:0;;;;;;;:::i;:::-;38671:6:::1;:16:::0;;::::1;38698:28:::0;;::::1;38671:16;38698:28;-1:-1:-1::0;;38698:28:0;;;38671:16;;;::::1;38698:28:::0;;;;;;;::::1;::::0;;38569:165::o;32104:198::-;-1:-1:-1;;;;;32194:20:0;;32170:7;32194:20;;;:11;:20;;;;;;;;32190:49;;;-1:-1:-1;;;;;;32223:16:0;;;;;:7;:16;;;;;;;32104:198::o;32190:49::-;-1:-1:-1;;;;;32277:16:0;;;;;;:7;:16;;;;;;32257:37;;:19;:37::i;17016:148::-;16586:6;;-1:-1:-1;;;;;16586:6:0;8428:10;16586:22;16578:67;;;;-1:-1:-1;;;16578:67:0;;;;;;;:::i;:::-;17123:1:::1;17107:6:::0;;17086:40:::1;::::0;-1:-1:-1;;;;;17107:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;17086:40:0;17123:1;;17086:40:::1;17154:1;17137:19:::0;;-1:-1:-1;;;;;;17137:19:0::1;::::0;;17016:148::o;18953:160::-;16586:6;;-1:-1:-1;;;;;16586:6:0;8428:10;16586:22;16578:67;;;;-1:-1:-1;;;16578:67:0;;;;;;;:::i;:::-;19061:12:::1;-1:-1:-1::0;;;;;19054:29:0::1;;19084:7;16412::::0;16439:6;-1:-1:-1;;;;;16439:6:0;;16374:79;19084:7:::1;19054:51;::::0;-1:-1:-1;;;;;;19054:51:0::1;::::0;;;;;;-1:-1:-1;;;;;8995:32:1;;;19054:51:0::1;::::0;::::1;8977::1::0;9044:18;;;9037:34;;;8950:18;;19054:51:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;18953:160:::0;;:::o;38271:114::-;16586:6;;-1:-1:-1;;;;;16586:6:0;8428:10;16586:22;16578:67;;;;-1:-1:-1;;;16578:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38340:29:0::1;38372:5;38340:29:::0;;;:20:::1;:29;::::0;;;;:37;;-1:-1:-1;;38340:37:0::1;::::0;;38271:114::o;31815:87::-;31854:13;31887:7;31880:14;;;;;:::i;33672:400::-;33792:4;33814:228;8428:10;33864:7;33886:145;33943:15;33886:145;;;;;;;;;;;;;;;;;8428:10;33886:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;33886:34:0;;;;;;;;;;;;:38;:145::i;18071:385::-;18137:14;;-1:-1:-1;;;;;18137:14:0;18155:10;18137:28;18115:113;;;;-1:-1:-1;;;18115:113:0;;9534:2:1;18115:113:0;;;9516:21:1;9573:2;9553:18;;;9546:30;9612:34;9592:18;;;9585:62;-1:-1:-1;;;9663:18:1;;;9656:33;9706:19;;18115:113:0;9332:399:1;18115:113:0;18265:9;;18247:15;:27;18239:77;;;;-1:-1:-1;;;18239:77:0;;9938:2:1;18239:77:0;;;9920:21:1;9977:2;9957:18;;;9950:30;10016:34;9996:18;;;9989:62;-1:-1:-1;;;10067:18:1;;;10060:35;10112:19;;18239:77:0;9736:401:1;18239:77:0;18361:14;;;18353:6;;18332:44;;-1:-1:-1;;;;;18361:14:0;;;;18353:6;;;;-1:-1:-1;;;;;;;;;;;18332:44:0;;18396:14;;;;18387:23;;-1:-1:-1;;;;;;18387:23:0;;;-1:-1:-1;;;;;18396:14:0;;18387:23;;;;18421:27;;;18071:385::o;32310:199::-;32415:4;32437:42;8428:10;32461:9;32472:6;32437:9;:42::i;39036:172::-;16586:6;;-1:-1:-1;;;;;16586:6:0;8428:10;16586:22;16578:67;;;;-1:-1:-1;;;16578:67:0;;;;;;;:::i;:::-;39163:37:::1;39194:5;39163:26;39175:13;39163:7;;:11;;:26;;;;:::i;:::-;:30:::0;::::1;:37::i;:::-;39146:14;:54:::0;-1:-1:-1;39036:172:0:o;36496:586::-;16586:6;;-1:-1:-1;;;;;16586:6:0;8428:10;16586:22;16578:67;;;;-1:-1:-1;;;16578:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36583:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;36575:65;;;::::0;-1:-1:-1;;;36575:65:0;;10344:2:1;36575:65:0::1;::::0;::::1;10326:21:1::0;10383:2;10363:18;;;10356:30;10422:28;10402:18;;;10395:56;10468:18;;36575:65:0::1;10142:350:1::0;36575:65:0::1;36656:9;36651:376;36675:16;:23:::0;36671:27;::::1;36651:376;;;36747:7;-1:-1:-1::0;;;;;36724:30:0::1;:16;36741:1;36724:19;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;36724:19:0::1;:30;36720:296;;;36797:16;36836:23:::0;;:27:::1;::::0;36862:1:::1;::::0;36836:27:::1;:::i;:::-;36797:85;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;36775:16:::1;:19:::0;;-1:-1:-1;;;;;36797:85:0;;::::1;::::0;36792:1;;36775:19;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;;::::1;:107:::0;;-1:-1:-1;;;;;;36775:107:0::1;-1:-1:-1::0;;;;;36775:107:0;;::::1;;::::0;;36901:26;;::::1;::::0;;:17:::1;:26:::0;;;;;;:34;;-1:-1:-1;;36901:34:0::1;::::0;;36954:16:::1;:22:::0;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;-1:-1:-1;;36954:22:0;;;;;-1:-1:-1;;;;;;36954:22:0::1;::::0;;;;;36995:5:::1;;36720:296;36700:3:::0;::::1;::::0;::::1;:::i;:::-;;;;36651:376;;;-1:-1:-1::0;37042:32:0::1;::::0;-1:-1:-1;;;;;1889:32:1;;1871:51;;37042:32:0::1;::::0;1859:2:1;1844:18;37042:32:0::1;1698:230:1::0;39216:171:0;16586:6;;-1:-1:-1;;;;;16586:6:0;8428:10;16586:22;16578:67;;;;-1:-1:-1;;;16578:67:0;;;;;;;:::i;:::-;39293:21:::1;:32:::0;;;::::1;;-1:-1:-1::0;;;39293:32:0::1;-1:-1:-1::0;;;;39293:32:0;;::::1;;::::0;;39341:38:::1;::::0;::::1;::::0;::::1;::::0;39317:8;567:14:1;560:22;542:41;;530:2;515:18;;402:187;38892:136:0;16586:6;;-1:-1:-1;;;;;16586:6:0;8428:10;16586:22;16578:67;;;;-1:-1:-1;;;16578:67:0;;;;;;;:::i;:::-;38984:36:::1;39014:5;38984:25;38996:12;38984:7;;:11;;:25;;;;:::i;:36::-;38969:12;:51:::0;-1:-1:-1;38892:136:0:o;17773:226::-;16586:6;;-1:-1:-1;;;;;16586:6:0;8428:10;16586:22;16578:67;;;;-1:-1:-1;;;16578:67:0;;;;;;;:::i;:::-;17854:6:::1;::::0;;;17837:23;;-1:-1:-1;;;;;;17837:23:0;;::::1;-1:-1:-1::0;;;;;17854:6:0;::::1;17837:23;::::0;;;17871:19:::1;::::0;;17913:22:::1;17931:4:::0;17913:15:::1;:22;:::i;:::-;17901:9;:34:::0;17988:1:::1;17972:6:::0;;17951:40:::1;::::0;-1:-1:-1;;;;;17972:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;17951:40:0;17988:1;;17951:40:::1;17773:226:::0;:::o;38030:110::-;16586:6;;-1:-1:-1;;;;;16586:6:0;8428:10;16586:22;16578:67;;;;-1:-1:-1;;;16578:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38097:27:0::1;38127:5;38097:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;38097:35:0::1;::::0;;38030:110::o;38744:140::-;16586:6;;-1:-1:-1;;;;;16586:6:0;8428:10;16586:22;16578:67;;;;-1:-1:-1;;;16578:67:0;;;;;;;:::i;:::-;38835:29:::1;:41:::0;38744:140::o;17319:281::-;16586:6;;-1:-1:-1;;;;;16586:6:0;8428:10;16586:22;16578:67;;;;-1:-1:-1;;;16578:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17422:22:0;::::1;17400:110;;;::::0;-1:-1:-1;;;17400:110:0;;10832:2:1;17400:110:0::1;::::0;::::1;10814:21:1::0;10871:2;10851:18;;;10844:30;10910:34;10890:18;;;10883:62;-1:-1:-1;;;10961:18:1;;;10954:36;11007:19;;17400:110:0::1;10630:402:1::0;17400:110:0::1;17547:6;::::0;;17526:38:::1;::::0;-1:-1:-1;;;;;17526:38:0;;::::1;::::0;17547:6;::::1;::::0;-1:-1:-1;;;;;;;;;;;17526:38:0;::::1;17575:6;:17:::0;;-1:-1:-1;;;;;;17575:17:0::1;-1:-1:-1::0;;;;;17575:17:0;;;::::1;::::0;;;::::1;::::0;;17319:281::o;38393:168::-;16586:6;;-1:-1:-1;;;;;16586:6:0;8428:10;16586:22;16578:67;;;;-1:-1:-1;;;16578:67:0;;;;;;;:::i;:::-;38496:7:::1;:17:::0;;::::1;38524:29:::0;;::::1;38496:17;38524:29;-1:-1:-1::0;;38524:29:0;;;38496:17;;;::::1;38524:29:::0;;;;;;;::::1;::::0;;38393:168::o;42786:371::-;-1:-1:-1;;;;;42913:19:0;;42905:68;;;;-1:-1:-1;;;42905:68:0;;11239:2:1;42905:68:0;;;11221:21:1;11278:2;11258:18;;;11251:30;11317:34;11297:18;;;11290:62;-1:-1:-1;;;11368:18:1;;;11361:34;11412:19;;42905:68:0;11037:400:1;42905:68:0;-1:-1:-1;;;;;42992:21:0;;42984:68;;;;-1:-1:-1;;;42984:68:0;;11644:2:1;42984:68:0;;;11626:21:1;11683:2;11663:18;;;11656:30;11722:34;11702:18;;;11695:62;-1:-1:-1;;;11773:18:1;;;11766:32;11815:19;;42984:68:0;11442:398:1;42984:68:0;-1:-1:-1;;;;;43065:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;43117:32;;1662:25:1;;;43117:32:0;;1635:18:1;43117:32:0;;;;;;;42786:371;;;:::o;43165:2575::-;-1:-1:-1;;;;;43287:18:0;;43279:68;;;;-1:-1:-1;;;43279:68:0;;12047:2:1;43279:68:0;;;12029:21:1;12086:2;12066:18;;;12059:30;12125:34;12105:18;;;12098:62;-1:-1:-1;;;12176:18:1;;;12169:35;12221:19;;43279:68:0;11845:401:1;43279:68:0;-1:-1:-1;;;;;43366:16:0;;43358:64;;;;-1:-1:-1;;;43358:64:0;;12453:2:1;43358:64:0;;;12435:21:1;12492:2;12472:18;;;12465:30;12531:34;12511:18;;;12504:62;-1:-1:-1;;;12582:18:1;;;12575:33;12625:19;;43358:64:0;12251:399:1;43358:64:0;43450:1;43441:6;:10;43433:64;;;;-1:-1:-1;;;43433:64:0;;12857:2:1;43433:64:0;;;12839:21:1;12896:2;12876:18;;;12869:30;12935:34;12915:18;;;12908:62;-1:-1:-1;;;12986:18:1;;;12979:39;13035:19;;43433:64:0;12655:405:1;43433:64:0;-1:-1:-1;;;;;43517:23:0;;;;;;:17;:23;;;;;;;;43516:24;43508:56;;;;-1:-1:-1;;;43508:56:0;;13267:2:1;43508:56:0;;;13249:21:1;13306:2;13286:18;;;13279:30;-1:-1:-1;;;13325:18:1;;;13318:49;13384:18;;43508:56:0;13065:343:1;43508:56:0;43602:10;43584:29;;;;:17;:29;;;;;;;;43583:30;43575:62;;;;-1:-1:-1;;;43575:62:0;;13615:2:1;43575:62:0;;;13597:21:1;13654:2;13634:18;;;13627:30;-1:-1:-1;;;13673:18:1;;;13666:49;13732:18;;43575:62:0;13413:343:1;43575:62:0;43675:9;43657:28;;;;:17;:28;;;;;;;;43656:29;43648:53;;;;-1:-1:-1;;;43648:53:0;;13963:2:1;43648:53:0;;;13945:21:1;14002:2;13982:18;;;13975:30;-1:-1:-1;;;14021:18:1;;;14014:41;14072:18;;43648:53:0;13761:335:1;43648:53:0;-1:-1:-1;;;;;43719:26:0;;;;;;:20;:26;;;;;;;;43718:27;:56;;;;-1:-1:-1;;;;;;43750:24:0;;;;;;:20;:24;;;;;;;;43749:25;43718:56;43714:339;;;43810:12;;43800:6;:22;;43792:74;;;;-1:-1:-1;;;43792:74:0;;14303:2:1;43792:74:0;;;14285:21:1;14342:2;14322:18;;;14315:30;14381:34;14361:18;;;14354:62;-1:-1:-1;;;14432:18:1;;;14425:38;14480:19;;43792:74:0;14101:404:1;43792:74:0;43904:13;;-1:-1:-1;;;;;43898:19:0;;;43904:13;;43898:19;43895:147;;43972:14;;43963:6;43947:13;43957:2;43947:9;:13::i;:::-;:22;;;;:::i;:::-;:39;43939:87;;;;-1:-1:-1;;;43939:87:0;;14712:2:1;43939:87:0;;;14694:21:1;14751:2;14731:18;;;14724:30;14790:34;14770:18;;;14763:62;-1:-1:-1;;;14841:18:1;;;14834:33;14884:19;;43939:87:0;14510:399:1;43939:87:0;44349:28;44380:24;44398:4;44380:9;:24::i;:::-;44349:55;;44445:12;;44421:20;:36;44417:104;;-1:-1:-1;44497:12:0;;44417:104;44597:29;;44560:66;;;;;;;44655:53;;-1:-1:-1;44692:16:0;;-1:-1:-1;;;44692:16:0;;;;44691:17;44655:53;:91;;;;-1:-1:-1;44733:13:0;;-1:-1:-1;;;;;44725:21:0;;;44733:13;;44725:21;;44655:91;:129;;;;-1:-1:-1;44763:21:0;;-1:-1:-1;;;44763:21:0;;;;44655:129;44637:318;;;44834:29;;44811:52;;44907:36;44922:20;44907:14;:36::i;:::-;-1:-1:-1;;;;;45149:24:0;;45028:12;45149:24;;;:18;:24;;;;;;45043:4;;45149:24;;;:50;;-1:-1:-1;;;;;;45177:22:0;;;;;;:18;:22;;;;;;;;45149:50;45148:102;;;-1:-1:-1;45213:13:0;;-1:-1:-1;;;;;45205:21:0;;;45213:13;;45205:21;;;;:44;;-1:-1:-1;45236:13:0;;-1:-1:-1;;;;;45230:19:0;;;45236:13;;45230:19;;45205:44;45144:469;;;-1:-1:-1;45277:5:0;45144:469;;;45358:13;;-1:-1:-1;;;;;45350:21:0;;;45358:13;;45350:21;:55;;;;-1:-1:-1;45389:15:0;;-1:-1:-1;;;;;45375:30:0;;;45389:15;;;;;45375:30;;45350:55;45347:103;;;45426:8;42328:6;:10;42318:7;:20;;42328:10;42365:16;;;42328:10;42365:16;;;42349:32;;;-1:-1:-1;;42349:32:0;;;42328:10;;42349:32;;;;;;;;;;42281:110;45426:8;45507:13;;-1:-1:-1;;;;;45501:19:0;;;45507:13;;45501:19;:55;;;;-1:-1:-1;45540:15:0;;-1:-1:-1;;;;;45524:32:0;;;45540:15;;;;;45524:32;;45501:55;45497:105;;;45577:9;42447:7;:11;42437:7;:21;;42447:11;42485:17;;;42447:11;42485:17;;;42469:33;;;-1:-1:-1;;42469:33:0;;;42447:11;;42469:33;;;;;;;;;;42399:111;45577:9;45691:41;45706:4;45712:2;45716:6;45724:7;45691:14;:41::i;:::-;43268:2472;;;43165:2575;;;:::o;4640:226::-;4760:7;4796:12;4788:6;;;;4780:29;;;;-1:-1:-1;;;4780:29:0;;;;;;;;:::i;:::-;-1:-1:-1;4820:9:0;4832:5;4836:1;4832;:5;:::i;:::-;4820:17;4640:226;-1:-1:-1;;;;;4640:226:0:o;40656:164::-;40698:7;40719:15;40736;40755:19;:17;:19::i;:::-;40718:56;;-1:-1:-1;40718:56:0;-1:-1:-1;40792:20:0;40718:56;;40792:11;:20::i;:::-;40785:27;;;;40656:164;:::o;6072:132::-;6130:7;6157:39;6161:1;6164;6157:39;;;;;;;;;;;;;;;;;:3;:39::i;3737:181::-;3795:7;;3827:5;3831:1;3827;:5;:::i;:::-;3815:17;;3856:1;3851;:6;;3843:46;;;;-1:-1:-1;;;3843:46:0;;15116:2:1;3843:46:0;;;15098:21:1;15155:2;15135:18;;;15128:30;15194:29;15174:18;;;15167:57;15241:18;;3843:46:0;14914:351:1;39644:414:0;39745:7;39767;39789;39824:12;39839:24;39855:7;39839:15;:24::i;:::-;39824:39;;39874:18;39895:30;39917:7;39895:21;:30::i;:::-;39874:51;-1:-1:-1;39936:23:0;39962:33;39874:51;39962:17;:7;39974:4;39962:11;:17::i;:::-;:21;;:33::i;:::-;39936:59;40033:4;;-1:-1:-1;40039:10:0;;-1:-1:-1;39644:414:0;;-1:-1:-1;;;39644:414:0:o;40066:582::-;40265:7;;;;40362:24;:7;40374:11;40362;:24::i;:::-;40344:42;-1:-1:-1;40397:12:0;40412:21;:4;40421:11;40412:8;:21::i;:::-;40397:36;-1:-1:-1;40444:18:0;40465:27;:10;40480:11;40465:14;:27::i;:::-;40444:48;-1:-1:-1;40503:23:0;40529:61;40444:48;40529:31;:7;40555:4;40529:25;:31::i;:61::-;40609:7;;;;-1:-1:-1;40635:4:0;;-1:-1:-1;40066:582:0;;-1:-1:-1;;;;;;;40066:582:0:o;4201:136::-;4259:7;4286:43;4290:1;4293;4286:43;;;;;;;;;;;;;;;;;:3;:43::i;10952:469::-;11081:6;11056:21;:31;;11034:110;;;;-1:-1:-1;;;11034:110:0;;15472:2:1;11034:110:0;;;15454:21:1;15511:2;15491:18;;;15484:30;15550:31;15530:18;;;15523:59;15599:18;;11034:110:0;15270:353:1;11034:110:0;11236:12;11254:9;-1:-1:-1;;;;;11254:14:0;11276:6;11254:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11235:52;;;11320:7;11298:115;;;;-1:-1:-1;;;11298:115:0;;16040:2:1;11298:115:0;;;16022:21:1;16079:2;16059:18;;;16052:30;16118:34;16098:18;;;16091:62;16189:28;16169:18;;;16162:56;16235:19;;11298:115:0;15838:422:1;5125:471:0;5183:7;5428:6;5424:47;;-1:-1:-1;5458:1:0;5451:8;;5424:47;5483:9;5495:5;5499:1;5495;:5;:::i;:::-;5483:17;-1:-1:-1;5528:1:0;5519:5;5523:1;5483:17;5519:5;:::i;:::-;:10;5511:56;;;;-1:-1:-1;;;5511:56:0;;16862:2:1;5511:56:0;;;16844:21:1;16901:2;16881:18;;;16874:30;16940:34;16920:18;;;16913:62;-1:-1:-1;;;16991:18:1;;;16984:31;17032:19;;5511:56:0;16660:397:1;45748:977:0;30734:16;:23;;-1:-1:-1;;;;30734:23:0;-1:-1:-1;;;30734:23:0;;;;45899:27:::1;:20:::0;45924:1:::1;45899:24;:27::i;:::-;45884:42:::0;-1:-1:-1;45937:17:0::1;45957:30;:20:::0;45884:42;45957:24:::1;:30::i;:::-;45937:50:::0;-1:-1:-1;46290:21:0::1;46356:22;46373:4:::0;46356:16:::1;:22::i;:::-;46509:18;46530:41;:21;46556:14:::0;46530:25:::1;:41::i;:::-;46509:62;;46621:35;46634:9;46645:10;46621:12;:35::i;:::-;46674:43;::::0;;17264:25:1;;;17320:2;17305:18;;17298:34;;;17348:18;;;17341:34;;;46674:43:0::1;::::0;17252:2:1;17237:18;46674:43:0::1;;;;;;;-1:-1:-1::0;;30780:16:0;:24;;-1:-1:-1;;;;30780:24:0;;;-1:-1:-1;;;45748:977:0:o;47924:834::-;48080:7;48075:41;;48102:14;:12;:14::i;:::-;-1:-1:-1;;;;;48133:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;48157:22:0;;;;;;:11;:22;;;;;;;;48156:23;48133:46;48129:597;;;48196:48;48218:6;48226:9;48237:6;48196:21;:48::i;:::-;48129:597;;;-1:-1:-1;;;;;48267:19:0;;;;;;:11;:19;;;;;;;;48266:20;:46;;;;-1:-1:-1;;;;;;48290:22:0;;;;;;:11;:22;;;;;;;;48266:46;48262:464;;;48329:46;48349:6;48357:9;48368:6;48329:19;:46::i;48262:464::-;-1:-1:-1;;;;;48398:19:0;;;;;;:11;:19;;;;;;;;48397:20;:47;;;;-1:-1:-1;;;;;;48422:22:0;;;;;;:11;:22;;;;;;;;48421:23;48397:47;48393:333;;;48461:44;48479:6;48487:9;48498:6;48461:17;:44::i;48393:333::-;-1:-1:-1;;;;;48527:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;48550:22:0;;;;;;:11;:22;;;;;;;;48527:45;48523:203;;;48589:48;48611:6;48619:9;48630:6;48589:21;:48::i;48523:203::-;48670:44;48688:6;48696:9;48707:6;48670:17;:44::i;:::-;48736:14;:12;:14::i;:::-;47924:834;;;;:::o;40828:605::-;40926:7;;40962;;40879;;;;;40980:338;41004:9;:16;41000:20;;40980:338;;;41088:7;41064;:21;41072:9;41082:1;41072:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;41072:12:0;41064:21;;;;;;;;;;;;;:31;;:83;;;41140:7;41116;:21;41124:9;41134:1;41124:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;41124:12:0;41116:21;;;;;;;;;;;;;:31;41064:83;41042:146;;;41171:7;;41180;;41163:25;;;;;;;40828:605;;:::o;41042:146::-;41213:34;41225:7;:21;41233:9;41243:1;41233:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;41233:12:0;41225:21;;;;;;;;;;;;;41213:7;;:11;:34::i;:::-;41203:44;;41272:34;41284:7;:21;41292:9;41302:1;41292:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;41292:12:0;41284:21;;;;;;;;;;;;;41272:7;;:11;:34::i;:::-;41262:44;-1:-1:-1;41022:3:0;;;;:::i;:::-;;;;40980:338;;;-1:-1:-1;41354:7:0;;41342;;:20;;:11;:20::i;:::-;41332:7;:30;41328:61;;;41372:7;;41381;;41364:25;;;;;;40828:605;;:::o;41328:61::-;41408:7;;41417;;-1:-1:-1;40828:605:0;-1:-1:-1;40828:605:0:o;6700:312::-;6820:7;6855:12;6848:5;6840:28;;;;-1:-1:-1;;;6840:28:0;;;;;;;;:::i;:::-;-1:-1:-1;6879:9:0;6891:5;6895:1;6891;:5;:::i;41804:130::-;41907:7;;41868;;41895:31;;41920:5;;41895:20;;:7;;41907;;41895:11;:20::i;41942:174::-;42083:13;;42039:7;;42071:37;;42102:5;;42071:26;;:7;;42083:13;;;;;42071:11;:26::i;46733:589::-;46883:16;;;46897:1;46883:16;;;;;;;;46859:21;;46883:16;;;;;;;;;;-1:-1:-1;46883:16:0;46859:40;;46928:4;46910;46915:1;46910:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;46910:23:0;;;-1:-1:-1;;;;;46910:23:0;;;;;46954:15;;;;;;;;;-1:-1:-1;;;;;46954:15:0;-1:-1:-1;;;;;46954:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46944:4;46949:1;46944:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;46944:32:0;;;:7;;;;;;;;;:32;47021:15;;46989:62;;47006:4;;47021:15;;;;47039:11;46989:8;:62::i;:::-;47090:15;;:224;;-1:-1:-1;;;47090:224:0;;:15;;;;-1:-1:-1;;;;;47090:15:0;;:66;;:224;;47171:11;;47197:1;;47241:4;;47268;;47288:15;;47090:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47330:513;47510:15;;47478:62;;47495:4;;47510:15;;;-1:-1:-1;;;;;47510:15:0;47528:11;47478:8;:62::i;:::-;47583:15;;-1:-1:-1;;;;;47583:15:0;;;;;:31;47622:9;47655:4;47675:11;47701:1;;47787:7;16412;16439:6;-1:-1:-1;;;;;16439:6:0;;16374:79;47787:7;47583:252;;;;;;-1:-1:-1;;;;;;47583:252:0;;;-1:-1:-1;;;;;19118:15:1;;;47583:252:0;;;19100:34:1;19150:18;;;19143:34;;;;19193:18;;;19186:34;;;;19236:18;;;19229:34;19300:15;;;19279:19;;;19272:44;47809:15:0;19332:19:1;;;19325:35;19034:19;;47583:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;47330:513;;:::o;42124:149::-;42171:7;;;;:12;:34;;;;-1:-1:-1;42187:13:0;;;;;;;:18;42171:34;42167:47;;;42124:149::o;42167:47::-;42226:7;:11;;-1:-1:-1;;42248:17:0;;;42124:149::o;50289:777::-;50440:23;50478:12;50505:18;50537:20;50549:7;50537:11;:20::i;:::-;50425:132;;;;;;50569:15;50586:23;50611:12;50627:113;50653:7;50675:4;50694:10;50719;:8;:10::i;50627:113::-;-1:-1:-1;;;;;50771:15:0;;;;;;:7;:15;;;;;;50568:172;;-1:-1:-1;50568:172:0;;-1:-1:-1;50568:172:0;-1:-1:-1;50771:28:0;;50791:7;50771:19;:28::i;:::-;-1:-1:-1;;;;;50753:15:0;;;;;;:7;:15;;;;;;;;:46;;;;50828:7;:15;;;;:28;;50848:7;50828:19;:28::i;:::-;-1:-1:-1;;;;;50810:15:0;;;;;;;:7;:15;;;;;;:46;;;;50888:18;;;;;;;:39;;50911:15;50888:22;:39::i;:::-;-1:-1:-1;;;;;50867:18:0;;;;;;:7;:18;;;;;:60;50938:26;50953:10;50938:14;:26::i;:::-;50975:23;50987:4;50993;50975:11;:23::i;:::-;51031:9;-1:-1:-1;;;;;51014:44:0;51023:6;-1:-1:-1;;;;;51014:44:0;;51042:15;51014:44;;;;1662:25:1;;1650:2;1635:18;;1516:177;51014:44:0;;;;;;;;50414:652;;;;;;50289:777;;;:::o;49492:789::-;49641:23;49679:12;49706:18;49738:20;49750:7;49738:11;:20::i;:::-;49626:132;;;;;;49770:15;49787:23;49812:12;49828:113;49854:7;49876:4;49895:10;49920;:8;:10::i;49828:113::-;-1:-1:-1;;;;;49972:15:0;;;;;;:7;:15;;;;;;49769:172;;-1:-1:-1;49769:172:0;;-1:-1:-1;49769:172:0;-1:-1:-1;49972:28:0;;49769:172;49972:19;:28::i;:::-;-1:-1:-1;;;;;49954:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;50032:18;;;;;:7;:18;;;;;:39;;50055:15;50032:22;:39::i;:::-;-1:-1:-1;;;;;50011:18:0;;;;;;:7;:18;;;;;;;;:60;;;;50103:7;:18;;;;:39;;50126:15;50103:22;:39::i;48766:716::-;48913:23;48951:12;48978:18;49010:20;49022:7;49010:11;:20::i;:::-;48898:132;;;;;;49042:15;49059:23;49084:12;49100:113;49126:7;49148:4;49167:10;49192;:8;:10::i;49100:113::-;-1:-1:-1;;;;;49244:15:0;;;;;;:7;:15;;;;;;49041:172;;-1:-1:-1;49041:172:0;;-1:-1:-1;49041:172:0;-1:-1:-1;49244:28:0;;49041:172;49244:19;:28::i;51074:848::-;51225:23;51263:12;51290:18;51322:20;51334:7;51322:11;:20::i;:::-;51210:132;;;;;;51354:15;51371:23;51396:12;51412:113;51438:7;51460:4;51479:10;51504;:8;:10::i;51412:113::-;-1:-1:-1;;;;;51556:15:0;;;;;;:7;:15;;;;;;51353:172;;-1:-1:-1;51353:172:0;;-1:-1:-1;51353:172:0;-1:-1:-1;51556:28:0;;51576:7;51556:19;:28::i;:::-;-1:-1:-1;;;;;51538:15:0;;;;;;:7;:15;;;;;;;;:46;;;;51613:7;:15;;;;:28;;51633:7;51613:19;:28::i;41441:355::-;41504:19;41526:10;:8;:10::i;:::-;41504:32;-1:-1:-1;41547:18:0;41568:27;:10;41504:32;41568:14;:27::i;:::-;41647:4;41631:22;;;;:7;:22;;;;;;41547:48;;-1:-1:-1;41631:38:0;;41547:48;41631:26;:38::i;:::-;41622:4;41606:22;;;;:7;:22;;;;;;;;:63;;;;41684:11;:26;;;;;;41680:108;;;41766:4;41750:22;;;;:7;:22;;;;;;:38;;41777:10;41750:26;:38::i;:::-;41741:4;41725:22;;;;:7;:22;;;;;:63;41493:303;;41441:355;:::o;39489:147::-;39567:7;;:17;;39579:4;39567:11;:17::i;:::-;39557:7;:27;39608:10;;:20;;39623:4;39608:14;:20::i;:::-;39595:10;:33;-1:-1:-1;;39489:147:0:o;14:131:1:-;-1:-1:-1;;;;;89:31:1;;79:42;;69:70;;135:1;132;125:12;69:70;14:131;:::o;150:247::-;209:6;262:2;250:9;241:7;237:23;233:32;230:52;;;278:1;275;268:12;230:52;317:9;304:23;336:31;361:5;336:31;:::i;594:597::-;706:4;735:2;764;753:9;746:21;796:6;790:13;839:6;834:2;823:9;819:18;812:34;864:1;874:140;888:6;885:1;882:13;874:140;;;983:14;;;979:23;;973:30;949:17;;;968:2;945:26;938:66;903:10;;874:140;;;1032:6;1029:1;1026:13;1023:91;;;1102:1;1097:2;1088:6;1077:9;1073:22;1069:31;1062:42;1023:91;-1:-1:-1;1175:2:1;1154:15;-1:-1:-1;;1150:29:1;1135:45;;;;1182:2;1131:54;;594:597;-1:-1:-1;;;594:597:1:o;1196:315::-;1264:6;1272;1325:2;1313:9;1304:7;1300:23;1296:32;1293:52;;;1341:1;1338;1331:12;1293:52;1380:9;1367:23;1399:31;1424:5;1399:31;:::i;:::-;1449:5;1501:2;1486:18;;;;1473:32;;-1:-1:-1;;;1196:315:1:o;1933:456::-;2010:6;2018;2026;2079:2;2067:9;2058:7;2054:23;2050:32;2047:52;;;2095:1;2092;2085:12;2047:52;2134:9;2121:23;2153:31;2178:5;2153:31;:::i;:::-;2203:5;-1:-1:-1;2260:2:1;2245:18;;2232:32;2273:33;2232:32;2273:33;:::i;:::-;1933:456;;2325:7;;-1:-1:-1;;;2379:2:1;2364:18;;;;2351:32;;1933:456::o;2661:180::-;2720:6;2773:2;2761:9;2752:7;2748:23;2744:32;2741:52;;;2789:1;2786;2779:12;2741:52;-1:-1:-1;2812:23:1;;2661:180;-1:-1:-1;2661:180:1:o;3035:118::-;3121:5;3114:13;3107:21;3100:5;3097:32;3087:60;;3143:1;3140;3133:12;3158:309;3223:6;3231;3284:2;3272:9;3263:7;3259:23;3255:32;3252:52;;;3300:1;3297;3290:12;3252:52;3336:9;3323:23;3313:33;;3396:2;3385:9;3381:18;3368:32;3409:28;3431:5;3409:28;:::i;:::-;3456:5;3446:15;;;3158:309;;;;;:::o;3680:156::-;3746:20;;3806:4;3795:16;;3785:27;;3775:55;;3826:1;3823;3816:12;3775:55;3680:156;;;:::o;3841:252::-;3905:6;3913;3966:2;3954:9;3945:7;3941:23;3937:32;3934:52;;;3982:1;3979;3972:12;3934:52;4005:27;4022:9;4005:27;:::i;:::-;3995:37;;4051:36;4083:2;4072:9;4068:18;4051:36;:::i;:::-;4041:46;;3841:252;;;;;:::o;4098:241::-;4154:6;4207:2;4195:9;4186:7;4182:23;4178:32;4175:52;;;4223:1;4220;4213:12;4175:52;4262:9;4249:23;4281:28;4303:5;4281:28;:::i;4344:388::-;4412:6;4420;4473:2;4461:9;4452:7;4448:23;4444:32;4441:52;;;4489:1;4486;4479:12;4441:52;4528:9;4515:23;4547:31;4572:5;4547:31;:::i;:::-;4597:5;-1:-1:-1;4654:2:1;4639:18;;4626:32;4667:33;4626:32;4667:33;:::i;4737:380::-;4816:1;4812:12;;;;4859;;;4880:61;;4934:4;4926:6;4922:17;4912:27;;4880:61;4987:2;4979:6;4976:14;4956:18;4953:38;4950:161;;;5033:10;5028:3;5024:20;5021:1;5014:31;5068:4;5065:1;5058:15;5096:4;5093:1;5086:15;4950:161;;4737:380;;;:::o;5122:356::-;5324:2;5306:21;;;5343:18;;;5336:30;5402:34;5397:2;5382:18;;5375:62;5469:2;5454:18;;5122:356::o;7008:127::-;7069:10;7064:3;7060:20;7057:1;7050:31;7100:4;7097:1;7090:15;7124:4;7121:1;7114:15;7140:127;7201:10;7196:3;7192:20;7189:1;7182:31;7232:4;7229:1;7222:15;7256:4;7253:1;7246:15;7272:125;7312:4;7340:1;7337;7334:8;7331:34;;;7345:18;;:::i;:::-;-1:-1:-1;7382:9:1;;7272:125::o;7402:127::-;7463:10;7458:3;7454:20;7451:1;7444:31;7494:4;7491:1;7484:15;7518:4;7515:1;7508:15;7534:135;7573:3;-1:-1:-1;;7594:17:1;;7591:43;;;7614:18;;:::i;:::-;-1:-1:-1;7661:1:1;7650:13;;7534:135::o;9082:245::-;9149:6;9202:2;9190:9;9181:7;9177:23;9173:32;9170:52;;;9218:1;9215;9208:12;9170:52;9250:9;9244:16;9269:28;9291:5;9269:28;:::i;10497:128::-;10537:3;10568:1;10564:6;10561:1;10558:13;10555:39;;;10574:18;;:::i;:::-;-1:-1:-1;10610:9:1;;10497:128::o;16265:168::-;16305:7;16371:1;16367;16363:6;16359:14;16356:1;16353:21;16348:1;16341:9;16334:17;16330:45;16327:71;;;16378:18;;:::i;:::-;-1:-1:-1;16418:9:1;;16265:168::o;16438:217::-;16478:1;16504;16494:132;;16548:10;16543:3;16539:20;16536:1;16529:31;16583:4;16580:1;16573:15;16611:4;16608:1;16601:15;16494:132;-1:-1:-1;16640:9:1;;16438:217::o;17518:251::-;17588:6;17641:2;17629:9;17620:7;17616:23;17612:32;17609:52;;;17657:1;17654;17647:12;17609:52;17689:9;17683:16;17708:31;17733:5;17708:31;:::i;17774:980::-;18036:4;18084:3;18073:9;18069:19;18115:6;18104:9;18097:25;18141:2;18179:6;18174:2;18163:9;18159:18;18152:34;18222:3;18217:2;18206:9;18202:18;18195:31;18246:6;18281;18275:13;18312:6;18304;18297:22;18350:3;18339:9;18335:19;18328:26;;18389:2;18381:6;18377:15;18363:29;;18410:1;18420:195;18434:6;18431:1;18428:13;18420:195;;;18499:13;;-1:-1:-1;;;;;18495:39:1;18483:52;;18590:15;;;;18555:12;;;;18531:1;18449:9;18420:195;;;-1:-1:-1;;;;;;;18671:32:1;;;;18666:2;18651:18;;18644:60;-1:-1:-1;;;18735:3:1;18720:19;18713:35;18632:3;17774:980;-1:-1:-1;;;17774:980:1:o;19371:306::-;19459:6;19467;19475;19528:2;19516:9;19507:7;19503:23;19499:32;19496:52;;;19544:1;19541;19534:12;19496:52;19573:9;19567:16;19557:26;;19623:2;19612:9;19608:18;19602:25;19592:35;;19667:2;19656:9;19652:18;19646:25;19636:35;;19371:306;;;;;:::o

Swarm Source

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