ETH Price: $3,261.26 (+2.85%)
Gas: 2 Gwei

Token

ShinyInu (SHINY)
 

Overview

Max Total Supply

1,000,000,000,000,000 SHINY

Holders

210

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
welikedaos.eth
Balance
193,871,041.959610151 SHINY

Value
$0.00
0xffd7fd0b03b42f12c2079d2717f504fae5597e56
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:
ShinyInu

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-26
*/

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

// Shiny Inu - The rarest Inu
// t.me/shinyinu
// twitter.com/shinyinutoken


// 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 ShinyInu 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 = "ShinyInu";
    string private _symbol = "SHINY";
    uint8 private _decimals = 9;

    uint256 public _taxFee = 3;
    uint256 private _previousTaxFee = _taxFee;

    uint256 public _liquidityFee = 2;
    uint256 private _previousLiquidityFee = _liquidityFee;

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

    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;

    uint256 public _maxTxAmount = 90000000 * 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);
    }

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


        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":[{"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":[{"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"}]

60c060405269d3c21bcecceda1000000600755600754600019816200002057fe5b06600019036008556040518060400160405280600881526020017f5368696e79496e75000000000000000000000000000000000000000000000000815250600a90805190602001906200007592919062000653565b506040518060400160405280600581526020017f5348494e59000000000000000000000000000000000000000000000000000000815250600b9080519060200190620000c392919062000653565b506009600c60006101000a81548160ff021916908360ff1602179055506003600d55600d54600e556002600f55600f546010557393d34b73e9dc1b8b35b0c29c68f4dfbad2d6d1c3601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001601160156101000a81548160ff02191690831515021790555069130ee8e7179044400000601255681b1ae4d6e2ef5000006013553480156200018e57600080fd5b506000620001a16200062260201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35060085460016000620002566200062260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620002f457600080fd5b505afa15801562000309573d6000803e3d6000fd5b505050506040513d60208110156200032057600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200039457600080fd5b505afa158015620003a9573d6000803e3d6000fd5b505050506040513d6020811015620003c057600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b1580156200043b57600080fd5b505af115801562000450573d6000803e3d6000fd5b505050506040513d60208110156200046757600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b81525050600160046000620004fb6200062a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620005b46200062260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6007546040518082815260200191505060405180910390a350620006f9565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200069657805160ff1916838001178555620006c7565b82800160010185558215620006c7579182015b82811115620006c6578251825591602001919060010190620006a9565b5b509050620006d69190620006da565b5090565b5b80821115620006f5576000816000905550600101620006db565b5090565b60805160601c60a05160601c614b61620007416000398061183b5280612cae525080610f1d52806139e15280613acd5280613af45280613bff5280613c265250614b616000f3fe60806040526004361061021e5760003560e01c80635342acb41161012357806395d89b41116100ab578063dd62ed3e1161006f578063dd62ed3e14610bf5578063e82bef2914610c7a578063ea2f0b3714610cbb578063f0f165af14610d0c578063f2fde38b14610d4757610225565b806395d89b4114610a0b578063a457c2d714610a9b578063a9059cbb14610b0c578063c49b9a8014610b7d578063d543dbeb14610bba57610225565b80637d1db4a5116100f25780637d1db4a5146108ac57806385dc3004146108d757806388f82020146109285780638da5cb5b1461098f5780638ee88c53146109d057610225565b80635342acb41461079e5780636bc87c3a1461080557806370a0823114610830578063715018a61461089557610225565b80633685d419116101a6578063437823ec11610175578063437823ec146106335780634549b0391461068457806349bd5a5e146106df5780634a74bb021461072057806352390c021461074d57610225565b80633685d4191461050b578063395093511461055c5780633b124fe7146105cd5780633bd5d173146105f857610225565b80631694505e116101ed5780631694505e1461039157806318160ddd146103d257806323b872dd146103fd5780632d8381191461048e578063313ce567146104dd57610225565b8063061c82d01461022a57806306fdde0314610265578063095ea7b3146102f557806313114a9d1461036657610225565b3661022557005b600080fd5b34801561023657600080fd5b506102636004803603602081101561024d57600080fd5b8101908080359060200190929190505050610d98565b005b34801561027157600080fd5b5061027a610e51565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102ba57808201518184015260208101905061029f565b50505050905090810190601f1680156102e75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561030157600080fd5b5061034e6004803603604081101561031857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ef3565b60405180821515815260200191505060405180910390f35b34801561037257600080fd5b5061037b610f11565b6040518082815260200191505060405180910390f35b34801561039d57600080fd5b506103a6610f1b565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103de57600080fd5b506103e7610f3f565b6040518082815260200191505060405180910390f35b34801561040957600080fd5b506104766004803603606081101561042057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f49565b60405180821515815260200191505060405180910390f35b34801561049a57600080fd5b506104c7600480360360208110156104b157600080fd5b8101908080359060200190929190505050611022565b6040518082815260200191505060405180910390f35b3480156104e957600080fd5b506104f26110a6565b604051808260ff16815260200191505060405180910390f35b34801561051757600080fd5b5061055a6004803603602081101561052e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506110bd565b005b34801561056857600080fd5b506105b56004803603604081101561057f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061142e565b60405180821515815260200191505060405180910390f35b3480156105d957600080fd5b506105e26114e1565b6040518082815260200191505060405180910390f35b34801561060457600080fd5b506106316004803603602081101561061b57600080fd5b81019080803590602001909291905050506114e7565b005b34801561063f57600080fd5b506106826004803603602081101561065657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611678565b005b34801561069057600080fd5b506106c9600480360360408110156106a757600080fd5b8101908080359060200190929190803515159060200190929190505050611782565b6040518082815260200191505060405180910390f35b3480156106eb57600080fd5b506106f4611839565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561072c57600080fd5b5061073561185d565b60405180821515815260200191505060405180910390f35b34801561075957600080fd5b5061079c6004803603602081101561077057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611870565b005b3480156107aa57600080fd5b506107ed600480360360208110156107c157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b71565b60405180821515815260200191505060405180910390f35b34801561081157600080fd5b5061081a611bc7565b6040518082815260200191505060405180910390f35b34801561083c57600080fd5b5061087f6004803603602081101561085357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611bcd565b6040518082815260200191505060405180910390f35b3480156108a157600080fd5b506108aa611cb8565b005b3480156108b857600080fd5b506108c1611e25565b6040518082815260200191505060405180910390f35b3480156108e357600080fd5b50610926600480360360208110156108fa57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611e2b565b005b34801561093457600080fd5b506109776004803603602081101561094b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611f1e565b60405180821515815260200191505060405180910390f35b34801561099b57600080fd5b506109a4611f74565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156109dc57600080fd5b50610a09600480360360208110156109f357600080fd5b8101908080359060200190929190505050611f9d565b005b348015610a1757600080fd5b50610a20612056565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a60578082015181840152602081019050610a45565b50505050905090810190601f168015610a8d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610aa757600080fd5b50610af460048036036040811015610abe57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506120f8565b60405180821515815260200191505060405180910390f35b348015610b1857600080fd5b50610b6560048036036040811015610b2f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506121c5565b60405180821515815260200191505060405180910390f35b348015610b8957600080fd5b50610bb860048036036020811015610ba057600080fd5b810190808035151590602001909291905050506121e3565b005b348015610bc657600080fd5b50610bf360048036036020811015610bdd57600080fd5b81019080803590602001909291905050506122e8565b005b348015610c0157600080fd5b50610c6460048036036040811015610c1857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506123c8565b6040518082815260200191505060405180910390f35b348015610c8657600080fd5b50610c8f61244f565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610cc757600080fd5b50610d0a60048036036020811015610cde57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612475565b005b348015610d1857600080fd5b50610d4560048036036020811015610d2f57600080fd5b810190808035906020019092919050505061257f565b005b348015610d5357600080fd5b50610d9660048036036020811015610d6a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612638565b005b610da061282a565b73ffffffffffffffffffffffffffffffffffffffff16610dbe611f74565b73ffffffffffffffffffffffffffffffffffffffff1614610e47576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600d8190555050565b6060600a8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610ee95780601f10610ebe57610100808354040283529160200191610ee9565b820191906000526020600020905b815481529060010190602001808311610ecc57829003601f168201915b5050505050905090565b6000610f07610f0061282a565b8484612832565b6001905092915050565b6000600954905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600754905090565b6000610f56848484612a29565b61101784610f6261282a565b61101285604051806060016040528060288152602001614a4160289139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610fc861282a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612dee9092919063ffffffff16565b612832565b600190509392505050565b600060085482111561107f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614986602a913960400191505060405180910390fd5b6000611089612ea8565b905061109e8184612ed390919063ffffffff16565b915050919050565b6000600c60009054906101000a900460ff16905090565b6110c561282a565b73ffffffffffffffffffffffffffffffffffffffff166110e3611f74565b73ffffffffffffffffffffffffffffffffffffffff161461116c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661122b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b60068054905081101561142a578173ffffffffffffffffffffffffffffffffffffffff166006828154811061125f57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561141d576006600160068054905003815481106112bb57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600682815481106112f357fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060068054806113e357fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905561142a565b808060010191505061122e565b5050565b60006114d761143b61282a565b846114d2856003600061144c61282a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f5c90919063ffffffff16565b612832565b6001905092915050565b600d5481565b60006114f161282a565b9050600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611596576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614adb602c913960400191505060405180910390fd5b60006115a183612fe4565b505050505090506115fa81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461304090919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506116528160085461304090919063ffffffff16565b60088190555061166d83600954612f5c90919063ffffffff16565b600981905550505050565b61168061282a565b73ffffffffffffffffffffffffffffffffffffffff1661169e611f74565b73ffffffffffffffffffffffffffffffffffffffff1614611727576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60006007548311156117fc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b8161181c57600061180c84612fe4565b5050505050905080915050611833565b600061182784612fe4565b50505050915050809150505b92915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160159054906101000a900460ff1681565b61187861282a565b73ffffffffffffffffffffffffffffffffffffffff16611896611f74565b73ffffffffffffffffffffffffffffffffffffffff161461191f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156119df576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611ab357611a6f600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611022565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506006819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600f5481565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611c6857600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050611cb3565b611cb0600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611022565b90505b919050565b611cc061282a565b73ffffffffffffffffffffffffffffffffffffffff16611cde611f74565b73ffffffffffffffffffffffffffffffffffffffff1614611d67576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60125481565b611e3361282a565b73ffffffffffffffffffffffffffffffffffffffff16611e51611f74565b73ffffffffffffffffffffffffffffffffffffffff1614611eda576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611fa561282a565b73ffffffffffffffffffffffffffffffffffffffff16611fc3611f74565b73ffffffffffffffffffffffffffffffffffffffff161461204c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600f8190555050565b6060600b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156120ee5780601f106120c3576101008083540402835291602001916120ee565b820191906000526020600020905b8154815290600101906020018083116120d157829003601f168201915b5050505050905090565b60006121bb61210561282a565b846121b685604051806060016040528060258152602001614b07602591396003600061212f61282a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612dee9092919063ffffffff16565b612832565b6001905092915050565b60006121d96121d261282a565b8484612a29565b6001905092915050565b6121eb61282a565b73ffffffffffffffffffffffffffffffffffffffff16612209611f74565b73ffffffffffffffffffffffffffffffffffffffff1614612292576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601160156101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1598160405180821515815260200191505060405180910390a150565b6122f061282a565b73ffffffffffffffffffffffffffffffffffffffff1661230e611f74565b73ffffffffffffffffffffffffffffffffffffffff1614612397576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6123bf60646123b1836007546130c390919063ffffffff16565b612ed390919063ffffffff16565b60128190555050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61247d61282a565b73ffffffffffffffffffffffffffffffffffffffff1661249b611f74565b73ffffffffffffffffffffffffffffffffffffffff1614612524576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61258761282a565b73ffffffffffffffffffffffffffffffffffffffff166125a5611f74565b73ffffffffffffffffffffffffffffffffffffffff161461262e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060138190555050565b61264061282a565b73ffffffffffffffffffffffffffffffffffffffff1661265e611f74565b73ffffffffffffffffffffffffffffffffffffffff16146126e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561276d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806149b06026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128b8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180614ab76024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561293e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806149d66022913960400191505060405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612aaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180614a926025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b35576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806149636023913960400191505060405180910390fd5b60008111612b8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180614a696029913960400191505060405180910390fd5b612b96611f74565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612c045750612bd4611f74565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612c6557601254811115612c64576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806149f86028913960400191505060405180910390fd5b5b6000612c7030611bcd565b90506012548110612c815760125490505b60006013548210159050808015612ca55750601160149054906101000a900460ff16155b8015612cfd57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b8015612d155750601160159054906101000a900460ff165b15612d29576013549150612d2882613149565b5b600060019050600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612dd05750600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612dda57600090505b612de6868686846132c6565b505050505050565b6000838311158290612e9b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612e60578082015181840152602081019050612e45565b50505050905090810190601f168015612e8d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5082840390509392505050565b6000806000612eb56135d7565b91509150612ecc8183612ed390919063ffffffff16565b9250505090565b6000808211612f4a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060200191505060405180910390fd5b818381612f5357fe5b04905092915050565b600080828401905083811015612fda576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000806000806000806000806000612ffb8a613868565b92509250925060008060006130198d8686613014612ea8565b6138c2565b9250925092508282828888889b509b509b509b509b509b5050505050505091939550919395565b6000828211156130b8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b818303905092915050565b6000808314156130d65760009050613143565b60008284029050828482816130e757fe5b041461313e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180614a206021913960400191505060405180910390fd5b809150505b92915050565b6001601160146101000a81548160ff021916908315150217905550600061317a600683612ed390919063ffffffff16565b905060006131926005836130c390919063ffffffff16565b905060006131a9828561304090919063ffffffff16565b905060004790506131b98361394b565b60006131ce824761304090919063ffffffff16565b905060006131e6600583612ed390919063ffffffff16565b90506131f28482613bf9565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561325a573d6000803e3d6000fd5b507f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56185838660405180848152602001838152602001828152602001935050505060405180910390a15050505050506000601160146101000a81548160ff02191690831515021790555050565b806132d4576132d3613d4a565b5b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156133775750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561338c57613387848484613d8d565b6135c3565b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561342f5750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156134445761343f848484613fed565b6135c2565b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156134e85750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156134fd576134f884848461424d565b6135c1565b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561359f5750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156135b4576135af848484614418565b6135c0565b6135bf84848461424d565b5b5b5b5b806135d1576135d061470d565b5b50505050565b600080600060085490506000600754905060005b60068054905081101561382b5782600160006006848154811061360a57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411806136f1575081600260006006848154811061368957fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b156137085760085460075494509450505050613864565b613791600160006006848154811061371c57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548461304090919063ffffffff16565b925061381c60026000600684815481106137a757fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548361304090919063ffffffff16565b915080806001019150506135eb565b50613843600754600854612ed390919063ffffffff16565b82101561385b57600854600754935093505050613864565b81819350935050505b9091565b60008060008061387785614721565b9050600061388486614752565b905060006138ad8261389f858a61304090919063ffffffff16565b61304090919063ffffffff16565b90508083839550955095505050509193909250565b6000806000806138db85896130c390919063ffffffff16565b905060006138f286896130c390919063ffffffff16565b9050600061390987896130c390919063ffffffff16565b9050600061393282613924858761304090919063ffffffff16565b61304090919063ffffffff16565b9050838184965096509650505050509450945094915050565b6060600267ffffffffffffffff8111801561396557600080fd5b506040519080825280602002602001820160405280156139945781602001602082028036833780820191505090505b50905030816000815181106139a557fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613a4557600080fd5b505afa158015613a59573d6000803e3d6000fd5b505050506040513d6020811015613a6f57600080fd5b810190808051906020019092919050505081600181518110613a8d57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613af2307f000000000000000000000000000000000000000000000000000000000000000084612832565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015613bb4578082015181840152602081019050613b99565b505050509050019650505050505050600060405180830381600087803b158015613bdd57600080fd5b505af1158015613bf1573d6000803e3d6000fd5b505050505050565b613c24307f000000000000000000000000000000000000000000000000000000000000000084612832565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080613c6e611f74565b426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b158015613cf357600080fd5b505af1158015613d07573d6000803e3d6000fd5b50505050506040513d6060811015613d1e57600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b6000600d54148015613d5e57506000600f54145b15613d6857613d8b565b600d54600e81905550600f546010819055506000600d819055506000600f819055505b565b600080600080600080613d9f87612fe4565b955095509550955095509550613dfd87600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461304090919063ffffffff16565b600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613e9286600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461304090919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613f2785600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f5c90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613f7381614783565b613f7d8483614928565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080613fff87612fe4565b95509550955095509550955061405d86600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461304090919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506140f283600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f5c90919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061418785600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f5c90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506141d381614783565b6141dd8483614928565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b60008060008060008061425f87612fe4565b9550955095509550955095506142bd86600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461304090919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061435285600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f5c90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061439e81614783565b6143a88483614928565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b60008060008060008061442a87612fe4565b95509550955095509550955061448887600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461304090919063ffffffff16565b600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061451d86600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461304090919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506145b283600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f5c90919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061464785600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f5c90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061469381614783565b61469d8483614928565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600e54600d81905550601054600f81905550565b600061474b606461473d600d54856130c390919063ffffffff16565b612ed390919063ffffffff16565b9050919050565b600061477c606461476e600f54856130c390919063ffffffff16565b612ed390919063ffffffff16565b9050919050565b600061478d612ea8565b905060006147a482846130c390919063ffffffff16565b90506147f881600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f5c90919063ffffffff16565b600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600560003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615614923576148df83600260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f5c90919063ffffffff16565b600260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b61493d8260085461304090919063ffffffff16565b60088190555061495881600954612f5c90919063ffffffff16565b600981905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122010b7ae56be6096e51856cb6cfa457845dca17409da9996d0859cff1298f1207d64736f6c634300060c0033

