ETH Price: $3,385.03 (+4.64%)
Gas: 3 Gwei

Token

SuperInu (SupInu)
 

Overview

Max Total Supply

1,000,000,000,000,000 SupInu

Holders

454

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
2,377,180.589397481 SupInu

Value
$0.00
0x56b10e4dbc5f6ee7d3b5b4c27049a320d038c4f1
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
SuperInu

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-05-24
*/

/**
 *Submitted for verification at Etherscan.io on 2021-05-24
*/

// Super Inu
// t.me/superinutoken


// SPDX-License-Identifier: Unlicensed

pragma solidity ^0.6.12;

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

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

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

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

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

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

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

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

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

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

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

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

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

    function initialize(address, address) external;
}

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual 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;
    }
}

/**
 * @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, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

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

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

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

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

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        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) {
        require(b <= a, "SafeMath: subtraction overflow");
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        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, reverting 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) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }

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

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

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * 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);
        return a / b;
    }

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

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

/**
 * @dev 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) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

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

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

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

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

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

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

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

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

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

    mapping (address => bool) private _isExcludedFromFee;

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

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

    string private _name = "SuperInu";
    string private _symbol = "SupInu";
    uint8 private _decimals = 9;

    uint256 public _taxFee = 1;
    uint256 private _previousTaxFee = _taxFee;

    uint256 public _liquidityFee = 3;
    uint256 private _previousLiquidityFee = _liquidityFee;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address payable public fundAddress = 0xDeC527FB923316E171Ee9569A97c68831E639d12;

    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;
    bool public tradingEnabled = false;

    uint256 public _maxTxAmount = 5000000 * 10**6 * 10**9;
    uint256 private numTokensSellToAddToLiquidity = 500000 * 10**6 * 10**9;

    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );

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

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

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;

        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;

        emit Transfer(address(0), _msgSender(), _tTotal);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function excludeFromReward(address account) public onlyOwner() {
        require(!_isExcluded[account], "Account is already excluded");
        if(_rOwned[account] > 0) {
            _tOwned[account] = tokenFromReflection(_rOwned[account]);
        }
        _isExcluded[account] = true;
        _excluded.push(account);
    }

    function includeInReward(address account) external onlyOwner() {
        require(_isExcluded[account], "Account is already excluded");
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_excluded[i] == account) {
                _excluded[i] = _excluded[_excluded.length - 1];
                _tOwned[account] = 0;
                _isExcluded[account] = false;
                _excluded.pop();
                break;
            }
        }
    }
    function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount);
        _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);
    }

    function excludeFromFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = true;
    }

    function includeInFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = false;
    }

    function setTaxFeePercent(uint256 taxFee) external onlyOwner() {
        _taxFee = taxFee;
    }

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

    function setLiquidityFeePercent(uint256 liquidityFee) external onlyOwner() {
        _liquidityFee = liquidityFee;
    }

    function setFundAddress(address payable newFundAddress) external onlyOwner() {
        fundAddress = newFundAddress;
    }

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

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

    function enableTrading() external onlyOwner() {
        tradingEnabled = true;
    }

    receive() external payable {}

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

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

    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;

        _previousTaxFee = _taxFee;
        _previousLiquidityFee = _liquidityFee;

        _taxFee = 0;
        _liquidityFee = 0;
    }

    function restoreAllFee() private {
        _taxFee = _previousTaxFee;
        _liquidityFee = _previousLiquidityFee;
    }

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

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

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

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");

        if(from != owner() && to != owner())
            require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");

        if (from != owner() && !tradingEnabled) {
            require(tradingEnabled, "Trading is not enabled yet");
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        if(contractTokenBalance >= _maxTxAmount)
        {
            contractTokenBalance = _maxTxAmount;
        }

        bool overMinTokenBalance = contractTokenBalance >= numTokensSellToAddToLiquidity;
        if (overMinTokenBalance && !inSwapAndLiquify && from != uniswapV2Pair && swapAndLiquifyEnabled) {
            contractTokenBalance = numTokensSellToAddToLiquidity;
            swapAndLiquify(contractTokenBalance);
        }

        bool takeFee = true;

        if(_isExcludedFromFee[from] || _isExcludedFromFee[to]){
            takeFee = false;
        }

        _tokenTransfer(from,to,amount,takeFee);
    }

    function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        uint256 oneSixth = contractTokenBalance.div(6);
        uint256 fiveSixths = oneSixth.mul(5);
        uint256 remainingSixth = contractTokenBalance.sub(fiveSixths);

        uint256 initialBalance = address(this).balance;

        swapTokensForEth(fiveSixths);

        uint256 newBalance = address(this).balance.sub(initialBalance);
        uint256 liquidityToAdd = newBalance.div(5);

        addLiquidity(remainingSixth, liquidityToAdd);

        fundAddress.transfer(address(this).balance);

        emit SwapAndLiquify(fiveSixths, newBalance, remainingSixth);
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            owner(),
            block.timestamp
        );
    }

    function _tokenTransfer(address sender, address recipient, uint256 amount,bool takeFee) private {
        if(!takeFee)
            removeAllFee();

        if (_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferFromExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && _isExcluded[recipient]) {
            _transferToExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferStandard(sender, recipient, amount);
        } else if (_isExcluded[sender] && _isExcluded[recipient]) {
            _transferBothExcluded(sender, recipient, amount);
        } else {
            _transferStandard(sender, recipient, amount);
        }

        if(!takeFee)
            restoreAllFee();
    }

    function _transferStandard(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount);
        _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 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(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);
    }

    function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount);
        _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);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"fundAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newFundAddress","type":"address"}],"name":"setFundAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNumTokensSellToAddToLiquidity","type":"uint256"}],"name":"setNumTokensSellToAddToLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"setTaxFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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"},{"stateMutability":"payable","type":"receive"}]

60c060405269d3c21bcecceda1000000600755600754600019816200002057fe5b06600019036008556040518060400160405280600881526020017f5375706572496e75000000000000000000000000000000000000000000000000815250600a9080519060200190620000759291906200066e565b506040518060400160405280600681526020017f537570496e750000000000000000000000000000000000000000000000000000815250600b9080519060200190620000c39291906200066e565b506009600c60006101000a81548160ff021916908360ff1602179055506001600d55600d54600e556003600f55600f5460105573dec527fb923316e171ee9569a97c68831e639d12601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001601160156101000a81548160ff0219169083151502179055506000601160166101000a81548160ff02191690831515021790555069010f0cf064dd59200000601255681b1ae4d6e2ef500000601355348015620001a957600080fd5b506000620001bc6200063d60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35060085460016000620002716200063d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200030f57600080fd5b505afa15801562000324573d6000803e3d6000fd5b505050506040513d60208110156200033b57600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620003af57600080fd5b505afa158015620003c4573d6000803e3d6000fd5b505050506040513d6020811015620003db57600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b1580156200045657600080fd5b505af11580156200046b573d6000803e3d6000fd5b505050506040513d60208110156200048257600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b81525050600160046000620005166200064560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620005cf6200063d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6007546040518082815260200191505060405180910390a35062000714565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620006b157805160ff1916838001178555620006e2565b82800160010185558215620006e2579182015b82811115620006e1578251825591602001919060010190620006c4565b5b509050620006f19190620006f5565b5090565b5b8082111562000710576000816000905550600101620006f6565b5090565b60805160601c60a05160601c614d726200075c600039806118955280612ebf525080610f775280613bf25280613cde5280613d055280613e105280613e375250614d726000f3fe6080604052600436106102345760003560e01c80635342acb41161012e57806395d89b41116100ab578063dd62ed3e1161006f578063dd62ed3e14610c4f578063e82bef2914610cd4578063ea2f0b3714610d15578063f0f165af14610d66578063f2fde38b14610da15761023b565b806395d89b4114610a65578063a457c2d714610af5578063a9059cbb14610b66578063c49b9a8014610bd7578063d543dbeb14610c145761023b565b806385dc3004116100f257806385dc30041461091a57806388f820201461096b5780638a8c523c146109d25780638da5cb5b146109e95780638ee88c5314610a2a5761023b565b80635342acb4146107e15780636bc87c3a1461084857806370a0823114610873578063715018a6146108d85780637d1db4a5146108ef5761023b565b80633685d419116101bc5780634549b039116101805780634549b0391461069a57806349bd5a5e146106f55780634a74bb02146107365780634ada218b1461076357806352390c02146107905761023b565b80633685d4191461052157806339509351146105725780633b124fe7146105e35780633bd5d1731461060e578063437823ec146106495761023b565b80631694505e116102035780631694505e146103a757806318160ddd146103e857806323b872dd146104135780632d838119146104a4578063313ce567146104f35761023b565b8063061c82d01461024057806306fdde031461027b578063095ea7b31461030b57806313114a9d1461037c5761023b565b3661023b57005b600080fd5b34801561024c57600080fd5b506102796004803603602081101561026357600080fd5b8101908080359060200190929190505050610df2565b005b34801561028757600080fd5b50610290610eab565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102d05780820151818401526020810190506102b5565b50505050905090810190601f1680156102fd5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561031757600080fd5b506103646004803603604081101561032e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f4d565b60405180821515815260200191505060405180910390f35b34801561038857600080fd5b50610391610f6b565b6040518082815260200191505060405180910390f35b3480156103b357600080fd5b506103bc610f75565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103f457600080fd5b506103fd610f99565b6040518082815260200191505060405180910390f35b34801561041f57600080fd5b5061048c6004803603606081101561043657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fa3565b60405180821515815260200191505060405180910390f35b3480156104b057600080fd5b506104dd600480360360208110156104c757600080fd5b810190808035906020019092919050505061107c565b6040518082815260200191505060405180910390f35b3480156104ff57600080fd5b50610508611100565b604051808260ff16815260200191505060405180910390f35b34801561052d57600080fd5b506105706004803603602081101561054457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611117565b005b34801561057e57600080fd5b506105cb6004803603604081101561059557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611488565b60405180821515815260200191505060405180910390f35b3480156105ef57600080fd5b506105f861153b565b6040518082815260200191505060405180910390f35b34801561061a57600080fd5b506106476004803603602081101561063157600080fd5b8101908080359060200190929190505050611541565b005b34801561065557600080fd5b506106986004803603602081101561066c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506116d2565b005b3480156106a657600080fd5b506106df600480360360408110156106bd57600080fd5b81019080803590602001909291908035151590602001909291905050506117dc565b6040518082815260200191505060405180910390f35b34801561070157600080fd5b5061070a611893565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561074257600080fd5b5061074b6118b7565b60405180821515815260200191505060405180910390f35b34801561076f57600080fd5b506107786118ca565b60405180821515815260200191505060405180910390f35b34801561079c57600080fd5b506107df600480360360208110156107b357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506118dd565b005b3480156107ed57600080fd5b506108306004803603602081101561080457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611bde565b60405180821515815260200191505060405180910390f35b34801561085457600080fd5b5061085d611c34565b6040518082815260200191505060405180910390f35b34801561087f57600080fd5b506108c26004803603602081101561089657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c3a565b6040518082815260200191505060405180910390f35b3480156108e457600080fd5b506108ed611d25565b005b3480156108fb57600080fd5b50610904611e92565b6040518082815260200191505060405180910390f35b34801561092657600080fd5b506109696004803603602081101561093d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611e98565b005b34801561097757600080fd5b506109ba6004803603602081101561098e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611f8b565b60405180821515815260200191505060405180910390f35b3480156109de57600080fd5b506109e7611fe1565b005b3480156109f557600080fd5b506109fe6120ad565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610a3657600080fd5b50610a6360048036036020811015610a4d57600080fd5b81019080803590602001909291905050506120d6565b005b348015610a7157600080fd5b50610a7a61218f565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610aba578082015181840152602081019050610a9f565b50505050905090810190601f168015610ae75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610b0157600080fd5b50610b4e60048036036040811015610b1857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612231565b60405180821515815260200191505060405180910390f35b348015610b7257600080fd5b50610bbf60048036036040811015610b8957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506122fe565b60405180821515815260200191505060405180910390f35b348015610be357600080fd5b50610c1260048036036020811015610bfa57600080fd5b8101908080351515906020019092919050505061231c565b005b348015610c2057600080fd5b50610c4d60048036036020811015610c3757600080fd5b8101908080359060200190929190505050612421565b005b348015610c5b57600080fd5b50610cbe60048036036040811015610c7257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612501565b6040518082815260200191505060405180910390f35b348015610ce057600080fd5b50610ce9612588565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610d2157600080fd5b50610d6460048036036020811015610d3857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506125ae565b005b348015610d7257600080fd5b50610d9f60048036036020811015610d8957600080fd5b81019080803590602001909291905050506126b8565b005b348015610dad57600080fd5b50610df060048036036020811015610dc457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612771565b005b610dfa612963565b73ffffffffffffffffffffffffffffffffffffffff16610e186120ad565b73ffffffffffffffffffffffffffffffffffffffff1614610ea1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600d8190555050565b6060600a8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610f435780601f10610f1857610100808354040283529160200191610f43565b820191906000526020600020905b815481529060010190602001808311610f2657829003601f168201915b5050505050905090565b6000610f61610f5a612963565b848461296b565b6001905092915050565b6000600954905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600754905090565b6000610fb0848484612b62565b61107184610fbc612963565b61106c85604051806060016040528060288152602001614c5260289139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611022612963565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612fff9092919063ffffffff16565b61296b565b600190509392505050565b60006008548211156110d9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614b97602a913960400191505060405180910390fd5b60006110e36130b9565b90506110f881846130e490919063ffffffff16565b915050919050565b6000600c60009054906101000a900460ff16905090565b61111f612963565b73ffffffffffffffffffffffffffffffffffffffff1661113d6120ad565b73ffffffffffffffffffffffffffffffffffffffff16146111c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b600680549050811015611484578173ffffffffffffffffffffffffffffffffffffffff16600682815481106112b957fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156114775760066001600680549050038154811061131557fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166006828154811061134d57fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600680548061143d57fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055611484565b8080600101915050611288565b5050565b6000611531611495612963565b8461152c85600360006114a6612963565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461316d90919063ffffffff16565b61296b565b6001905092915050565b600d5481565b600061154b612963565b9050600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156115f0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614cec602c913960400191505060405180910390fd5b60006115fb836131f5565b5050505050905061165481600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461325190919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506116ac8160085461325190919063ffffffff16565b6008819055506116c78360095461316d90919063ffffffff16565b600981905550505050565b6116da612963565b73ffffffffffffffffffffffffffffffffffffffff166116f86120ad565b73ffffffffffffffffffffffffffffffffffffffff1614611781576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600754831115611856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b81611876576000611866846131f5565b505050505090508091505061188d565b6000611881846131f5565b50505050915050809150505b92915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160159054906101000a900460ff1681565b601160169054906101000a900460ff1681565b6118e5612963565b73ffffffffffffffffffffffffffffffffffffffff166119036120ad565b73ffffffffffffffffffffffffffffffffffffffff161461198c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611a4c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611b2057611adc600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461107c565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506006819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600f5481565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611cd557600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050611d20565b611d1d600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461107c565b90505b919050565b611d2d612963565b73ffffffffffffffffffffffffffffffffffffffff16611d4b6120ad565b73ffffffffffffffffffffffffffffffffffffffff1614611dd4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60125481565b611ea0612963565b73ffffffffffffffffffffffffffffffffffffffff16611ebe6120ad565b73ffffffffffffffffffffffffffffffffffffffff1614611f47576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611fe9612963565b73ffffffffffffffffffffffffffffffffffffffff166120076120ad565b73ffffffffffffffffffffffffffffffffffffffff1614612090576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001601160166101000a81548160ff021916908315150217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6120de612963565b73ffffffffffffffffffffffffffffffffffffffff166120fc6120ad565b73ffffffffffffffffffffffffffffffffffffffff1614612185576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600f8190555050565b6060600b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156122275780601f106121fc57610100808354040283529160200191612227565b820191906000526020600020905b81548152906001019060200180831161220a57829003601f168201915b5050505050905090565b60006122f461223e612963565b846122ef85604051806060016040528060258152602001614d186025913960036000612268612963565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612fff9092919063ffffffff16565b61296b565b6001905092915050565b600061231261230b612963565b8484612b62565b6001905092915050565b612324612963565b73ffffffffffffffffffffffffffffffffffffffff166123426120ad565b73ffffffffffffffffffffffffffffffffffffffff16146123cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601160156101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1598160405180821515815260200191505060405180910390a150565b612429612963565b73ffffffffffffffffffffffffffffffffffffffff166124476120ad565b73ffffffffffffffffffffffffffffffffffffffff16146124d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6124f860646124ea836007546132d490919063ffffffff16565b6130e490919063ffffffff16565b60128190555050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6125b6612963565b73ffffffffffffffffffffffffffffffffffffffff166125d46120ad565b73ffffffffffffffffffffffffffffffffffffffff161461265d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6126c0612963565b73ffffffffffffffffffffffffffffffffffffffff166126de6120ad565b73ffffffffffffffffffffffffffffffffffffffff1614612767576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060138190555050565b612779612963565b73ffffffffffffffffffffffffffffffffffffffff166127976120ad565b73ffffffffffffffffffffffffffffffffffffffff1614612820576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156128a6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180614bc16026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129f1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180614cc86024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614be76022913960400191505060405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180614ca36025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180614b746023913960400191505060405180910390fd5b60008111612cc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180614c7a6029913960400191505060405180910390fd5b612ccf6120ad565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612d3d5750612d0d6120ad565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612d9e57601254811115612d9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180614c096028913960400191505060405180910390fd5b5b612da66120ad565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612dee5750601160169054906101000a900460ff16155b15612e7657601160169054906101000a900460ff16612e75576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f54726164696e67206973206e6f7420656e61626c65642079657400000000000081525060200191505060405180910390fd5b5b6000612e8130611c3a565b90506012548110612e925760125490505b60006013548210159050808015612eb65750601160149054906101000a900460ff16155b8015612f0e57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b8015612f265750601160159054906101000a900460ff165b15612f3a576013549150612f398261335a565b5b600060019050600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612fe15750600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612feb57600090505b612ff7868686846134d7565b505050505050565b60008383111582906130ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613071578082015181840152602081019050613056565b50505050905090810190601f16801561309e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5082840390509392505050565b60008060006130c66137e8565b915091506130dd81836130e490919063ffffffff16565b9250505090565b600080821161315b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060200191505060405180910390fd5b81838161316457fe5b04905092915050565b6000808284019050838110156131eb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600080600080600080600080600061320c8a613a79565b925092509250600080600061322a8d86866132256130b9565b613ad3565b9250925092508282828888889b509b509b509b509b509b5050505050505091939550919395565b6000828211156132c9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b818303905092915050565b6000808314156132e75760009050613354565b60008284029050828482816132f857fe5b041461334f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180614c316021913960400191505060405180910390fd5b809150505b92915050565b6001601160146101000a81548160ff021916908315150217905550600061338b6006836130e490919063ffffffff16565b905060006133a36005836132d490919063ffffffff16565b905060006133ba828561325190919063ffffffff16565b905060004790506133ca83613b5c565b60006133df824761325190919063ffffffff16565b905060006133f76005836130e490919063ffffffff16565b90506134038482613e0a565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561346b573d6000803e3d6000fd5b507f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56185838660405180848152602001838152602001828152602001935050505060405180910390a15050505050506000601160146101000a81548160ff02191690831515021790555050565b806134e5576134e4613f5b565b5b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156135885750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561359d57613598848484613f9e565b6137d4565b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156136405750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613655576136508484846141fe565b6137d3565b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156136f95750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561370e5761370984848461445e565b6137d2565b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156137b05750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156137c5576137c0848484614629565b6137d1565b6137d084848461445e565b5b5b5b5b806137e2576137e161491e565b5b50505050565b600080600060085490506000600754905060005b600680549050811015613a3c5782600160006006848154811061381b57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180613902575081600260006006848154811061389a57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b156139195760085460075494509450505050613a75565b6139a2600160006006848154811061392d57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548461325190919063ffffffff16565b9250613a2d60026000600684815481106139b857fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548361325190919063ffffffff16565b915080806001019150506137fc565b50613a546007546008546130e490919063ffffffff16565b821015613a6c57600854600754935093505050613a75565b81819350935050505b9091565b600080600080613a8885614932565b90506000613a9586614963565b90506000613abe82613ab0858a61325190919063ffffffff16565b61325190919063ffffffff16565b90508083839550955095505050509193909250565b600080600080613aec85896132d490919063ffffffff16565b90506000613b0386896132d490919063ffffffff16565b90506000613b1a87896132d490919063ffffffff16565b90506000613b4382613b35858761325190919063ffffffff16565b61325190919063ffffffff16565b9050838184965096509650505050509450945094915050565b6060600267ffffffffffffffff81118015613b7657600080fd5b50604051908082528060200260200182016040528015613ba55781602001602082028036833780820191505090505b5090503081600081518110613bb657fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613c5657600080fd5b505afa158015613c6a573d6000803e3d6000fd5b505050506040513d6020811015613c8057600080fd5b810190808051906020019092919050505081600181518110613c9e57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613d03307f00000000000000000000000000000000000000000000000000000000000000008461296b565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015613dc5578082015181840152602081019050613daa565b505050509050019650505050505050600060405180830381600087803b158015613dee57600080fd5b505af1158015613e02573d6000803e3d6000fd5b505050505050565b613e35307f00000000000000000000000000000000000000000000000000000000000000008461296b565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080613e7f6120ad565b426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b158015613f0457600080fd5b505af1158015613f18573d6000803e3d6000fd5b50505050506040513d6060811015613f2f57600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b6000600d54148015613f6f57506000600f54145b15613f7957613f9c565b600d54600e81905550600f546010819055506000600d819055506000600f819055505b565b600080600080600080613fb0876131f5565b95509550955095509550955061400e87600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461325190919063ffffffff16565b600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506140a386600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461325190919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061413885600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461316d90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061418481614994565b61418e8483614b39565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614210876131f5565b95509550955095509550955061426e86600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461325190919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061430383600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461316d90919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061439885600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461316d90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506143e481614994565b6143ee8483614b39565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614470876131f5565b9550955095509550955095506144ce86600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461325190919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061456385600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461316d90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506145af81614994565b6145b98483614b39565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b60008060008060008061463b876131f5565b95509550955095509550955061469987600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461325190919063ffffffff16565b600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061472e86600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461325190919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506147c383600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461316d90919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061485885600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461316d90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506148a481614994565b6148ae8483614b39565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600e54600d81905550601054600f81905550565b600061495c606461494e600d54856132d490919063ffffffff16565b6130e490919063ffffffff16565b9050919050565b600061498d606461497f600f54856132d490919063ffffffff16565b6130e490919063ffffffff16565b9050919050565b600061499e6130b9565b905060006149b582846132d490919063ffffffff16565b9050614a0981600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461316d90919063ffffffff16565b600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600560003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615614b3457614af083600260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461316d90919063ffffffff16565b600260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b614b4e8260085461325190919063ffffffff16565b600881905550614b698160095461316d90919063ffffffff16565b600981905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a3538b8ad8f39bebbb2aa569200f9940fe22c3ad0ce12c1b178d78fe8978bfb264736f6c634300060c0033

Deployed Bytecode

0x6080604052600436106102345760003560e01c80635342acb41161012e57806395d89b41116100ab578063dd62ed3e1161006f578063dd62ed3e14610c4f578063e82bef2914610cd4578063ea2f0b3714610d15578063f0f165af14610d66578063f2fde38b14610da15761023b565b806395d89b4114610a65578063a457c2d714610af5578063a9059cbb14610b66578063c49b9a8014610bd7578063d543dbeb14610c145761023b565b806385dc3004116100f257806385dc30041461091a57806388f820201461096b5780638a8c523c146109d25780638da5cb5b146109e95780638ee88c5314610a2a5761023b565b80635342acb4146107e15780636bc87c3a1461084857806370a0823114610873578063715018a6146108d85780637d1db4a5146108ef5761023b565b80633685d419116101bc5780634549b039116101805780634549b0391461069a57806349bd5a5e146106f55780634a74bb02146107365780634ada218b1461076357806352390c02146107905761023b565b80633685d4191461052157806339509351146105725780633b124fe7146105e35780633bd5d1731461060e578063437823ec146106495761023b565b80631694505e116102035780631694505e146103a757806318160ddd146103e857806323b872dd146104135780632d838119146104a4578063313ce567146104f35761023b565b8063061c82d01461024057806306fdde031461027b578063095ea7b31461030b57806313114a9d1461037c5761023b565b3661023b57005b600080fd5b34801561024c57600080fd5b506102796004803603602081101561026357600080fd5b8101908080359060200190929190505050610df2565b005b34801561028757600080fd5b50610290610eab565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102d05780820151818401526020810190506102b5565b50505050905090810190601f1680156102fd5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561031757600080fd5b506103646004803603604081101561032e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f4d565b60405180821515815260200191505060405180910390f35b34801561038857600080fd5b50610391610f6b565b6040518082815260200191505060405180910390f35b3480156103b357600080fd5b506103bc610f75565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103f457600080fd5b506103fd610f99565b6040518082815260200191505060405180910390f35b34801561041f57600080fd5b5061048c6004803603606081101561043657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fa3565b60405180821515815260200191505060405180910390f35b3480156104b057600080fd5b506104dd600480360360208110156104c757600080fd5b810190808035906020019092919050505061107c565b6040518082815260200191505060405180910390f35b3480156104ff57600080fd5b50610508611100565b604051808260ff16815260200191505060405180910390f35b34801561052d57600080fd5b506105706004803603602081101561054457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611117565b005b34801561057e57600080fd5b506105cb6004803603604081101561059557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611488565b60405180821515815260200191505060405180910390f35b3480156105ef57600080fd5b506105f861153b565b6040518082815260200191505060405180910390f35b34801561061a57600080fd5b506106476004803603602081101561063157600080fd5b8101908080359060200190929190505050611541565b005b34801561065557600080fd5b506106986004803603602081101561066c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506116d2565b005b3480156106a657600080fd5b506106df600480360360408110156106bd57600080fd5b81019080803590602001909291908035151590602001909291905050506117dc565b6040518082815260200191505060405180910390f35b34801561070157600080fd5b5061070a611893565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561074257600080fd5b5061074b6118b7565b60405180821515815260200191505060405180910390f35b34801561076f57600080fd5b506107786118ca565b60405180821515815260200191505060405180910390f35b34801561079c57600080fd5b506107df600480360360208110156107b357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506118dd565b005b3480156107ed57600080fd5b506108306004803603602081101561080457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611bde565b60405180821515815260200191505060405180910390f35b34801561085457600080fd5b5061085d611c34565b6040518082815260200191505060405180910390f35b34801561087f57600080fd5b506108c26004803603602081101561089657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c3a565b6040518082815260200191505060405180910390f35b3480156108e457600080fd5b506108ed611d25565b005b3480156108fb57600080fd5b50610904611e92565b6040518082815260200191505060405180910390f35b34801561092657600080fd5b506109696004803603602081101561093d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611e98565b005b34801561097757600080fd5b506109ba6004803603602081101561098e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611f8b565b60405180821515815260200191505060405180910390f35b3480156109de57600080fd5b506109e7611fe1565b005b3480156109f557600080fd5b506109fe6120ad565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610a3657600080fd5b50610a6360048036036020811015610a4d57600080fd5b81019080803590602001909291905050506120d6565b005b348015610a7157600080fd5b50610a7a61218f565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610aba578082015181840152602081019050610a9f565b50505050905090810190601f168015610ae75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610b0157600080fd5b50610b4e60048036036040811015610b1857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612231565b60405180821515815260200191505060405180910390f35b348015610b7257600080fd5b50610bbf60048036036040811015610b8957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506122fe565b60405180821515815260200191505060405180910390f35b348015610be357600080fd5b50610c1260048036036020811015610bfa57600080fd5b8101908080351515906020019092919050505061231c565b005b348015610c2057600080fd5b50610c4d60048036036020811015610c3757600080fd5b8101908080359060200190929190505050612421565b005b348015610c5b57600080fd5b50610cbe60048036036040811015610c7257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612501565b6040518082815260200191505060405180910390f35b348015610ce057600080fd5b50610ce9612588565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610d2157600080fd5b50610d6460048036036020811015610d3857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506125ae565b005b348015610d7257600080fd5b50610d9f60048036036020811015610d8957600080fd5b81019080803590602001909291905050506126b8565b005b348015610dad57600080fd5b50610df060048036036020811015610dc457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612771565b005b610dfa612963565b73ffffffffffffffffffffffffffffffffffffffff16610e186120ad565b73ffffffffffffffffffffffffffffffffffffffff1614610ea1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600d8190555050565b6060600a8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610f435780601f10610f1857610100808354040283529160200191610f43565b820191906000526020600020905b815481529060010190602001808311610f2657829003601f168201915b5050505050905090565b6000610f61610f5a612963565b848461296b565b6001905092915050565b6000600954905090565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600754905090565b6000610fb0848484612b62565b61107184610fbc612963565b61106c85604051806060016040528060288152602001614c5260289139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611022612963565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612fff9092919063ffffffff16565b61296b565b600190509392505050565b60006008548211156110d9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614b97602a913960400191505060405180910390fd5b60006110e36130b9565b90506110f881846130e490919063ffffffff16565b915050919050565b6000600c60009054906101000a900460ff16905090565b61111f612963565b73ffffffffffffffffffffffffffffffffffffffff1661113d6120ad565b73ffffffffffffffffffffffffffffffffffffffff16146111c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b600680549050811015611484578173ffffffffffffffffffffffffffffffffffffffff16600682815481106112b957fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156114775760066001600680549050038154811061131557fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166006828154811061134d57fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600680548061143d57fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055611484565b8080600101915050611288565b5050565b6000611531611495612963565b8461152c85600360006114a6612963565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461316d90919063ffffffff16565b61296b565b6001905092915050565b600d5481565b600061154b612963565b9050600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156115f0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614cec602c913960400191505060405180910390fd5b60006115fb836131f5565b5050505050905061165481600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461325190919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506116ac8160085461325190919063ffffffff16565b6008819055506116c78360095461316d90919063ffffffff16565b600981905550505050565b6116da612963565b73ffffffffffffffffffffffffffffffffffffffff166116f86120ad565b73ffffffffffffffffffffffffffffffffffffffff1614611781576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600754831115611856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b81611876576000611866846131f5565b505050505090508091505061188d565b6000611881846131f5565b50505050915050809150505b92915050565b7f000000000000000000000000eef8ff7a45ce39e1496f406c804122b69682f8ab81565b601160159054906101000a900460ff1681565b601160169054906101000a900460ff1681565b6118e5612963565b73ffffffffffffffffffffffffffffffffffffffff166119036120ad565b73ffffffffffffffffffffffffffffffffffffffff161461198c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611a4c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611b2057611adc600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461107c565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506006819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600f5481565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611cd557600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050611d20565b611d1d600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461107c565b90505b919050565b611d2d612963565b73ffffffffffffffffffffffffffffffffffffffff16611d4b6120ad565b73ffffffffffffffffffffffffffffffffffffffff1614611dd4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60125481565b611ea0612963565b73ffffffffffffffffffffffffffffffffffffffff16611ebe6120ad565b73ffffffffffffffffffffffffffffffffffffffff1614611f47576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611fe9612963565b73ffffffffffffffffffffffffffffffffffffffff166120076120ad565b73ffffffffffffffffffffffffffffffffffffffff1614612090576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001601160166101000a81548160ff021916908315150217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6120de612963565b73ffffffffffffffffffffffffffffffffffffffff166120fc6120ad565b73ffffffffffffffffffffffffffffffffffffffff1614612185576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600f8190555050565b6060600b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156122275780601f106121fc57610100808354040283529160200191612227565b820191906000526020600020905b81548152906001019060200180831161220a57829003601f168201915b5050505050905090565b60006122f461223e612963565b846122ef85604051806060016040528060258152602001614d186025913960036000612268612963565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612fff9092919063ffffffff16565b61296b565b6001905092915050565b600061231261230b612963565b8484612b62565b6001905092915050565b612324612963565b73ffffffffffffffffffffffffffffffffffffffff166123426120ad565b73ffffffffffffffffffffffffffffffffffffffff16146123cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601160156101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1598160405180821515815260200191505060405180910390a150565b612429612963565b73ffffffffffffffffffffffffffffffffffffffff166124476120ad565b73ffffffffffffffffffffffffffffffffffffffff16146124d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6124f860646124ea836007546132d490919063ffffffff16565b6130e490919063ffffffff16565b60128190555050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6125b6612963565b73ffffffffffffffffffffffffffffffffffffffff166125d46120ad565b73ffffffffffffffffffffffffffffffffffffffff161461265d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6126c0612963565b73ffffffffffffffffffffffffffffffffffffffff166126de6120ad565b73ffffffffffffffffffffffffffffffffffffffff1614612767576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060138190555050565b612779612963565b73ffffffffffffffffffffffffffffffffffffffff166127976120ad565b73ffffffffffffffffffffffffffffffffffffffff1614612820576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156128a6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180614bc16026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129f1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180614cc86024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614be76022913960400191505060405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180614ca36025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180614b746023913960400191505060405180910390fd5b60008111612cc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180614c7a6029913960400191505060405180910390fd5b612ccf6120ad565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612d3d5750612d0d6120ad565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612d9e57601254811115612d9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180614c096028913960400191505060405180910390fd5b5b612da66120ad565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612dee5750601160169054906101000a900460ff16155b15612e7657601160169054906101000a900460ff16612e75576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f54726164696e67206973206e6f7420656e61626c65642079657400000000000081525060200191505060405180910390fd5b5b6000612e8130611c3a565b90506012548110612e925760125490505b60006013548210159050808015612eb65750601160149054906101000a900460ff16155b8015612f0e57507f000000000000000000000000eef8ff7a45ce39e1496f406c804122b69682f8ab73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b8015612f265750601160159054906101000a900460ff165b15612f3a576013549150612f398261335a565b5b600060019050600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612fe15750600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612feb57600090505b612ff7868686846134d7565b505050505050565b60008383111582906130ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613071578082015181840152602081019050613056565b50505050905090810190601f16801561309e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5082840390509392505050565b60008060006130c66137e8565b915091506130dd81836130e490919063ffffffff16565b9250505090565b600080821161315b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060200191505060405180910390fd5b81838161316457fe5b04905092915050565b6000808284019050838110156131eb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600080600080600080600080600061320c8a613a79565b925092509250600080600061322a8d86866132256130b9565b613ad3565b9250925092508282828888889b509b509b509b509b509b5050505050505091939550919395565b6000828211156132c9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b818303905092915050565b6000808314156132e75760009050613354565b60008284029050828482816132f857fe5b041461334f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180614c316021913960400191505060405180910390fd5b809150505b92915050565b6001601160146101000a81548160ff021916908315150217905550600061338b6006836130e490919063ffffffff16565b905060006133a36005836132d490919063ffffffff16565b905060006133ba828561325190919063ffffffff16565b905060004790506133ca83613b5c565b60006133df824761325190919063ffffffff16565b905060006133f76005836130e490919063ffffffff16565b90506134038482613e0a565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561346b573d6000803e3d6000fd5b507f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56185838660405180848152602001838152602001828152602001935050505060405180910390a15050505050506000601160146101000a81548160ff02191690831515021790555050565b806134e5576134e4613f5b565b5b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156135885750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561359d57613598848484613f9e565b6137d4565b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156136405750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613655576136508484846141fe565b6137d3565b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156136f95750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561370e5761370984848461445e565b6137d2565b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156137b05750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156137c5576137c0848484614629565b6137d1565b6137d084848461445e565b5b5b5b5b806137e2576137e161491e565b5b50505050565b600080600060085490506000600754905060005b600680549050811015613a3c5782600160006006848154811061381b57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180613902575081600260006006848154811061389a57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b156139195760085460075494509450505050613a75565b6139a2600160006006848154811061392d57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548461325190919063ffffffff16565b9250613a2d60026000600684815481106139b857fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548361325190919063ffffffff16565b915080806001019150506137fc565b50613a546007546008546130e490919063ffffffff16565b821015613a6c57600854600754935093505050613a75565b81819350935050505b9091565b600080600080613a8885614932565b90506000613a9586614963565b90506000613abe82613ab0858a61325190919063ffffffff16565b61325190919063ffffffff16565b90508083839550955095505050509193909250565b600080600080613aec85896132d490919063ffffffff16565b90506000613b0386896132d490919063ffffffff16565b90506000613b1a87896132d490919063ffffffff16565b90506000613b4382613b35858761325190919063ffffffff16565b61325190919063ffffffff16565b9050838184965096509650505050509450945094915050565b6060600267ffffffffffffffff81118015613b7657600080fd5b50604051908082528060200260200182016040528015613ba55781602001602082028036833780820191505090505b5090503081600081518110613bb657fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613c5657600080fd5b505afa158015613c6a573d6000803e3d6000fd5b505050506040513d6020811015613c8057600080fd5b810190808051906020019092919050505081600181518110613c9e57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613d03307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461296b565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015613dc5578082015181840152602081019050613daa565b505050509050019650505050505050600060405180830381600087803b158015613dee57600080fd5b505af1158015613e02573d6000803e3d6000fd5b505050505050565b613e35307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461296b565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080613e7f6120ad565b426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b158015613f0457600080fd5b505af1158015613f18573d6000803e3d6000fd5b50505050506040513d6060811015613f2f57600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b6000600d54148015613f6f57506000600f54145b15613f7957613f9c565b600d54600e81905550600f546010819055506000600d819055506000600f819055505b565b600080600080600080613fb0876131f5565b95509550955095509550955061400e87600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461325190919063ffffffff16565b600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506140a386600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461325190919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061413885600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461316d90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061418481614994565b61418e8483614b39565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614210876131f5565b95509550955095509550955061426e86600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461325190919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061430383600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461316d90919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061439885600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461316d90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506143e481614994565b6143ee8483614b39565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614470876131f5565b9550955095509550955095506144ce86600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461325190919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061456385600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461316d90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506145af81614994565b6145b98483614b39565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b60008060008060008061463b876131f5565b95509550955095509550955061469987600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461325190919063ffffffff16565b600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061472e86600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461325190919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506147c383600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461316d90919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061485885600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461316d90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506148a481614994565b6148ae8483614b39565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600e54600d81905550601054600f81905550565b600061495c606461494e600d54856132d490919063ffffffff16565b6130e490919063ffffffff16565b9050919050565b600061498d606461497f600f54856132d490919063ffffffff16565b6130e490919063ffffffff16565b9050919050565b600061499e6130b9565b905060006149b582846132d490919063ffffffff16565b9050614a0981600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461316d90919063ffffffff16565b600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600560003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615614b3457614af083600260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461316d90919063ffffffff16565b600260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b614b4e8260085461325190919063ffffffff16565b600881905550614b698160095461316d90919063ffffffff16565b600981905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a3538b8ad8f39bebbb2aa569200f9940fe22c3ad0ce12c1b178d78fe8978bfb264736f6c634300060c0033

Deployed Bytecode Sourcemap

29248:17251:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36467:98;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;31544:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32456:161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;33577:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30196:51;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31821:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32625:313;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;34501:253;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31730:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;35103:479;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32946:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30012:26;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33672:377;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;36230:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34057:436;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30254:38;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30415:40;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30462:34;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;34762:333;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;40676:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30095:32;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31924:198;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;10670:148;;;;;;;;;;;;;:::i;:::-;;30505:53;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;36899:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;33449:120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;37380:86;;;;;;;;;;;;;:::i;:::-;;10019:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;36769:122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;31635:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33172:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32130:167;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;37201:171;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;37031:162;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32305:143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30299:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;36349:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;36573:188;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;10973:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;36467:98;10250:12;:10;:12::i;:::-;10239:23;;:7;:5;:7::i;:::-;:23;;;10231:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36551:6:::1;36541:7;:16;;;;36467:98:::0;:::o;31544:83::-;31581:13;31614:5;31607:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31544:83;:::o;32456:161::-;32531:4;32548:39;32557:12;:10;:12::i;:::-;32571:7;32580:6;32548:8;:39::i;:::-;32605:4;32598:11;;32456:161;;;;:::o;33577:87::-;33619:7;33646:10;;33639:17;;33577:87;:::o;30196:51::-;;;:::o;31821:95::-;31874:7;31901;;31894:14;;31821:95;:::o;32625:313::-;32723:4;32740:36;32750:6;32758:9;32769:6;32740:9;:36::i;:::-;32787:121;32796:6;32804:12;:10;:12::i;:::-;32818:89;32856:6;32818:89;;;;;;;;;;;;;;;;;:11;:19;32830:6;32818:19;;;;;;;;;;;;;;;:33;32838:12;:10;:12::i;:::-;32818:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;32787:8;:121::i;:::-;32926:4;32919:11;;32625:313;;;;;:::o;34501:253::-;34567:7;34606;;34595;:18;;34587:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34671:19;34694:10;:8;:10::i;:::-;34671:33;;34722:24;34734:11;34722:7;:11;;:24;;;;:::i;:::-;34715:31;;;34501:253;;;:::o;31730:83::-;31771:5;31796:9;;;;;;;;;;;31789:16;;31730:83;:::o;35103:479::-;10250:12;:10;:12::i;:::-;10239:23;;:7;:5;:7::i;:::-;:23;;;10231:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35185:11:::1;:20;35197:7;35185:20;;;;;;;;;;;;;;;;;;;;;;;;;35177:60;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;35253:9;35248:327;35272:9;:16;;;;35268:1;:20;35248:327;;;35330:7;35314:23;;:9;35324:1;35314:12;;;;;;;;;;;;;;;;;;;;;;;;;:23;;;35310:254;;;35373:9;35402:1;35383:9;:16;;;;:20;35373:31;;;;;;;;;;;;;;;;;;;;;;;;;35358:9;35368:1;35358:12;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35442:1;35423:7;:16;35431:7;35423:16;;;;;;;;;;;;;;;:20;;;;35485:5;35462:11;:20;35474:7;35462:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;35509:9;:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35543:5;;35310:254;35290:3;;;;;;;35248:327;;;;35103:479:::0;:::o;32946:218::-;33034:4;33051:83;33060:12;:10;:12::i;:::-;33074:7;33083:50;33122:10;33083:11;:25;33095:12;:10;:12::i;:::-;33083:25;;;;;;;;;;;;;;;:34;33109:7;33083:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;33051:8;:83::i;:::-;33152:4;33145:11;;32946:218;;;;:::o;30012:26::-;;;;:::o;33672:377::-;33724:14;33741:12;:10;:12::i;:::-;33724:29;;33773:11;:19;33785:6;33773:19;;;;;;;;;;;;;;;;;;;;;;;;;33772:20;33764:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33853:15;33877:19;33888:7;33877:10;:19::i;:::-;33852:44;;;;;;;33925:28;33945:7;33925;:15;33933:6;33925:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;33907:7;:15;33915:6;33907:15;;;;;;;;;;;;;;;:46;;;;33974:20;33986:7;33974;;:11;;:20;;;;:::i;:::-;33964:7;:30;;;;34018:23;34033:7;34018:10;;:14;;:23;;;;:::i;:::-;34005:10;:36;;;;33672:377;;;:::o;36230:111::-;10250:12;:10;:12::i;:::-;10239:23;;:7;:5;:7::i;:::-;:23;;;10231:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36329:4:::1;36299:18;:27;36318:7;36299:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;36230:111:::0;:::o;34057:436::-;34147:7;34186;;34175;:18;;34167:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34245:17;34240:246;;34280:15;34304:19;34315:7;34304:10;:19::i;:::-;34279:44;;;;;;;34345:7;34338:14;;;;;34240:246;34387:23;34418:19;34429:7;34418:10;:19::i;:::-;34385:52;;;;;;;34459:15;34452:22;;;34057:436;;;;;:::o;30254:38::-;;;:::o;30415:40::-;;;;;;;;;;;;;:::o;30462:34::-;;;;;;;;;;;;;:::o;34762:333::-;10250:12;:10;:12::i;:::-;10239:23;;:7;:5;:7::i;:::-;:23;;;10231:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34845:11:::1;:20;34857:7;34845:20;;;;;;;;;;;;;;;;;;;;;;;;;34844:21;34836:61;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;34930:1;34911:7;:16;34919:7;34911:16;;;;;;;;;;;;;;;;:20;34908:108;;;34967:37;34987:7;:16;34995:7;34987:16;;;;;;;;;;;;;;;;34967:19;:37::i;:::-;34948:7;:16;34956:7;34948:16;;;;;;;;;;;;;;;:56;;;;34908:108;35049:4;35026:11;:20;35038:7;35026:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;35064:9;35079:7;35064:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34762:333:::0;:::o;40676:123::-;40740:4;40764:18;:27;40783:7;40764:27;;;;;;;;;;;;;;;;;;;;;;;;;40757:34;;40676:123;;;:::o;30095:32::-;;;;:::o;31924:198::-;31990:7;32014:11;:20;32026:7;32014:20;;;;;;;;;;;;;;;;;;;;;;;;;32010:49;;;32043:7;:16;32051:7;32043:16;;;;;;;;;;;;;;;;32036:23;;;;32010:49;32077:37;32097:7;:16;32105:7;32097:16;;;;;;;;;;;;;;;;32077:19;:37::i;:::-;32070:44;;31924:198;;;;:::o;10670:148::-;10250:12;:10;:12::i;:::-;10239:23;;:7;:5;:7::i;:::-;:23;;;10231:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10777:1:::1;10740:40;;10761:6;::::0;::::1;;;;;;;;10740:40;;;;;;;;;;;;10808:1;10791:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;10670:148::o:0;30505:53::-;;;;:::o;36899:124::-;10250:12;:10;:12::i;:::-;10239:23;;:7;:5;:7::i;:::-;:23;;;10231:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37001:14:::1;36987:11;;:28;;;;;;;;;;;;;;;;;;36899:124:::0;:::o;33449:120::-;33517:4;33541:11;:20;33553:7;33541:20;;;;;;;;;;;;;;;;;;;;;;;;;33534:27;;33449:120;;;:::o;37380:86::-;10250:12;:10;:12::i;:::-;10239:23;;:7;:5;:7::i;:::-;:23;;;10231:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37454:4:::1;37437:14;;:21;;;;;;;;;;;;;;;;;;37380:86::o:0;10019:87::-;10065:7;10092:6;;;;;;;;;;;10085:13;;10019:87;:::o;36769:122::-;10250:12;:10;:12::i;:::-;10239:23;;:7;:5;:7::i;:::-;:23;;;10231:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36871:12:::1;36855:13;:28;;;;36769:122:::0;:::o;31635:87::-;31674:13;31707:7;31700:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31635:87;:::o;33172:269::-;33265:4;33282:129;33291:12;:10;:12::i;:::-;33305:7;33314:96;33353:15;33314:96;;;;;;;;;;;;;;;;;:11;:25;33326:12;:10;:12::i;:::-;33314:25;;;;;;;;;;;;;;;:34;33340:7;33314:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;33282:8;:129::i;:::-;33429:4;33422:11;;33172:269;;;;:::o;32130:167::-;32208:4;32225:42;32235:12;:10;:12::i;:::-;32249:9;32260:6;32225:9;:42::i;:::-;32285:4;32278:11;;32130:167;;;;:::o;37201:171::-;10250:12;:10;:12::i;:::-;10239:23;;:7;:5;:7::i;:::-;:23;;;10231:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37302:8:::1;37278:21;;:32;;;;;;;;;;;;;;;;;;37326:38;37355:8;37326:38;;;;;;;;;;;;;;;;;;;;37201:171:::0;:::o;37031:162::-;10250:12;:10;:12::i;:::-;10239:23;;:7;:5;:7::i;:::-;:23;;;10231:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37125:60:::1;37169:5;37125:25;37137:12;37125:7;;:11;;:25;;;;:::i;:::-;:29;;:60;;;;:::i;:::-;37110:12;:75;;;;37031:162:::0;:::o;32305:143::-;32386:7;32413:11;:18;32425:5;32413:18;;;;;;;;;;;;;;;:27;32432:7;32413:27;;;;;;;;;;;;;;;;32406:34;;32305:143;;;;:::o;30299:79::-;;;;;;;;;;;;;:::o;36349:110::-;10250:12;:10;:12::i;:::-;10239:23;;:7;:5;:7::i;:::-;:23;;;10231:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36446:5:::1;36416:18;:27;36435:7;36416:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;36349:110:::0;:::o;36573:188::-;10250:12;:10;:12::i;:::-;10239:23;;:7;:5;:7::i;:::-;:23;;;10231:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36721:32:::1;36689:29;:64;;;;36573:188:::0;:::o;10973:244::-;10250:12;:10;:12::i;:::-;10239:23;;:7;:5;:7::i;:::-;:23;;;10231:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11082:1:::1;11062:22;;:8;:22;;;;11054:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11172:8;11143:38;;11164:6;::::0;::::1;;;;;;;;11143:38;;;;;;;;;;;;11201:8;11192:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;10973:244:::0;:::o;8648:106::-;8701:15;8736:10;8729:17;;8648:106;:::o;40807:337::-;40917:1;40900:19;;:5;:19;;;;40892:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40998:1;40979:21;;:7;:21;;;;40971:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41082:6;41052:11;:18;41064:5;41052:18;;;;;;;;;;;;;;;:27;41071:7;41052:27;;;;;;;;;;;;;;;:36;;;;41120:7;41104:32;;41113:5;41104:32;;;41129:6;41104:32;;;;;;;;;;;;;;;;;;40807:337;;;:::o;41152:1322::-;41290:1;41274:18;;:4;:18;;;;41266:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41367:1;41353:16;;:2;:16;;;;41345:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41437:1;41428:6;:10;41420:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41508:7;:5;:7::i;:::-;41500:15;;:4;:15;;;;:32;;;;;41525:7;:5;:7::i;:::-;41519:13;;:2;:13;;;;41500:32;41497:125;;;41565:12;;41555:6;:22;;41547:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41497:125;41647:7;:5;:7::i;:::-;41639:15;;:4;:15;;;;:34;;;;;41659:14;;;;;;;;;;;41658:15;41639:34;41635:120;;;41698:14;;;;;;;;;;;41690:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41635:120;41767:28;41798:24;41816:4;41798:9;:24::i;:::-;41767:55;;41862:12;;41838:20;:36;41835:112;;41923:12;;41900:35;;41835:112;41959:24;42010:29;;41986:20;:53;;41959:80;;42054:19;:40;;;;;42078:16;;;;;;;;;;;42077:17;42054:40;:65;;;;;42106:13;42098:21;;:4;:21;;;;42054:65;:90;;;;;42123:21;;;;;;;;;;;42054:90;42050:226;;;42184:29;;42161:52;;42228:36;42243:20;42228:14;:36::i;:::-;42050:226;42288:12;42303:4;42288:19;;42323:18;:24;42342:4;42323:24;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;42351:18;:22;42370:2;42351:22;;;;;;;;;;;;;;;;;;;;;;;;;42323:50;42320:96;;;42399:5;42389:15;;42320:96;42428:38;42443:4;42448:2;42451:6;42458:7;42428:14;:38::i;:::-;41152:1322;;;;;;:::o;16755:166::-;16841:7;16874:1;16869;:6;;16877:12;16861:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16912:1;16908;:5;16901:12;;16755:166;;;;;:::o;38868:163::-;38909:7;38930:15;38947;38966:19;:17;:19::i;:::-;38929:56;;;;39003:20;39015:7;39003;:11;;:20;;;;:::i;:::-;38996:27;;;;38868:163;:::o;15505:153::-;15563:7;15595:1;15591;:5;15583:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15649:1;15645;:5;;;;;;15638:12;;15505:153;;;;:::o;13928:179::-;13986:7;14006:9;14022:1;14018;:5;14006:17;;14047:1;14042;:6;;14034:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14098:1;14091:8;;;13928:179;;;;:::o;37666:419::-;37725:7;37734;37743;37752;37761;37770;37791:23;37816:12;37830:18;37852:20;37864:7;37852:11;:20::i;:::-;37790:82;;;;;;37884:15;37901:23;37926:12;37942:50;37954:7;37963:4;37969:10;37981;:8;:10::i;:::-;37942:11;:50::i;:::-;37883:109;;;;;;38011:7;38020:15;38037:4;38043:15;38060:4;38066:10;38003:74;;;;;;;;;;;;;;;;;;37666:419;;;;;;;:::o;14390:158::-;14448:7;14481:1;14476;:6;;14468:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14539:1;14535;:5;14528:12;;14390:158;;;;:::o;14807:220::-;14865:7;14894:1;14889;:6;14885:20;;;14904:1;14897:8;;;;14885:20;14916:9;14932:1;14928;:5;14916:17;;14961:1;14956;14952;:5;;;;;;:10;14944:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15018:1;15011:8;;;14807:220;;;;;:::o;42482:671::-;30953:4;30934:16;;:23;;;;;;;;;;;;;;;;;;42567:16:::1;42586:27;42611:1;42586:20;:24;;:27;;;;:::i;:::-;42567:46;;42624:18;42645:15;42658:1;42645:8;:12;;:15;;;;:::i;:::-;42624:36;;42671:22;42696:36;42721:10;42696:20;:24;;:36;;;;:::i;:::-;42671:61;;42745:22;42770:21;42745:46;;42804:28;42821:10;42804:16;:28::i;:::-;42845:18;42866:41;42892:14;42866:21;:25;;:41;;;;:::i;:::-;42845:62;;42918:22;42943:17;42958:1;42943:10;:14;;:17;;;;:::i;:::-;42918:42;;42973:44;42986:14;43002;42973:12;:44::i;:::-;43030:11;;;;;;;;;;;:20;;:43;43051:21;43030:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;43091:54;43106:10;43118;43130:14;43091:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30968:1;;;;;;30999:5:::0;30980:16;;:24;;;;;;;;;;;;;;;;;;42482:671;:::o;44014:818::-;44125:7;44121:40;;44147:14;:12;:14::i;:::-;44121:40;44178:11;:19;44190:6;44178:19;;;;;;;;;;;;;;;;;;;;;;;;;:46;;;;;44202:11;:22;44214:9;44202:22;;;;;;;;;;;;;;;;;;;;;;;;;44201:23;44178:46;44174:597;;;44241:48;44263:6;44271:9;44282:6;44241:21;:48::i;:::-;44174:597;;;44312:11;:19;44324:6;44312:19;;;;;;;;;;;;;;;;;;;;;;;;;44311:20;:46;;;;;44335:11;:22;44347:9;44335:22;;;;;;;;;;;;;;;;;;;;;;;;;44311:46;44307:464;;;44374:46;44394:6;44402:9;44413:6;44374:19;:46::i;:::-;44307:464;;;44443:11;:19;44455:6;44443:19;;;;;;;;;;;;;;;;;;;;;;;;;44442:20;:47;;;;;44467:11;:22;44479:9;44467:22;;;;;;;;;;;;;;;;;;;;;;;;;44466:23;44442:47;44438:333;;;44506:44;44524:6;44532:9;44543:6;44506:17;:44::i;:::-;44438:333;;;44572:11;:19;44584:6;44572:19;;;;;;;;;;;;;;;;;;;;;;;;;:45;;;;;44595:11;:22;44607:9;44595:22;;;;;;;;;;;;;;;;;;;;;;;;;44572:45;44568:203;;;44634:48;44656:6;44664:9;44675:6;44634:21;:48::i;:::-;44568:203;;;44715:44;44733:6;44741:9;44752:6;44715:17;:44::i;:::-;44568:203;44438:333;44307:464;44174:597;44787:7;44783:41;;44809:15;:13;:15::i;:::-;44783:41;44014:818;;;;:::o;39039:555::-;39089:7;39098;39118:15;39136:7;;39118:25;;39154:15;39172:7;;39154:25;;39195:9;39190:289;39214:9;:16;;;;39210:1;:20;39190:289;;;39280:7;39256;:21;39264:9;39274:1;39264:12;;;;;;;;;;;;;;;;;;;;;;;;;39256:21;;;;;;;;;;;;;;;;:31;:66;;;;39315:7;39291;:21;39299:9;39309:1;39299:12;;;;;;;;;;;;;;;;;;;;;;;;;39291:21;;;;;;;;;;;;;;;;:31;39256:66;39252:97;;;39332:7;;39341;;39324:25;;;;;;;;;39252:97;39374:34;39386:7;:21;39394:9;39404:1;39394:12;;;;;;;;;;;;;;;;;;;;;;;;;39386:21;;;;;;;;;;;;;;;;39374:7;:11;;:34;;;;:::i;:::-;39364:44;;39433:34;39445:7;:21;39453:9;39463:1;39453:12;;;;;;;;;;;;;;;;;;;;;;;;;39445:21;;;;;;;;;;;;;;;;39433:7;:11;;:34;;;;:::i;:::-;39423:44;;39232:3;;;;;;;39190:289;;;;39503:20;39515:7;;39503;;:11;;:20;;;;:::i;:::-;39493:7;:30;39489:61;;;39533:7;;39542;;39525:25;;;;;;;;39489:61;39569:7;39578;39561:25;;;;;;39039:555;;;:::o;38093:330::-;38153:7;38162;38171;38191:12;38206:24;38222:7;38206:15;:24::i;:::-;38191:39;;38241:18;38262:30;38284:7;38262:21;:30::i;:::-;38241:51;;38303:23;38329:33;38351:10;38329:17;38341:4;38329:7;:11;;:17;;;;:::i;:::-;:21;;:33;;;;:::i;:::-;38303:59;;38381:15;38398:4;38404:10;38373:42;;;;;;;;;38093:330;;;;;:::o;38431:429::-;38546:7;38555;38564;38584:15;38602:24;38614:11;38602:7;:11;;:24;;;;:::i;:::-;38584:42;;38637:12;38652:21;38661:11;38652:4;:8;;:21;;;;:::i;:::-;38637:36;;38684:18;38705:27;38720:11;38705:10;:14;;:27;;;;:::i;:::-;38684:48;;38743:23;38769:33;38791:10;38769:17;38781:4;38769:7;:11;;:17;;;;:::i;:::-;:21;;:33;;;;:::i;:::-;38743:59;;38821:7;38830:15;38847:4;38813:39;;;;;;;;;;38431:429;;;;;;;;:::o;43161:475::-;43227:21;43265:1;43251:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43227:40;;43296:4;43278;43283:1;43278:7;;;;;;;;;;;;;:23;;;;;;;;;;;43322:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43312:4;43317:1;43312:7;;;;;;;;;;;;;:32;;;;;;;;;;;43357:62;43374:4;43389:15;43407:11;43357:8;:62::i;:::-;43432:15;:66;;;43513:11;43539:1;43555:4;43582;43602:15;43432:196;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43161:475;;:::o;43644:362::-;43725:62;43742:4;43757:15;43775:11;43725:8;:62::i;:::-;43800:15;:31;;;43839:9;43872:4;43892:11;43918:1;43934;43950:7;:5;:7::i;:::-;43972:15;43800:198;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43644:362;;:::o;40301:234::-;40358:1;40347:7;;:12;:34;;;;;40380:1;40363:13;;:18;40347:34;40344:46;;;40383:7;;40344:46;40420:7;;40402:15;:25;;;;40462:13;;40438:21;:37;;;;40498:1;40488:7;:11;;;;40526:1;40510:13;:17;;;;40301:234;:::o;45933:563::-;46036:15;46053:23;46078:12;46092:23;46117:12;46131:18;46153:19;46164:7;46153:10;:19::i;:::-;46035:137;;;;;;;;;;;;46201:28;46221:7;46201;:15;46209:6;46201:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;46183:7;:15;46191:6;46183:15;;;;;;;;;;;;;;;:46;;;;46258:28;46278:7;46258;:15;46266:6;46258:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;46240:7;:15;46248:6;46240:15;;;;;;;;;;;;;;;:46;;;;46318:39;46341:15;46318:7;:18;46326:9;46318:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;46297:7;:18;46305:9;46297:18;;;;;;;;;;;;;;;:60;;;;46368:26;46383:10;46368:14;:26::i;:::-;46405:23;46417:4;46423;46405:11;:23::i;:::-;46461:9;46444:44;;46453:6;46444:44;;;46472:15;46444:44;;;;;;;;;;;;;;;;;;45933:563;;;;;;;;;:::o;45350:575::-;45451:15;45468:23;45493:12;45507:23;45532:12;45546:18;45568:19;45579:7;45568:10;:19::i;:::-;45450:137;;;;;;;;;;;;45616:28;45636:7;45616;:15;45624:6;45616:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;45598:7;:15;45606:6;45598:15;;;;;;;;;;;;;;;:46;;;;45676:39;45699:15;45676:7;:18;45684:9;45676:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;45655:7;:18;45663:9;45655:18;;;;;;;;;;;;;;;:60;;;;45747:39;45770:15;45747:7;:18;45755:9;45747:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;45726:7;:18;45734:9;45726:18;;;;;;;;;;;;;;;:60;;;;45797:26;45812:10;45797:14;:26::i;:::-;45834:23;45846:4;45852;45834:11;:23::i;:::-;45890:9;45873:44;;45882:6;45873:44;;;45901:15;45873:44;;;;;;;;;;;;;;;;;;45350:575;;;;;;;;;:::o;44840:502::-;44939:15;44956:23;44981:12;44995:23;45020:12;45034:18;45056:19;45067:7;45056:10;:19::i;:::-;44938:137;;;;;;;;;;;;45104:28;45124:7;45104;:15;45112:6;45104:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;45086:7;:15;45094:6;45086:15;;;;;;;;;;;;;;;:46;;;;45164:39;45187:15;45164:7;:18;45172:9;45164:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;45143:7;:18;45151:9;45143:18;;;;;;;;;;;;;;;:60;;;;45214:26;45229:10;45214:14;:26::i;:::-;45251:23;45263:4;45269;45251:11;:23::i;:::-;45307:9;45290:44;;45299:6;45290:44;;;45318:15;45290:44;;;;;;;;;;;;;;;;;;44840:502;;;;;;;;;:::o;35588:634::-;35691:15;35708:23;35733:12;35747:23;35772:12;35786:18;35808:19;35819:7;35808:10;:19::i;:::-;35690:137;;;;;;;;;;;;35856:28;35876:7;35856;:15;35864:6;35856:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;35838:7;:15;35846:6;35838:15;;;;;;;;;;;;;;;:46;;;;35913:28;35933:7;35913;:15;35921:6;35913:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;35895:7;:15;35903:6;35895:15;;;;;;;;;;;;;;;:46;;;;35973:39;35996:15;35973:7;:18;35981:9;35973:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;35952:7;:18;35960:9;35952:18;;;;;;;;;;;;;;;:60;;;;36044:39;36067:15;36044:7;:18;36052:9;36044:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;36023:7;:18;36031:9;36023:18;;;;;;;;;;;;;;;:60;;;;36094:26;36109:10;36094:14;:26::i;:::-;36131:23;36143:4;36149;36131:11;:23::i;:::-;36187:9;36170:44;;36179:6;36170:44;;;36198:15;36170:44;;;;;;;;;;;;;;;;;;35588:634;;;;;;;;;:::o;40543:125::-;40597:15;;40587:7;:25;;;;40639:21;;40623:13;:37;;;;40543:125::o;39965:154::-;40029:7;40056:55;40095:5;40056:20;40068:7;;40056;:11;;:20;;;;:::i;:::-;:24;;:55;;;;:::i;:::-;40049:62;;39965:154;;;:::o;40127:166::-;40197:7;40224:61;40269:5;40224:26;40236:13;;40224:7;:11;;:26;;;;:::i;:::-;:30;;:61;;;;:::i;:::-;40217:68;;40127:166;;;:::o;39602:355::-;39665:19;39688:10;:8;:10::i;:::-;39665:33;;39709:18;39730:27;39745:11;39730:10;:14;;:27;;;;:::i;:::-;39709:48;;39793:38;39820:10;39793:7;:22;39809:4;39793:22;;;;;;;;;;;;;;;;:26;;:38;;;;:::i;:::-;39768:7;:22;39784:4;39768:22;;;;;;;;;;;;;;;:63;;;;39845:11;:26;39865:4;39845:26;;;;;;;;;;;;;;;;;;;;;;;;;39842:107;;;39911:38;39938:10;39911:7;:22;39927:4;39911:22;;;;;;;;;;;;;;;;:26;;:38;;;;:::i;:::-;39886:7;:22;39902:4;39886:22;;;;;;;;;;;;;;;:63;;;;39842:107;39602:355;;;:::o;37511:147::-;37589:17;37601:4;37589:7;;:11;;:17;;;;:::i;:::-;37579:7;:27;;;;37630:20;37645:4;37630:10;;:14;;:20;;;;:::i;:::-;37617:10;:33;;;;37511:147;;:::o

Swarm Source

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