Deployed Bytecode

0x60806040526004361061021e5760003560e01c80635342acb41161012357806395d89b41116100ab578063dd62ed3e1161006f578063dd62ed3e14610bf5578063e82bef2914610c7a578063ea2f0b3714610cbb578063f0f165af14610d0c578063f2fde38b14610d4757610225565b806395d89b4114610a0b578063a457c2d714610a9b578063a9059cbb14610b0c578063c49b9a8014610b7d578063d543dbeb14610bba57610225565b80637d1db4a5116100f25780637d1db4a5146108ac57806385dc3004146108d757806388f82020146109285780638da5cb5b1461098f5780638ee88c53146109d057610225565b80635342acb41461079e5780636bc87c3a1461080557806370a0823114610830578063715018a61461089557610225565b80633685d419116101a6578063437823ec11610175578063437823ec146106335780634549b0391461068457806349bd5a5e146106df5780634a74bb021461072057806352390c021461074d57610225565b80633685d4191461050b578063395093511461055c5780633b124fe7146105cd5780633bd5d173146105f857610225565b80631694505e116101ed5780631694505e1461039157806318160ddd146103d257806323b872dd146103fd5780632d8381191461048e578063313ce567146104dd57610225565b8063061c82d01461022a57806306fdde0314610265578063095ea7b3146102f557806313114a9d1461036657610225565b3661022557005b600080fd5b34801561023657600080fd5b506102636004803603602081101561024d57600080fd5b8101908080359060200190929190505050610d98565b005b34801561027157600080fd5b5061027a610e51565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102ba57808201518184015260208101905061029f565b50505050905090810190601f1680156102e75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561030157600080fd5b5061034e6004803603604081101561031857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ef3565b60405180821515815260200191505060405180910390f35b34801561037257600080fd5b5061037b610f11565b6040518082815260200191505060405180910390f35b34801561039d57600080fd5b506103a6610f1b565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103de57600080fd5b506103e7610f3f565b6040518082815260200191505060405180910390f35b34801561040957600080fd5b506104766004803603606081101561042057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f49565b60405180821515815260200191505060405180910390f35b34801561049a57600080fd5b506104c7600480360360208110156104b157600080fd5b8101908080359060200190929190505050611022565b6040518082815260200191505060405180910390f35b3480156104e957600080fd5b506104f26110a6565b604051808260ff16815260200191505060405180910390f35b34801561051757600080fd5b5061055a6004803603602081101561052e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506110bd565b005b34801561056857600080fd5b506105b56004803603604081101561057f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061142e565b60405180821515815260200191505060405180910390f35b3480156105d957600080fd5b506105e26114e1565b6040518082815260200191505060405180910390f35b34801561060457600080fd5b506106316004803603602081101561061b57600080fd5b81019080803590602001909291905050506114e7565b005b34801561063f57600080fd5b506106826004803603602081101561065657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611678565b005b34801561069057600080fd5b506106c9600480360360408110156106a757600080fd5b8101908080359060200190929190803515159060200190929190505050611782565b6040518082815260200191505060405180910390f35b3480156106eb57600080fd5b506106f4611839565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561072c57600080fd5b5061073561185d565b60405180821515815260200191505060405180910390f35b34801561075957600080fd5b5061079c6004803603602081101561077057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611870565b005b3480156107aa57600080fd5b506107ed600480360360208110156107c157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b71565b60405180821515815260200191505060405180910390f35b34801561081157600080fd5b5061081a611bc7565b6040518082815260200191505060405180910390f35b34801561083c57600080fd5b5061087f6004803603602081101561085357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611bcd565b6040518082815260200191505060405180910390f35b3480156108a157600080fd5b506108aa611cb8565b005b3480156108b857600080fd5b506108c1611e25565b6040518082815260200191505060405180910390f35b3480156108e357600080fd5b50610926600480360360208110156108fa57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611e2b565b005b34801561093457600080fd5b506109776004803603602081101561094b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611f1e565b60405180821515815260200191505060405180910390f35b34801561099b57600080fd5b506109a4611f74565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156109dc57600080fd5b50610a09600480360360208110156109f357600080fd5b8101908080359060200190929190505050611f9d565b005b348015610a1757600080fd5b50610a20612056565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a60578082015181840152602081019050610a45565b50505050905090810190601f168015610a8d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610aa757600080fd5b50610af460048036036040811015610abe57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506120f8565b60405180821515815260200191505060405180910390f35b348015610b1857600080fd5b50610b6560048036036040811015610b2f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506121c5565b60405180821515815260200191505060405180910390f35b348015610b8957600080fd5b50610bb860048036036020811015610ba057600080fd5b810190808035151590602001909291905050506121e3565b005b348015610bc657600080fd5b50610bf360048036036020811015610bdd57600080fd5b81019080803590602001909291905050506122e8565b005b348015610c0157600080fd5b50610c6460048036036040811015610c1857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506123c8565b6040518082815260200191505060405180910390f35b348015610c8657600080fd5b50610c8f61244f565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610cc757600080fd5b50610d0a60048036036020811015610cde57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612475565b005b348015610d1857600080fd5b50610d4560048036036020811015610d2f57600080fd5b810190808035906020019092919050505061257f565b005b348015610d5357600080fd5b50610d9660048036036020811015610d6a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612638565b005b610da061282a565b73ffffffffffffffffffffffffffffffffffffffff16610dbe611f74565b73ffffffffffffffffffffffffffffffffffffffff1614610e47576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600d8190555050565b6060600a8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610ee95780601f10610ebe57610100808354040283529160200191610ee9565b820191906000526020600020905b815481529060010190602001808311610ecc57829003601f168201915b5050505050905090565b6000610f07610f0061282a565b8484612832565b6001905092915050565b6000600954905090565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600754905090565b6000610f56848484612a29565b61101784610f6261282a565b61101285604051806060016040528060288152602001614a4160289139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610fc861282a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612dee9092919063ffffffff16565b612832565b600190509392505050565b600060085482111561107f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614986602a913960400191505060405180910390fd5b6000611089612ea8565b905061109e8184612ed390919063ffffffff16565b915050919050565b6000600c60009054906101000a900460ff16905090565b6110c561282a565b73ffffffffffffffffffffffffffffffffffffffff166110e3611f74565b73ffffffffffffffffffffffffffffffffffffffff161461116c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661122b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b60068054905081101561142a578173ffffffffffffffffffffffffffffffffffffffff166006828154811061125f57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561141d576006600160068054905003815481106112bb57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600682815481106112f357fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060068054806113e357fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905561142a565b808060010191505061122e565b5050565b60006114d761143b61282a565b846114d2856003600061144c61282a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f5c90919063ffffffff16565b612832565b6001905092915050565b600d5481565b60006114f161282a565b9050600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611596576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614adb602c913960400191505060405180910390fd5b60006115a183612fe4565b505050505090506115fa81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461304090919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506116528160085461304090919063ffffffff16565b60088190555061166d83600954612f5c90919063ffffffff16565b600981905550505050565b61168061282a565b73ffffffffffffffffffffffffffffffffffffffff1661169e611f74565b73ffffffffffffffffffffffffffffffffffffffff1614611727576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60006007548311156117fc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b8161181c57600061180c84612fe4565b5050505050905080915050611833565b600061182784612fe4565b50505050915050809150505b92915050565b7f000000000000000000000000f96acb19f5c8e25447cdbd2f9b32745f82a0590c81565b601160159054906101000a900460ff1681565b61187861282a565b73ffffffffffffffffffffffffffffffffffffffff16611896611f74565b73ffffffffffffffffffffffffffffffffffffffff161461191f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156119df576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611ab357611a6f600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611022565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506006819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600f5481565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611c6857600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050611cb3565b611cb0600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611022565b90505b919050565b611cc061282a565b73ffffffffffffffffffffffffffffffffffffffff16611cde611f74565b73ffffffffffffffffffffffffffffffffffffffff1614611d67576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60125481565b611e3361282a565b73ffffffffffffffffffffffffffffffffffffffff16611e51611f74565b73ffffffffffffffffffffffffffffffffffffffff1614611eda576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611fa561282a565b73ffffffffffffffffffffffffffffffffffffffff16611fc3611f74565b73ffffffffffffffffffffffffffffffffffffffff161461204c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600f8190555050565b6060600b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156120ee5780601f106120c3576101008083540402835291602001916120ee565b820191906000526020600020905b8154815290600101906020018083116120d157829003601f168201915b5050505050905090565b60006121bb61210561282a565b846121b685604051806060016040528060258152602001614b07602591396003600061212f61282a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612dee9092919063ffffffff16565b612832565b6001905092915050565b60006121d96121d261282a565b8484612a29565b6001905092915050565b6121eb61282a565b73ffffffffffffffffffffffffffffffffffffffff16612209611f74565b73ffffffffffffffffffffffffffffffffffffffff1614612292576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601160156101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1598160405180821515815260200191505060405180910390a150565b6122f061282a565b73ffffffffffffffffffffffffffffffffffffffff1661230e611f74565b73ffffffffffffffffffffffffffffffffffffffff1614612397576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6123bf60646123b1836007546130c390919063ffffffff16565b612ed390919063ffffffff16565b60128190555050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61247d61282a565b73ffffffffffffffffffffffffffffffffffffffff1661249b611f74565b73ffffffffffffffffffffffffffffffffffffffff1614612524576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61258761282a565b73ffffffffffffffffffffffffffffffffffffffff166125a5611f74565b73ffffffffffffffffffffffffffffffffffffffff161461262e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060138190555050565b61264061282a565b73ffffffffffffffffffffffffffffffffffffffff1661265e611f74565b73ffffffffffffffffffffffffffffffffffffffff16146126e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561276d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806149b06026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128b8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180614ab76024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561293e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806149d66022913960400191505060405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612aaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180614a926025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b35576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806149636023913960400191505060405180910390fd5b60008111612b8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180614a696029913960400191505060405180910390fd5b612b96611f74565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612c045750612bd4611f74565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612c6557601254811115612c64576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806149f86028913960400191505060405180910390fd5b5b6000612c7030611bcd565b90506012548110612c815760125490505b60006013548210159050808015612ca55750601160149054906101000a900460ff16155b8015612cfd57507f000000000000000000000000f96acb19f5c8e25447cdbd2f9b32745f82a0590c73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b8015612d155750601160159054906101000a900460ff165b15612d29576013549150612d2882613149565b5b600060019050600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612dd05750600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612dda57600090505b612de6868686846132c6565b505050505050565b6000838311158290612e9b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612e60578082015181840152602081019050612e45565b50505050905090810190601f168015612e8d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5082840390509392505050565b6000806000612eb56135d7565b91509150612ecc8183612ed390919063ffffffff16565b9250505090565b6000808211612f4a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060200191505060405180910390fd5b818381612f5357fe5b04905092915050565b600080828401905083811015612fda576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000806000806000806000806000612ffb8a613868565b92509250925060008060006130198d8686613014612ea8565b6138c2565b9250925092508282828888889b509b509b509b509b509b5050505050505091939550919395565b6000828211156130b8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b818303905092915050565b6000808314156130d65760009050613143565b60008284029050828482816130e757fe5b041461313e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180614a206021913960400191505060405180910390fd5b809150505b92915050565b6001601160146101000a81548160ff021916908315150217905550600061317a600683612ed390919063ffffffff16565b905060006131926005836130c390919063ffffffff16565b905060006131a9828561304090919063ffffffff16565b905060004790506131b98361394b565b60006131ce824761304090919063ffffffff16565b905060006131e6600583612ed390919063ffffffff16565b90506131f28482613bf9565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561325a573d6000803e3d6000fd5b507f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56185838660405180848152602001838152602001828152602001935050505060405180910390a15050505050506000601160146101000a81548160ff02191690831515021790555050565b806132d4576132d3613d4a565b5b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156133775750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561338c57613387848484613d8d565b6135c3565b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561342f5750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156134445761343f848484613fed565b6135c2565b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156134e85750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156134fd576134f884848461424d565b6135c1565b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561359f5750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156135b4576135af848484614418565b6135c0565b6135bf84848461424d565b5b5b5b5b806135d1576135d061470d565b5b50505050565b600080600060085490506000600754905060005b60068054905081101561382b5782600160006006848154811061360a57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411806136f1575081600260006006848154811061368957fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b156137085760085460075494509450505050613864565b613791600160006006848154811061371c57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548461304090919063ffffffff16565b925061381c60026000600684815481106137a757fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548361304090919063ffffffff16565b915080806001019150506135eb565b50613843600754600854612ed390919063ffffffff16565b82101561385b57600854600754935093505050613864565b81819350935050505b9091565b60008060008061387785614721565b9050600061388486614752565b905060006138ad8261389f858a61304090919063ffffffff16565b61304090919063ffffffff16565b90508083839550955095505050509193909250565b6000806000806138db85896130c390919063ffffffff16565b905060006138f286896130c390919063ffffffff16565b9050600061390987896130c390919063ffffffff16565b9050600061393282613924858761304090919063ffffffff16565b61304090919063ffffffff16565b9050838184965096509650505050509450945094915050565b6060600267ffffffffffffffff8111801561396557600080fd5b506040519080825280602002602001820160405280156139945781602001602082028036833780820191505090505b50905030816000815181106139a557fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613a4557600080fd5b505afa158015613a59573d6000803e3d6000fd5b505050506040513d6020811015613a6f57600080fd5b810190808051906020019092919050505081600181518110613a8d57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613af2307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612832565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015613bb4578082015181840152602081019050613b99565b505050509050019650505050505050600060405180830381600087803b158015613bdd57600080fd5b505af1158015613bf1573d6000803e3d6000fd5b505050505050565b613c24307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612832565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080613c6e611f74565b426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b158015613cf357600080fd5b505af1158015613d07573d6000803e3d6000fd5b50505050506040513d6060811015613d1e57600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b6000600d54148015613d5e57506000600f54145b15613d6857613d8b565b600d54600e81905550600f546010819055506000600d819055506000600f819055505b565b600080600080600080613d9f87612fe4565b955095509550955095509550613dfd87600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461304090919063ffffffff16565b600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613e9286600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461304090919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613f2785600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f5c90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613f7381614783565b613f7d8483614928565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080613fff87612fe4565b95509550955095509550955061405d86600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461304090919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506140f283600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f5c90919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061418785600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f5c90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506141d381614783565b6141dd8483614928565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b60008060008060008061425f87612fe4565b9550955095509550955095506142bd86600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461304090919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061435285600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f5c90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061439e81614783565b6143a88483614928565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b60008060008060008061442a87612fe4565b95509550955095509550955061448887600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461304090919063ffffffff16565b600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061451d86600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461304090919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506145b283600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f5c90919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061464785600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f5c90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061469381614783565b61469d8483614928565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600e54600d81905550601054600f81905550565b600061474b606461473d600d54856130c390919063ffffffff16565b612ed390919063ffffffff16565b9050919050565b600061477c606461476e600f54856130c390919063ffffffff16565b612ed390919063ffffffff16565b9050919050565b600061478d612ea8565b905060006147a482846130c390919063ffffffff16565b90506147f881600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f5c90919063ffffffff16565b600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600560003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615614923576148df83600260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f5c90919063ffffffff16565b600260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b61493d8260085461304090919063ffffffff16565b60088190555061495881600954612f5c90919063ffffffff16565b600981905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122010b7ae56be6096e51856cb6cfa457845dca17409da9996d0859cff1298f1207d64736f6c634300060c0033

Deployed Bytecode Sourcemap

29290:16994:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36468:98;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;31545:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32457:161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;33578:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30237:51;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31822:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32626:313;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;34502:253;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31731:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;35104:479;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32947:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30053:26;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33673:377;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;36231:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34058:436;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30295:38;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30456:40;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;34763:333;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;40583:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30136:32;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31925:198;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;10712:148;;;;;;;;;;;;;:::i;:::-;;30505:54;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;36900:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;33450:120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;10061:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;36770:122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;31636:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33173:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32131:167;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;37202:171;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;37032:162;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32306:143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30340:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;36350:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;36574:188;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;11015:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;36468:98;10292:12;:10;:12::i;:::-;10281:23;;:7;:5;:7::i;:::-;:23;;;10273:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36552:6:::1;36542:7;:16;;;;36468:98:::0;:::o;31545:83::-;31582:13;31615:5;31608:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31545:83;:::o;32457:161::-;32532:4;32549:39;32558:12;:10;:12::i;:::-;32572:7;32581:6;32549:8;:39::i;:::-;32606:4;32599:11;;32457:161;;;;:::o;33578:87::-;33620:7;33647:10;;33640:17;;33578:87;:::o;30237:51::-;;;:::o;31822:95::-;31875:7;31902;;31895:14;;31822:95;:::o;32626:313::-;32724:4;32741:36;32751:6;32759:9;32770:6;32741:9;:36::i;:::-;32788:121;32797:6;32805:12;:10;:12::i;:::-;32819:89;32857:6;32819:89;;;;;;;;;;;;;;;;;:11;:19;32831:6;32819:19;;;;;;;;;;;;;;;:33;32839:12;:10;:12::i;:::-;32819:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;32788:8;:121::i;:::-;32927:4;32920:11;;32626:313;;;;;:::o;34502:253::-;34568:7;34607;;34596;:18;;34588:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34672:19;34695:10;:8;:10::i;:::-;34672:33;;34723:24;34735:11;34723:7;:11;;:24;;;;:::i;:::-;34716:31;;;34502:253;;;:::o;31731:83::-;31772:5;31797:9;;;;;;;;;;;31790:16;;31731:83;:::o;35104:479::-;10292:12;:10;:12::i;:::-;10281:23;;:7;:5;:7::i;:::-;:23;;;10273:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35186:11:::1;:20;35198:7;35186:20;;;;;;;;;;;;;;;;;;;;;;;;;35178:60;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;35254:9;35249:327;35273:9;:16;;;;35269:1;:20;35249:327;;;35331:7;35315:23;;:9;35325:1;35315:12;;;;;;;;;;;;;;;;;;;;;;;;;:23;;;35311:254;;;35374:9;35403:1;35384:9;:16;;;;:20;35374:31;;;;;;;;;;;;;;;;;;;;;;;;;35359:9;35369:1;35359:12;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35443:1;35424:7;:16;35432:7;35424:16;;;;;;;;;;;;;;;:20;;;;35486:5;35463:11;:20;35475:7;35463:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;35510:9;:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35544:5;;35311:254;35291:3;;;;;;;35249:327;;;;35104:479:::0;:::o;32947:218::-;33035:4;33052:83;33061:12;:10;:12::i;:::-;33075:7;33084:50;33123:10;33084:11;:25;33096:12;:10;:12::i;:::-;33084:25;;;;;;;;;;;;;;;:34;33110:7;33084:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;33052:8;:83::i;:::-;33153:4;33146:11;;32947:218;;;;:::o;30053:26::-;;;;:::o;33673:377::-;33725:14;33742:12;:10;:12::i;:::-;33725:29;;33774:11;:19;33786:6;33774:19;;;;;;;;;;;;;;;;;;;;;;;;;33773:20;33765:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33854:15;33878:19;33889:7;33878:10;:19::i;:::-;33853:44;;;;;;;33926:28;33946:7;33926;:15;33934:6;33926:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;33908:7;:15;33916:6;33908:15;;;;;;;;;;;;;;;:46;;;;33975:20;33987:7;33975;;:11;;:20;;;;:::i;:::-;33965:7;:30;;;;34019:23;34034:7;34019:10;;:14;;:23;;;;:::i;:::-;34006:10;:36;;;;33673:377;;;:::o;36231:111::-;10292:12;:10;:12::i;:::-;10281:23;;:7;:5;:7::i;:::-;:23;;;10273:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36330:4:::1;36300:18;:27;36319:7;36300:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;36231:111:::0;:::o;34058:436::-;34148:7;34187;;34176;:18;;34168:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34246:17;34241:246;;34281:15;34305:19;34316:7;34305:10;:19::i;:::-;34280:44;;;;;;;34346:7;34339:14;;;;;34241:246;34388:23;34419:19;34430:7;34419:10;:19::i;:::-;34386:52;;;;;;;34460:15;34453:22;;;34058:436;;;;;:::o;30295:38::-;;;:::o;30456:40::-;;;;;;;;;;;;;:::o;34763:333::-;10292:12;:10;:12::i;:::-;10281:23;;:7;:5;:7::i;:::-;:23;;;10273:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34846:11:::1;:20;34858:7;34846:20;;;;;;;;;;;;;;;;;;;;;;;;;34845:21;34837:61;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;34931:1;34912:7;:16;34920:7;34912:16;;;;;;;;;;;;;;;;:20;34909:108;;;34968:37;34988:7;:16;34996:7;34988:16;;;;;;;;;;;;;;;;34968:19;:37::i;:::-;34949:7;:16;34957:7;34949:16;;;;;;;;;;;;;;;:56;;;;34909:108;35050:4;35027:11;:20;35039:7;35027:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;35065:9;35080:7;35065:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34763:333:::0;:::o;40583:123::-;40647:4;40671:18;:27;40690:7;40671:27;;;;;;;;;;;;;;;;;;;;;;;;;40664:34;;40583:123;;;:::o;30136:32::-;;;;:::o;31925:198::-;31991:7;32015:11;:20;32027:7;32015:20;;;;;;;;;;;;;;;;;;;;;;;;;32011:49;;;32044:7;:16;32052:7;32044:16;;;;;;;;;;;;;;;;32037:23;;;;32011:49;32078:37;32098:7;:16;32106:7;32098:16;;;;;;;;;;;;;;;;32078:19;:37::i;:::-;32071:44;;31925:198;;;;:::o;10712:148::-;10292:12;:10;:12::i;:::-;10281:23;;:7;:5;:7::i;:::-;:23;;;10273:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10819:1:::1;10782:40;;10803:6;::::0;::::1;;;;;;;;10782:40;;;;;;;;;;;;10850:1;10833:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;10712:148::o:0;30505:54::-;;;;:::o;36900:124::-;10292:12;:10;:12::i;:::-;10281:23;;:7;:5;:7::i;:::-;:23;;;10273:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37002:14:::1;36988:11;;:28;;;;;;;;;;;;;;;;;;36900:124:::0;:::o;33450:120::-;33518:4;33542:11;:20;33554:7;33542:20;;;;;;;;;;;;;;;;;;;;;;;;;33535:27;;33450:120;;;:::o;10061:87::-;10107:7;10134:6;;;;;;;;;;;10127:13;;10061:87;:::o;36770:122::-;10292:12;:10;:12::i;:::-;10281:23;;:7;:5;:7::i;:::-;:23;;;10273:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36872:12:::1;36856:13;:28;;;;36770:122:::0;:::o;31636:87::-;31675:13;31708:7;31701:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31636:87;:::o;33173:269::-;33266:4;33283:129;33292:12;:10;:12::i;:::-;33306:7;33315:96;33354:15;33315:96;;;;;;;;;;;;;;;;;:11;:25;33327:12;:10;:12::i;:::-;33315:25;;;;;;;;;;;;;;;:34;33341:7;33315:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;33283:8;:129::i;:::-;33430:4;33423:11;;33173:269;;;;:::o;32131:167::-;32209:4;32226:42;32236:12;:10;:12::i;:::-;32250:9;32261:6;32226:9;:42::i;:::-;32286:4;32279:11;;32131:167;;;;:::o;37202:171::-;10292:12;:10;:12::i;:::-;10281:23;;:7;:5;:7::i;:::-;:23;;;10273:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37303:8:::1;37279:21;;:32;;;;;;;;;;;;;;;;;;37327:38;37356:8;37327:38;;;;;;;;;;;;;;;;;;;;37202:171:::0;:::o;37032:162::-;10292:12;:10;:12::i;:::-;10281:23;;:7;:5;:7::i;:::-;:23;;;10273:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37126:60:::1;37170:5;37126:25;37138:12;37126:7;;:11;;:25;;;;:::i;:::-;:29;;:60;;;;:::i;:::-;37111:12;:75;;;;37032:162:::0;:::o;32306:143::-;32387:7;32414:11;:18;32426:5;32414:18;;;;;;;;;;;;;;;:27;32433:7;32414:27;;;;;;;;;;;;;;;;32407:34;;32306:143;;;;:::o;30340:79::-;;;;;;;;;;;;;:::o;36350:110::-;10292:12;:10;:12::i;:::-;10281:23;;:7;:5;:7::i;:::-;:23;;;10273:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36447:5:::1;36417:18;:27;36436:7;36417:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;36350:110:::0;:::o;36574:188::-;10292:12;:10;:12::i;:::-;10281:23;;:7;:5;:7::i;:::-;:23;;;10273:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36722:32:::1;36690:29;:64;;;;36574:188:::0;:::o;11015:244::-;10292:12;:10;:12::i;:::-;10281:23;;:7;:5;:7::i;:::-;:23;;;10273:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11124:1:::1;11104:22;;:8;:22;;;;11096:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11214:8;11185:38;;11206:6;::::0;::::1;;;;;;;;11185:38;;;;;;;;;;;;11243:8;11234:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;11015:244:::0;:::o;8690:106::-;8743:15;8778:10;8771:17;;8690:106;:::o;40714:337::-;40824:1;40807:19;;:5;:19;;;;40799:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40905:1;40886:21;;:7;:21;;;;40878:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40989:6;40959:11;:18;40971:5;40959:18;;;;;;;;;;;;;;;:27;40978:7;40959:27;;;;;;;;;;;;;;;:36;;;;41027:7;41011:32;;41020:5;41011:32;;;41036:6;41011:32;;;;;;;;;;;;;;;;;;40714:337;;;:::o;41059:1200::-;41197:1;41181:18;;:4;:18;;;;41173:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41274:1;41260:16;;:2;:16;;;;41252:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41344:1;41335:6;:10;41327:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41423:7;:5;:7::i;:::-;41415:15;;:4;:15;;;;:32;;;;;41440:7;:5;:7::i;:::-;41434:13;;:2;:13;;;;41415:32;41412:125;;;41480:12;;41470:6;:22;;41462:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41412:125;41552:28;41583:24;41601:4;41583:9;:24::i;:::-;41552:55;;41647:12;;41623:20;:36;41620:112;;41708:12;;41685:35;;41620:112;41744:24;41795:29;;41771:20;:53;;41744:80;;41839:19;:40;;;;;41863:16;;;;;;;;;;;41862:17;41839:40;:65;;;;;41891:13;41883:21;;:4;:21;;;;41839:65;:90;;;;;41908:21;;;;;;;;;;;41839:90;41835:226;;;41969:29;;41946:52;;42013:36;42028:20;42013:14;:36::i;:::-;41835:226;42073:12;42088:4;42073:19;;42108:18;:24;42127:4;42108:24;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;42136:18;:22;42155:2;42136:22;;;;;;;;;;;;;;;;;;;;;;;;;42108:50;42105:96;;;42184:5;42174:15;;42105:96;42213:38;42228:4;42233:2;42236:6;42243:7;42213:14;:38::i;:::-;41059:1200;;;;;;:::o;16797:166::-;16883:7;16916:1;16911;:6;;16919:12;16903:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16954:1;16950;:5;16943:12;;16797:166;;;;;:::o;38775:163::-;38816:7;38837:15;38854;38873:19;:17;:19::i;:::-;38836:56;;;;38910:20;38922:7;38910;:11;;:20;;;;:::i;:::-;38903:27;;;;38775:163;:::o;15547:153::-;15605:7;15637:1;15633;:5;15625:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15691:1;15687;:5;;;;;;15680:12;;15547:153;;;;:::o;13970:179::-;14028:7;14048:9;14064:1;14060;:5;14048:17;;14089:1;14084;:6;;14076:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14140:1;14133:8;;;13970:179;;;;:::o;37573:419::-;37632:7;37641;37650;37659;37668;37677;37698:23;37723:12;37737:18;37759:20;37771:7;37759:11;:20::i;:::-;37697:82;;;;;;37791:15;37808:23;37833:12;37849:50;37861:7;37870:4;37876:10;37888;:8;:10::i;:::-;37849:11;:50::i;:::-;37790:109;;;;;;37918:7;37927:15;37944:4;37950:15;37967:4;37973:10;37910:74;;;;;;;;;;;;;;;;;;37573:419;;;;;;;:::o;14432:158::-;14490:7;14523:1;14518;:6;;14510:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14581:1;14577;:5;14570:12;;14432:158;;;;:::o;14849:220::-;14907:7;14936:1;14931;:6;14927:20;;;14946:1;14939:8;;;;14927:20;14958:9;14974:1;14970;:5;14958:17;;15003:1;14998;14994;:5;;;;;;:10;14986:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15060:1;15053:8;;;14849:220;;;;;:::o;42267:671::-;30954:4;30935:16;;:23;;;;;;;;;;;;;;;;;;42352:16:::1;42371:27;42396:1;42371:20;:24;;:27;;;;:::i;:::-;42352:46;;42409:18;42430:15;42443:1;42430:8;:12;;:15;;;;:::i;:::-;42409:36;;42456:22;42481:36;42506:10;42481:20;:24;;:36;;;;:::i;:::-;42456:61;;42530:22;42555:21;42530:46;;42589:28;42606:10;42589:16;:28::i;:::-;42630:18;42651:41;42677:14;42651:21;:25;;:41;;;;:::i;:::-;42630:62;;42703:22;42728:17;42743:1;42728:10;:14;;:17;;;;:::i;:::-;42703:42;;42758:44;42771:14;42787;42758:12;:44::i;:::-;42815:11;;;;;;;;;;;:20;;:43;42836:21;42815:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;42876:54;42891:10;42903;42915:14;42876:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30969:1;;;;;;31000:5:::0;30981:16;;:24;;;;;;;;;;;;;;;;;;42267:671;:::o;43799:818::-;43910:7;43906:40;;43932:14;:12;:14::i;:::-;43906:40;43963:11;:19;43975:6;43963:19;;;;;;;;;;;;;;;;;;;;;;;;;:46;;;;;43987:11;:22;43999:9;43987:22;;;;;;;;;;;;;;;;;;;;;;;;;43986:23;43963:46;43959:597;;;44026:48;44048:6;44056:9;44067:6;44026:21;:48::i;:::-;43959:597;;;44097:11;:19;44109:6;44097:19;;;;;;;;;;;;;;;;;;;;;;;;;44096:20;:46;;;;;44120:11;:22;44132:9;44120:22;;;;;;;;;;;;;;;;;;;;;;;;;44096:46;44092:464;;;44159:46;44179:6;44187:9;44198:6;44159:19;:46::i;:::-;44092:464;;;44228:11;:19;44240:6;44228:19;;;;;;;;;;;;;;;;;;;;;;;;;44227:20;:47;;;;;44252:11;:22;44264:9;44252:22;;;;;;;;;;;;;;;;;;;;;;;;;44251:23;44227:47;44223:333;;;44291:44;44309:6;44317:9;44328:6;44291:17;:44::i;:::-;44223:333;;;44357:11;:19;44369:6;44357:19;;;;;;;;;;;;;;;;;;;;;;;;;:45;;;;;44380:11;:22;44392:9;44380:22;;;;;;;;;;;;;;;;;;;;;;;;;44357:45;44353:203;;;44419:48;44441:6;44449:9;44460:6;44419:21;:48::i;:::-;44353:203;;;44500:44;44518:6;44526:9;44537:6;44500:17;:44::i;:::-;44353:203;44223:333;44092:464;43959:597;44572:7;44568:41;;44594:15;:13;:15::i;:::-;44568:41;43799:818;;;;:::o;38946:555::-;38996:7;39005;39025:15;39043:7;;39025:25;;39061:15;39079:7;;39061:25;;39102:9;39097:289;39121:9;:16;;;;39117:1;:20;39097:289;;;39187:7;39163;:21;39171:9;39181:1;39171:12;;;;;;;;;;;;;;;;;;;;;;;;;39163:21;;;;;;;;;;;;;;;;:31;:66;;;;39222:7;39198;:21;39206:9;39216:1;39206:12;;;;;;;;;;;;;;;;;;;;;;;;;39198:21;;;;;;;;;;;;;;;;:31;39163:66;39159:97;;;39239:7;;39248;;39231:25;;;;;;;;;39159:97;39281:34;39293:7;:21;39301:9;39311:1;39301:12;;;;;;;;;;;;;;;;;;;;;;;;;39293:21;;;;;;;;;;;;;;;;39281:7;:11;;:34;;;;:::i;:::-;39271:44;;39340:34;39352:7;:21;39360:9;39370:1;39360:12;;;;;;;;;;;;;;;;;;;;;;;;;39352:21;;;;;;;;;;;;;;;;39340:7;:11;;:34;;;;:::i;:::-;39330:44;;39139:3;;;;;;;39097:289;;;;39410:20;39422:7;;39410;;:11;;:20;;;;:::i;:::-;39400:7;:30;39396:61;;;39440:7;;39449;;39432:25;;;;;;;;39396:61;39476:7;39485;39468:25;;;;;;38946:555;;;:::o;38000:330::-;38060:7;38069;38078;38098:12;38113:24;38129:7;38113:15;:24::i;:::-;38098:39;;38148:18;38169:30;38191:7;38169:21;:30::i;:::-;38148:51;;38210:23;38236:33;38258:10;38236:17;38248:4;38236:7;:11;;:17;;;;:::i;:::-;:21;;:33;;;;:::i;:::-;38210:59;;38288:15;38305:4;38311:10;38280:42;;;;;;;;;38000:330;;;;;:::o;38338:429::-;38453:7;38462;38471;38491:15;38509:24;38521:11;38509:7;:11;;:24;;;;:::i;:::-;38491:42;;38544:12;38559:21;38568:11;38559:4;:8;;:21;;;;:::i;:::-;38544:36;;38591:18;38612:27;38627:11;38612:10;:14;;:27;;;;:::i;:::-;38591:48;;38650:23;38676:33;38698:10;38676:17;38688:4;38676:7;:11;;:17;;;;:::i;:::-;:21;;:33;;;;:::i;:::-;38650:59;;38728:7;38737:15;38754:4;38720:39;;;;;;;;;;38338:429;;;;;;;;:::o;42946:475::-;43012:21;43050:1;43036:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43012:40;;43081:4;43063;43068:1;43063:7;;;;;;;;;;;;;:23;;;;;;;;;;;43107:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43097:4;43102:1;43097:7;;;;;;;;;;;;;:32;;;;;;;;;;;43142:62;43159:4;43174:15;43192:11;43142:8;:62::i;:::-;43217:15;:66;;;43298:11;43324:1;43340:4;43367;43387:15;43217:196;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42946:475;;:::o;43429:362::-;43510:62;43527:4;43542:15;43560:11;43510:8;:62::i;:::-;43585:15;:31;;;43624:9;43657:4;43677:11;43703:1;43719;43735:7;:5;:7::i;:::-;43757:15;43585:198;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43429:362;;:::o;40208:234::-;40265:1;40254:7;;:12;:34;;;;;40287:1;40270:13;;:18;40254:34;40251:46;;;40290:7;;40251:46;40327:7;;40309:15;:25;;;;40369:13;;40345:21;:37;;;;40405:1;40395:7;:11;;;;40433:1;40417:13;:17;;;;40208:234;:::o;45718:563::-;45821:15;45838:23;45863:12;45877:23;45902:12;45916:18;45938:19;45949:7;45938:10;:19::i;:::-;45820:137;;;;;;;;;;;;45986:28;46006:7;45986;:15;45994:6;45986:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;45968:7;:15;45976:6;45968:15;;;;;;;;;;;;;;;:46;;;;46043:28;46063:7;46043;:15;46051:6;46043:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;46025:7;:15;46033:6;46025:15;;;;;;;;;;;;;;;:46;;;;46103:39;46126:15;46103:7;:18;46111:9;46103:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;46082:7;:18;46090:9;46082:18;;;;;;;;;;;;;;;:60;;;;46153:26;46168:10;46153:14;:26::i;:::-;46190:23;46202:4;46208;46190:11;:23::i;:::-;46246:9;46229:44;;46238:6;46229:44;;;46257:15;46229:44;;;;;;;;;;;;;;;;;;45718:563;;;;;;;;;:::o;45135:575::-;45236:15;45253:23;45278:12;45292:23;45317:12;45331:18;45353:19;45364:7;45353:10;:19::i;:::-;45235:137;;;;;;;;;;;;45401:28;45421:7;45401;:15;45409:6;45401:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;45383:7;:15;45391:6;45383:15;;;;;;;;;;;;;;;:46;;;;45461:39;45484:15;45461:7;:18;45469:9;45461:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;45440:7;:18;45448:9;45440:18;;;;;;;;;;;;;;;:60;;;;45532:39;45555:15;45532:7;:18;45540:9;45532:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;45511:7;:18;45519:9;45511:18;;;;;;;;;;;;;;;:60;;;;45582:26;45597:10;45582:14;:26::i;:::-;45619:23;45631:4;45637;45619:11;:23::i;:::-;45675:9;45658:44;;45667:6;45658:44;;;45686:15;45658:44;;;;;;;;;;;;;;;;;;45135:575;;;;;;;;;:::o;44625:502::-;44724:15;44741:23;44766:12;44780:23;44805:12;44819:18;44841:19;44852:7;44841:10;:19::i;:::-;44723:137;;;;;;;;;;;;44889:28;44909:7;44889;:15;44897:6;44889:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;44871:7;:15;44879:6;44871:15;;;;;;;;;;;;;;;:46;;;;44949:39;44972:15;44949:7;:18;44957:9;44949:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;44928:7;:18;44936:9;44928:18;;;;;;;;;;;;;;;:60;;;;44999:26;45014:10;44999:14;:26::i;:::-;45036:23;45048:4;45054;45036:11;:23::i;:::-;45092:9;45075:44;;45084:6;45075:44;;;45103:15;45075:44;;;;;;;;;;;;;;;;;;44625:502;;;;;;;;;:::o;35589:634::-;35692:15;35709:23;35734:12;35748:23;35773:12;35787:18;35809:19;35820:7;35809:10;:19::i;:::-;35691:137;;;;;;;;;;;;35857:28;35877:7;35857;:15;35865:6;35857:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;35839:7;:15;35847:6;35839:15;;;;;;;;;;;;;;;:46;;;;35914:28;35934:7;35914;:15;35922:6;35914:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;35896:7;:15;35904:6;35896:15;;;;;;;;;;;;;;;:46;;;;35974:39;35997:15;35974:7;:18;35982:9;35974:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;35953:7;:18;35961:9;35953:18;;;;;;;;;;;;;;;:60;;;;36045:39;36068:15;36045:7;:18;36053:9;36045:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;36024:7;:18;36032:9;36024:18;;;;;;;;;;;;;;;:60;;;;36095:26;36110:10;36095:14;:26::i;:::-;36132:23;36144:4;36150;36132:11;:23::i;:::-;36188:9;36171:44;;36180:6;36171:44;;;36199:15;36171:44;;;;;;;;;;;;;;;;;;35589:634;;;;;;;;;:::o;40450:125::-;40504:15;;40494:7;:25;;;;40546:21;;40530:13;:37;;;;40450:125::o;39872:154::-;39936:7;39963:55;40002:5;39963:20;39975:7;;39963;:11;;:20;;;;:::i;:::-;:24;;:55;;;;:::i;:::-;39956:62;;39872:154;;;:::o;40034:166::-;40104:7;40131:61;40176:5;40131:26;40143:13;;40131:7;:11;;:26;;;;:::i;:::-;:30;;:61;;;;:::i;:::-;40124:68;;40034:166;;;:::o;39509:355::-;39572:19;39595:10;:8;:10::i;:::-;39572:33;;39616:18;39637:27;39652:11;39637:10;:14;;:27;;;;:::i;:::-;39616:48;;39700:38;39727:10;39700:7;:22;39716:4;39700:22;;;;;;;;;;;;;;;;:26;;:38;;;;:::i;:::-;39675:7;:22;39691:4;39675:22;;;;;;;;;;;;;;;:63;;;;39752:11;:26;39772:4;39752:26;;;;;;;;;;;;;;;;;;;;;;;;;39749:107;;;39818:38;39845:10;39818:7;:22;39834:4;39818:22;;;;;;;;;;;;;;;;:26;;:38;;;;:::i;:::-;39793:7;:22;39809:4;39793:22;;;;;;;;;;;;;;;:63;;;;39749:107;39509:355;;;:::o;37418:147::-;37496:17;37508:4;37496:7;;:11;;:17;;;;:::i;:::-;37486:7;:27;;;;37537:20;37552:4;37537:10;;:14;;:20;;;;:::i;:::-;37524:10;:33;;;;37418:147;;:::o

Swarm Source

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