ETH Price: $3,076.88 (-1.34%)
Gas: 2 Gwei

Token

BlockBlend (BBL)
 

Overview

Max Total Supply

111,027,255.039830377892669036 BBL

Holders

521 (0.00%)

Market

Price

$0.01 @ 0.000003 ETH (-0.05%)

Onchain Market Cap

$980,325.14

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
146,883.87 BBL

Value
$1,296.92 ( ~0.421504703906614 Eth) [0.1323%]
0xa3ebfcd1e5ab23d0c235b1fc88be8ee3f06d1d73
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Going beyond the norm, BlockBlend offers non-KYC, anonymous, multi-chain transactions. User can send ETH and receive BTC in one easy, untraceable transaction using BBL's bridge

Market

Volume (24H):$46.81
Market Capitalization:$0.00
Circulating Supply:0.00 BBL
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BlockBlend

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-29
*/

// File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol

pragma solidity >=0.5.0;

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

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

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

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

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

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

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

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

    function initialize(address, address) external;
}

// File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol

pragma solidity >=0.5.0;

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

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

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

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

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

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol

pragma solidity >=0.6.2;

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

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

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

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol

pragma solidity >=0.6.2;


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

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

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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");

        (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 functionCallWithValue(target, data, 0, "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");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // 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
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

// File: @openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @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 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) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @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() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}

// File: @openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;




/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        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);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

// File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

// File: bblv2.sol



pragma solidity ^0.8.16;








contract BlockBlend is ERC20Burnable, Ownable {
    using SafeERC20 for IERC20;

    uint256 private TOTAL_SUPPLY = 111_111_111 ether;

    bool public marsMission;

    // Addresses for fees
    address public marketingAddr;
    address public teamAddr;
    address public communityAddr;

    // Dex
    IUniswapV2Router02 public router;
    mapping(address => bool) public pairs;
    address public mainPair;

    // Fees
    struct buyFee {
        uint256 marketing;
        uint256 team;
        uint256 community;
    }

    buyFee public buyFees;

    struct sellFee {
        uint256 marketing;
        uint256 team;
        uint256 community;
    }

    sellFee public sellFees;
    uint256 public burnOnSell;

    bool disableBuyFees;
    bool disableSellFees;

    mapping (address => bool) public exempts;

    // Automatic swap
    struct SwapToken {
        uint256 max;
        uint256 maxPercent;
        uint256 last;
        uint256 delay;
        uint256 distribute;
    }

    SwapToken public swapTokens;

    constructor(IUniswapV2Router02 _router) ERC20("BlockBlend", "BBL") {
        _mint(msg.sender, TOTAL_SUPPLY);

        // Set addresses for fees
        marketingAddr = msg.sender;
        teamAddr = msg.sender;
        communityAddr = msg.sender;

        // Set BUY fees
        buyFees.marketing = 5; // 0.5%
        buyFees.team = 15; // 1.5%
        buyFees.community = 5; // 0.5%

        // Set SELL fees & burn
        sellFees.marketing = 5; // 5%
        sellFees.team = 20; // 2%
        sellFees.community = 5; // 5%

        burnOnSell = 1; // 0.1%

        exempts[msg.sender] = true;
        exempts[marketingAddr] = true;
        exempts[teamAddr] = true;
        exempts[communityAddr] = true;
        exempts[address(this)] = true;

        // Automatic swap
        swapTokens.max = TOTAL_SUPPLY / 400;
        swapTokens.maxPercent = 5; // 0.5%
        swapTokens.delay = 5 minutes;
        swapTokens.distribute = 25 ether / 100;

        // Dex
        router = IUniswapV2Router02(_router);
        mainPair = IUniswapV2Factory(router.factory()).createPair(address(this), router.WETH());
        pairs[mainPair] = true;
 
        _approve(address(this), address(router), TOTAL_SUPPLY);
        approve(address(router), TOTAL_SUPPLY);
    }
    
    /**
        Restore original fees
    */

    function startMarsMission() external onlyOwner {
        marsMission = true;
    }

    /**
        Swap tokens
    */
    function setSwapTokens(uint256 _max, uint256 _maxPercent, uint256 _last, uint256 _delay, uint256 _distribute) external onlyOwner {
        require(_max < TOTAL_SUPPLY / 100 && _maxPercent <= 50, "Invalid max values!");
        swapTokens.max = _max;
        swapTokens.last = _last;
        swapTokens.delay = _delay;
        swapTokens.distribute = _distribute;
        swapTokens.maxPercent = _maxPercent;
    }

    /**
        Add/remove pair
    */

    function addTradingPair(address _pair, bool _enable) external onlyOwner {
        pairs[_pair] = _enable;
    }

    /**
        Disable fee
    */
    function disableFeesForBuy(bool _disableBuyFees) external onlyOwner {
        disableBuyFees = _disableBuyFees;
    }

    function disableFeesForSell(bool _disableSellFees) external onlyOwner {
        disableSellFees = _disableSellFees;
    }

    /**
        Automatic swap
    */

    function swapForETH(uint256 _amount) internal {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = router.WETH();
        _approve(address(this), address(router), _amount);
        router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            _amount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function sendETH(uint256 _amount) private {
        payable(marketingAddr).transfer(_amount / 5 * 3);
        payable(teamAddr).transfer(_amount / 5);
        payable(communityAddr).transfer(_amount / 5);
    }

    function triggerSwapForETH(uint256 _amount) external onlyOwner {
        swapForETH(_amount);
    }

    function triggerDistribution() external onlyOwner {
        sendETH(address(this).balance);
    }

    /**
        Sets the free trading for the specific address
    */
    function setExempts(address _address, bool _value) external onlyOwner {
        require(exempts[_address] != _value, "Already set!");
        exempts[_address] = _value;
    }

    /**
        Claim tokens
    */
    function claimTokens(IERC20 _token) external onlyOwner {
        _token.safeTransfer(msg.sender, _token.balanceOf(address(this)));
    }

    /**
        Swaps tokens on sell
    */
    function triggerSwap() internal {
        uint256 tokenBalance = balanceOf(address(this));
        uint256 pairBalance = balanceOf(mainPair);
        uint256 toSwap = swapTokens.max;

        if ((tokenBalance >= swapTokens.max || tokenBalance >= pairBalance * swapTokens.maxPercent / 1000) && block.timestamp > swapTokens.last + swapTokens.delay) {
            if(pairBalance * swapTokens.maxPercent / 1000 < swapTokens.max) {
                toSwap = pairBalance * swapTokens.maxPercent / 1000;
            }

            swapForETH(toSwap);

            swapTokens.last = block.timestamp;

            if(address(this).balance >= swapTokens.distribute) {
                sendETH(address(this).balance);
            }
        }
    }

    /**
        Transfer - with fees
    */
    function _transfer(address from, address to, uint256 amount) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        
        uint256 fees;
        uint256 tokensAsFees;
        uint256 tokensToBurn;
        bool isExempt;

        if(exempts[to] || exempts[from]) {
            isExempt = true;
        }
        
        if(!isExempt) {
            // SELL
            if(pairs[to] == true && !disableSellFees) {
                // Calculate total fees
                fees = sellFees.marketing + sellFees.team + sellFees.community;
                tokensToBurn = amount * burnOnSell / 1000;

                // Fees are 4.5 times more the until owner calls startMarsMission()
                if(!marsMission) {
                    fees = fees * 45 / 10;
                }

                if(swapTokens.max > 0) {
                    triggerSwap();
                }
            
            // BUY
            } else if(pairs[from] == true && !disableBuyFees) {
                // Calculate total fees
                fees = buyFees.marketing + buyFees.team + buyFees.community;
            }

            tokensAsFees = amount * fees / 1000; // fees in tokens
            
            // transfer fees to contract
            if(tokensAsFees > 0) {
                super._transfer(from, address(this), tokensAsFees);

                if(tokensToBurn > 0) {
                    burnFrom(from, tokensToBurn);
                }
            }
        }

        // transfer tokens to user
        amount = amount - tokensAsFees - tokensToBurn;
        super._transfer(from, to, amount);
    }

    fallback() external payable {}
    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract IUniswapV2Router02","name":"_router","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address","name":"_pair","type":"address"},{"internalType":"bool","name":"_enable","type":"bool"}],"name":"addTradingPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnOnSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFees","outputs":[{"internalType":"uint256","name":"marketing","type":"uint256"},{"internalType":"uint256","name":"team","type":"uint256"},{"internalType":"uint256","name":"community","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"}],"name":"claimTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"communityAddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_disableBuyFees","type":"bool"}],"name":"disableFeesForBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_disableSellFees","type":"bool"}],"name":"disableFeesForSell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"exempts","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"mainPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingAddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marsMission","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":"address","name":"","type":"address"}],"name":"pairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellFees","outputs":[{"internalType":"uint256","name":"marketing","type":"uint256"},{"internalType":"uint256","name":"team","type":"uint256"},{"internalType":"uint256","name":"community","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_value","type":"bool"}],"name":"setExempts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"},{"internalType":"uint256","name":"_maxPercent","type":"uint256"},{"internalType":"uint256","name":"_last","type":"uint256"},{"internalType":"uint256","name":"_delay","type":"uint256"},{"internalType":"uint256","name":"_distribute","type":"uint256"}],"name":"setSwapTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startMarsMission","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokens","outputs":[{"internalType":"uint256","name":"max","type":"uint256"},{"internalType":"uint256","name":"maxPercent","type":"uint256"},{"internalType":"uint256","name":"last","type":"uint256"},{"internalType":"uint256","name":"delay","type":"uint256"},{"internalType":"uint256","name":"distribute","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamAddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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":"triggerDistribution","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"triggerSwapForETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526a5be8b1658c6bb9eabc00006006553480156200002057600080fd5b5060405162004b2c38038062004b2c833981810160405281019062000046919062000c5b565b6040518060400160405280600a81526020017f426c6f636b426c656e64000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f42424c00000000000000000000000000000000000000000000000000000000008152508160039081620000c3919062000f07565b508060049081620000d5919062000f07565b505050620000f8620000ec6200079460201b60201c565b6200079c60201b60201c565b6200010c336006546200086260201b60201c565b33600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506005600d60000181905550600f600d600101819055506005600d6002018190555060056010600001819055506014601060010181905550600560106002018190555060016013819055506001601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160156000600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160156000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160156000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601560003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506101906006546200044991906200104c565b601660000181905550600560166001018190555061012c6016600301819055506703782dace9d9000060166004018190555080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200052a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620005509190620010b5565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620005da573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620006009190620010b5565b6040518363ffffffff1660e01b81526004016200061f929190620010f8565b6020604051808303816000875af11580156200063f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620006659190620010b5565b600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200075630600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600654620009cf60201b60201c565b6200078c600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660065462000ba060201b60201c565b505062001341565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620008d4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008cb9062001186565b60405180910390fd5b620008e86000838362000bd360201b60201c565b8060026000828254620008fc9190620011a8565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620009af9190620011f4565b60405180910390a3620009cb6000838362000bd860201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000a41576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a389062001287565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000ab3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000aaa906200131f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000b939190620011f4565b60405180910390a3505050565b60008062000bb36200079460201b60201c565b905062000bc8818585620009cf60201b60201c565b600191505092915050565b505050565b505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c0f8262000be2565b9050919050565b600062000c238262000c02565b9050919050565b62000c358162000c16565b811462000c4157600080fd5b50565b60008151905062000c558162000c2a565b92915050565b60006020828403121562000c745762000c7362000bdd565b5b600062000c848482850162000c44565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000d0f57607f821691505b60208210810362000d255762000d2462000cc7565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000d8f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000d50565b62000d9b868362000d50565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000de862000de262000ddc8462000db3565b62000dbd565b62000db3565b9050919050565b6000819050919050565b62000e048362000dc7565b62000e1c62000e138262000def565b84845462000d5d565b825550505050565b600090565b62000e3362000e24565b62000e4081848462000df9565b505050565b5b8181101562000e685762000e5c60008262000e29565b60018101905062000e46565b5050565b601f82111562000eb75762000e818162000d2b565b62000e8c8462000d40565b8101602085101562000e9c578190505b62000eb462000eab8562000d40565b83018262000e45565b50505b505050565b600082821c905092915050565b600062000edc6000198460080262000ebc565b1980831691505092915050565b600062000ef7838362000ec9565b9150826002028217905092915050565b62000f128262000c8d565b67ffffffffffffffff81111562000f2e5762000f2d62000c98565b5b62000f3a825462000cf6565b62000f4782828562000e6c565b600060209050601f83116001811462000f7f576000841562000f6a578287015190505b62000f76858262000ee9565b86555062000fe6565b601f19841662000f8f8662000d2b565b60005b8281101562000fb95784890151825560018201915060208501945060208101905062000f92565b8683101562000fd9578489015162000fd5601f89168262000ec9565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620010598262000db3565b9150620010668362000db3565b92508262001079576200107862000fee565b5b828204905092915050565b6200108f8162000c02565b81146200109b57600080fd5b50565b600081519050620010af8162001084565b92915050565b600060208284031215620010ce57620010cd62000bdd565b5b6000620010de848285016200109e565b91505092915050565b620010f28162000c02565b82525050565b60006040820190506200110f6000830185620010e7565b6200111e6020830184620010e7565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200116e601f8362001125565b91506200117b8262001136565b602082019050919050565b60006020820190508181036000830152620011a1816200115f565b9050919050565b6000620011b58262000db3565b9150620011c28362000db3565b9250828201905080821115620011dd57620011dc6200101d565b5b92915050565b620011ee8162000db3565b82525050565b60006020820190506200120b6000830184620011e3565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006200126f60248362001125565b91506200127c8262001211565b604082019050919050565b60006020820190508181036000830152620012a28162001260565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006200130760228362001125565b91506200131482620012a9565b604082019050919050565b600060208201905081810360008301526200133a81620012f8565b9050919050565b6137db80620013516000396000f3fe60806040526004361061021e5760003560e01c8063715018a611610123578063ab83756d116100ab578063e4748b9e1161006f578063e4748b9e146107d1578063eb6da3fc146107fe578063f2fde38b14610827578063f887ea4014610850578063fe33b3021461087b57610225565b8063ab83756d146106fe578063be09003114610727578063dd62ed3e1461073e578063df8de3e71461077b578063e0f3ccf5146107a457610225565b80638da5cb5b116100f25780638da5cb5b146106055780638ed1b1d51461063057806395d89b4114610659578063a457c2d714610684578063a9059cbb146106c157610225565b8063715018a61461056b57806373d002241461058257806379cc6790146105b157806385af30c5146105da57610225565b8063377ccf3a116101a657806343aa5a5e1161017557806343aa5a5e1461047257806343bf68f4146104af57806346325e0f146104da5780634a5ff7491461050357806370a082311461052e57610225565b8063377ccf3a146103b657806339509351146103e15780633ff42b921461041e57806342966c681461044957610225565b806318160ddd116101ed57806318160ddd146102e35780631c0efae11461030e57806323b872dd14610337578063313ce5671461037457806335cd4b461461039f57610225565b806306fdde0314610227578063095ea7b31461025257806311c4d4f41461028f578063130af2ea146102ba57610225565b3661022557005b005b34801561023357600080fd5b5061023c6108b8565b6040516102499190612580565b60405180910390f35b34801561025e57600080fd5b506102796004803603810190610274919061263b565b61094a565b6040516102869190612696565b60405180910390f35b34801561029b57600080fd5b506102a461096d565b6040516102b191906126c0565b60405180910390f35b3480156102c657600080fd5b506102e160048036038101906102dc9190612707565b610993565b005b3480156102ef57600080fd5b506102f8610a88565b6040516103059190612756565b60405180910390f35b34801561031a57600080fd5b5061033560048036038101906103309190612771565b610a92565b005b34801561034357600080fd5b5061035e6004803603810190610359919061279e565b610aa6565b60405161036b9190612696565b60405180910390f35b34801561038057600080fd5b50610389610ad5565b604051610396919061280d565b60405180910390f35b3480156103ab57600080fd5b506103b4610ade565b005b3480156103c257600080fd5b506103cb610af1565b6040516103d89190612756565b60405180910390f35b3480156103ed57600080fd5b506104086004803603810190610403919061263b565b610af7565b6040516104159190612696565b60405180910390f35b34801561042a57600080fd5b50610433610b2e565b60405161044091906126c0565b60405180910390f35b34801561045557600080fd5b50610470600480360381019061046b9190612771565b610b54565b005b34801561047e57600080fd5b5061049960048036038101906104949190612828565b610b68565b6040516104a69190612696565b60405180910390f35b3480156104bb57600080fd5b506104c4610b88565b6040516104d19190612696565b60405180910390f35b3480156104e657600080fd5b5061050160048036038101906104fc9190612855565b610b9b565b005b34801561050f57600080fd5b50610518610c39565b60405161052591906126c0565b60405180910390f35b34801561053a57600080fd5b5061055560048036038101906105509190612828565b610c5f565b6040516105629190612756565b60405180910390f35b34801561057757600080fd5b50610580610ca7565b005b34801561058e57600080fd5b50610597610cbb565b6040516105a89594939291906128d0565b60405180910390f35b3480156105bd57600080fd5b506105d860048036038101906105d3919061263b565b610cdf565b005b3480156105e657600080fd5b506105ef610cff565b6040516105fc91906126c0565b60405180910390f35b34801561061157600080fd5b5061061a610d25565b60405161062791906126c0565b60405180910390f35b34801561063c57600080fd5b5061065760048036038101906106529190612923565b610d4f565b005b34801561066557600080fd5b5061066e610d74565b60405161067b9190612580565b60405180910390f35b34801561069057600080fd5b506106ab60048036038101906106a6919061263b565b610e06565b6040516106b89190612696565b60405180910390f35b3480156106cd57600080fd5b506106e860048036038101906106e3919061263b565b610e7d565b6040516106f59190612696565b60405180910390f35b34801561070a57600080fd5b5061072560048036038101906107209190612707565b610ea0565b005b34801561073357600080fd5b5061073c610f03565b005b34801561074a57600080fd5b5061076560048036038101906107609190612950565b610f28565b6040516107729190612756565b60405180910390f35b34801561078757600080fd5b506107a2600480360381019061079d91906129ce565b610faf565b005b3480156107b057600080fd5b506107b961105e565b6040516107c8939291906129fb565b60405180910390f35b3480156107dd57600080fd5b506107e6611076565b6040516107f5939291906129fb565b60405180910390f35b34801561080a57600080fd5b5061082560048036038101906108209190612923565b61108e565b005b34801561083357600080fd5b5061084e60048036038101906108499190612828565b6110b3565b005b34801561085c57600080fd5b50610865611136565b6040516108729190612a91565b60405180910390f35b34801561088757600080fd5b506108a2600480360381019061089d9190612828565b61115c565b6040516108af9190612696565b60405180910390f35b6060600380546108c790612adb565b80601f01602080910402602001604051908101604052809291908181526020018280546108f390612adb565b80156109405780601f1061091557610100808354040283529160200191610940565b820191906000526020600020905b81548152906001019060200180831161092357829003601f168201915b5050505050905090565b60008061095561117c565b9050610962818585611184565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61099b61134d565b801515601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503610a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2490612b58565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600254905090565b610a9a61134d565b610aa3816113cb565b50565b600080610ab161117c565b9050610abe85828561160e565b610ac985858561169a565b60019150509392505050565b60006012905090565b610ae661134d565b610aef47611a3f565b565b60135481565b600080610b0261117c565b9050610b23818585610b148589610f28565b610b1e9190612ba7565b611184565b600191505092915050565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610b65610b5f61117c565b82611bad565b50565b60156020528060005260406000206000915054906101000a900460ff1681565b600760009054906101000a900460ff1681565b610ba361134d565b6064600654610bb29190612c0a565b85108015610bc1575060328411155b610c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf790612c87565b60405180910390fd5b84601660000181905550826016600201819055508160166003018190555080601660040181905550836016600101819055505050505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610caf61134d565b610cb96000611d7a565b565b60168060000154908060010154908060020154908060030154908060040154905085565b610cf182610ceb61117c565b8361160e565b610cfb8282611bad565b5050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610d5761134d565b80601460006101000a81548160ff02191690831515021790555050565b606060048054610d8390612adb565b80601f0160208091040260200160405190810160405280929190818152602001828054610daf90612adb565b8015610dfc5780601f10610dd157610100808354040283529160200191610dfc565b820191906000526020600020905b815481529060010190602001808311610ddf57829003601f168201915b5050505050905090565b600080610e1161117c565b90506000610e1f8286610f28565b905083811015610e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5b90612d19565b60405180910390fd5b610e718286868403611184565b60019250505092915050565b600080610e8861117c565b9050610e9581858561169a565b600191505092915050565b610ea861134d565b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610f0b61134d565b6001600760006101000a81548160ff021916908315150217905550565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610fb761134d565b61105b338273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610ff491906126c0565b602060405180830381865afa158015611011573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110359190612d4e565b8373ffffffffffffffffffffffffffffffffffffffff16611e409092919063ffffffff16565b50565b60108060000154908060010154908060020154905083565b600d8060000154908060010154908060020154905083565b61109661134d565b80601460016101000a81548160ff02191690831515021790555050565b6110bb61134d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361112a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112190612ded565b60405180910390fd5b61113381611d7a565b50565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b6020528060005260406000206000915054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ea90612e7f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611262576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125990612f11565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516113409190612756565b60405180910390a3505050565b61135561117c565b73ffffffffffffffffffffffffffffffffffffffff16611373610d25565b73ffffffffffffffffffffffffffffffffffffffff16146113c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c090612f7d565b60405180910390fd5b565b6000600267ffffffffffffffff8111156113e8576113e7612f9d565b5b6040519080825280602002602001820160405280156114165781602001602082028036833780820191505090505b509050308160008151811061142e5761142d612fcc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156114d5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114f99190613010565b8160018151811061150d5761150c612fcc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061157430600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611184565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016115d8959493929190613136565b600060405180830381600087803b1580156115f257600080fd5b505af1158015611606573d6000803e3d6000fd5b505050505050565b600061161a8484610f28565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146116945781811015611686576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167d906131dc565b60405180910390fd5b6116938484848403611184565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611709576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117009061326e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611778576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176f90613300565b60405180910390fd5b600080600080601560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061181f5750601560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561182957600190505b80611a125760011515600b60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514801561189b5750601460019054906101000a900460ff16155b15611931576010600201546010600101546010600001546118bc9190612ba7565b6118c69190612ba7565b93506103e8601354866118d99190613320565b6118e39190612c0a565b9150600760009054906101000a900460ff1661191557600a602d856119089190613320565b6119129190612c0a565b93505b6000601660000154111561192c5761192b611ec6565b5b6119cd565b60011515600b60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514801561199e5750601460009054906101000a900460ff16155b156119cc57600d60020154600d60010154600d600001546119bf9190612ba7565b6119c99190612ba7565b93505b5b6103e884866119dc9190613320565b6119e69190612c0a565b92506000831115611a11576119fc873085611fdc565b6000821115611a1057611a0f8783610cdf565b5b5b5b818386611a1f9190613362565b611a299190613362565b9450611a36878787611fdc565b50505050505050565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6003600584611a8a9190612c0a565b611a949190613320565b9081150290604051600060405180830381858888f19350505050158015611abf573d6000803e3d6000fd5b50600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc600583611b099190612c0a565b9081150290604051600060405180830381858888f19350505050158015611b34573d6000803e3d6000fd5b50600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc600583611b7e9190612c0a565b9081150290604051600060405180830381858888f19350505050158015611ba9573d6000803e3d6000fd5b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1390613408565b60405180910390fd5b611c2882600083612252565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca59061349a565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611d619190612756565b60405180910390a3611d7583600084612257565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611ec18363a9059cbb60e01b8484604051602401611e5f9291906134ba565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061225c565b505050565b6000611ed130610c5f565b90506000611f00600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610c5f565b90506000601660000154905060166000015483101580611f3d57506103e860166001015483611f2f9190613320565b611f399190612c0a565b8310155b8015611f5d5750601660030154601660020154611f5a9190612ba7565b42115b15611fd7576016600001546103e860166001015484611f7c9190613320565b611f869190612c0a565b1015611fad576103e860166001015483611fa09190613320565b611faa9190612c0a565b90505b611fb6816113cb565b426016600201819055506016600401544710611fd657611fd547611a3f565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361204b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120429061326e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036120ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b190613300565b60405180910390fd5b6120c5838383612252565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561214b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214290613555565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516122399190612756565b60405180910390a361224c848484612257565b50505050565b505050565b505050565b60006122be826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166123239092919063ffffffff16565b905060008151111561231e57808060200190518101906122de919061358a565b61231d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231490613629565b60405180910390fd5b5b505050565b6060612332848460008561233b565b90509392505050565b606082471015612380576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612377906136bb565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516123a99190613722565b60006040518083038185875af1925050503d80600081146123e6576040519150601f19603f3d011682016040523d82523d6000602084013e6123eb565b606091505b50915091506123fc87838387612408565b92505050949350505050565b6060831561246a576000835103612462576124228561247d565b612461576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245890613785565b60405180910390fd5b5b829050612475565b61247483836124a0565b5b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000825111156124b35781518083602001fd5b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e79190612580565b60405180910390fd5b600081519050919050565b600082825260208201905092915050565b60005b8381101561252a57808201518184015260208101905061250f565b60008484015250505050565b6000601f19601f8301169050919050565b6000612552826124f0565b61255c81856124fb565b935061256c81856020860161250c565b61257581612536565b840191505092915050565b6000602082019050818103600083015261259a8184612547565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006125d2826125a7565b9050919050565b6125e2816125c7565b81146125ed57600080fd5b50565b6000813590506125ff816125d9565b92915050565b6000819050919050565b61261881612605565b811461262357600080fd5b50565b6000813590506126358161260f565b92915050565b60008060408385031215612652576126516125a2565b5b6000612660858286016125f0565b925050602061267185828601612626565b9150509250929050565b60008115159050919050565b6126908161267b565b82525050565b60006020820190506126ab6000830184612687565b92915050565b6126ba816125c7565b82525050565b60006020820190506126d560008301846126b1565b92915050565b6126e48161267b565b81146126ef57600080fd5b50565b600081359050612701816126db565b92915050565b6000806040838503121561271e5761271d6125a2565b5b600061272c858286016125f0565b925050602061273d858286016126f2565b9150509250929050565b61275081612605565b82525050565b600060208201905061276b6000830184612747565b92915050565b600060208284031215612787576127866125a2565b5b600061279584828501612626565b91505092915050565b6000806000606084860312156127b7576127b66125a2565b5b60006127c5868287016125f0565b93505060206127d6868287016125f0565b92505060406127e786828701612626565b9150509250925092565b600060ff82169050919050565b612807816127f1565b82525050565b600060208201905061282260008301846127fe565b92915050565b60006020828403121561283e5761283d6125a2565b5b600061284c848285016125f0565b91505092915050565b600080600080600060a08688031215612871576128706125a2565b5b600061287f88828901612626565b955050602061289088828901612626565b94505060406128a188828901612626565b93505060606128b288828901612626565b92505060806128c388828901612626565b9150509295509295909350565b600060a0820190506128e56000830188612747565b6128f26020830187612747565b6128ff6040830186612747565b61290c6060830185612747565b6129196080830184612747565b9695505050505050565b600060208284031215612939576129386125a2565b5b6000612947848285016126f2565b91505092915050565b60008060408385031215612967576129666125a2565b5b6000612975858286016125f0565b9250506020612986858286016125f0565b9150509250929050565b600061299b826125c7565b9050919050565b6129ab81612990565b81146129b657600080fd5b50565b6000813590506129c8816129a2565b92915050565b6000602082840312156129e4576129e36125a2565b5b60006129f2848285016129b9565b91505092915050565b6000606082019050612a106000830186612747565b612a1d6020830185612747565b612a2a6040830184612747565b949350505050565b6000819050919050565b6000612a57612a52612a4d846125a7565b612a32565b6125a7565b9050919050565b6000612a6982612a3c565b9050919050565b6000612a7b82612a5e565b9050919050565b612a8b81612a70565b82525050565b6000602082019050612aa66000830184612a82565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612af357607f821691505b602082108103612b0657612b05612aac565b5b50919050565b7f416c726561647920736574210000000000000000000000000000000000000000600082015250565b6000612b42600c836124fb565b9150612b4d82612b0c565b602082019050919050565b60006020820190508181036000830152612b7181612b35565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612bb282612605565b9150612bbd83612605565b9250828201905080821115612bd557612bd4612b78565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612c1582612605565b9150612c2083612605565b925082612c3057612c2f612bdb565b5b828204905092915050565b7f496e76616c6964206d61782076616c7565732100000000000000000000000000600082015250565b6000612c716013836124fb565b9150612c7c82612c3b565b602082019050919050565b60006020820190508181036000830152612ca081612c64565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612d036025836124fb565b9150612d0e82612ca7565b604082019050919050565b60006020820190508181036000830152612d3281612cf6565b9050919050565b600081519050612d488161260f565b92915050565b600060208284031215612d6457612d636125a2565b5b6000612d7284828501612d39565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612dd76026836124fb565b9150612de282612d7b565b604082019050919050565b60006020820190508181036000830152612e0681612dca565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612e696024836124fb565b9150612e7482612e0d565b604082019050919050565b60006020820190508181036000830152612e9881612e5c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612efb6022836124fb565b9150612f0682612e9f565b604082019050919050565b60006020820190508181036000830152612f2a81612eee565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612f676020836124fb565b9150612f7282612f31565b602082019050919050565b60006020820190508181036000830152612f9681612f5a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061300a816125d9565b92915050565b600060208284031215613026576130256125a2565b5b600061303484828501612ffb565b91505092915050565b6000819050919050565b600061306261305d6130588461303d565b612a32565b612605565b9050919050565b61307281613047565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6130ad816125c7565b82525050565b60006130bf83836130a4565b60208301905092915050565b6000602082019050919050565b60006130e382613078565b6130ed8185613083565b93506130f883613094565b8060005b8381101561312957815161311088826130b3565b975061311b836130cb565b9250506001810190506130fc565b5085935050505092915050565b600060a08201905061314b6000830188612747565b6131586020830187613069565b818103604083015261316a81866130d8565b905061317960608301856126b1565b6131866080830184612747565b9695505050505050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006131c6601d836124fb565b91506131d182613190565b602082019050919050565b600060208201905081810360008301526131f5816131b9565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006132586025836124fb565b9150613263826131fc565b604082019050919050565b600060208201905081810360008301526132878161324b565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006132ea6023836124fb565b91506132f58261328e565b604082019050919050565b60006020820190508181036000830152613319816132dd565b9050919050565b600061332b82612605565b915061333683612605565b925082820261334481612605565b9150828204841483151761335b5761335a612b78565b5b5092915050565b600061336d82612605565b915061337883612605565b92508282039050818111156133905761338f612b78565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006133f26021836124fb565b91506133fd82613396565b604082019050919050565b60006020820190508181036000830152613421816133e5565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006134846022836124fb565b915061348f82613428565b604082019050919050565b600060208201905081810360008301526134b381613477565b9050919050565b60006040820190506134cf60008301856126b1565b6134dc6020830184612747565b9392505050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061353f6026836124fb565b915061354a826134e3565b604082019050919050565b6000602082019050818103600083015261356e81613532565b9050919050565b600081519050613584816126db565b92915050565b6000602082840312156135a05761359f6125a2565b5b60006135ae84828501613575565b91505092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b6000613613602a836124fb565b915061361e826135b7565b604082019050919050565b6000602082019050818103600083015261364281613606565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b60006136a56026836124fb565b91506136b082613649565b604082019050919050565b600060208201905081810360008301526136d481613698565b9050919050565b600081519050919050565b600081905092915050565b60006136fc826136db565b61370681856136e6565b935061371681856020860161250c565b80840191505092915050565b600061372e82846136f1565b915081905092915050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b600061376f601d836124fb565b915061377a82613739565b602082019050919050565b6000602082019050818103600083015261379e81613762565b905091905056fea2646970667358221220784edae0edcf5d117cd84214474a5c54fa8032f569e240dd564112175e657ce964736f6c634300081200330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

Deployed Bytecode

0x60806040526004361061021e5760003560e01c8063715018a611610123578063ab83756d116100ab578063e4748b9e1161006f578063e4748b9e146107d1578063eb6da3fc146107fe578063f2fde38b14610827578063f887ea4014610850578063fe33b3021461087b57610225565b8063ab83756d146106fe578063be09003114610727578063dd62ed3e1461073e578063df8de3e71461077b578063e0f3ccf5146107a457610225565b80638da5cb5b116100f25780638da5cb5b146106055780638ed1b1d51461063057806395d89b4114610659578063a457c2d714610684578063a9059cbb146106c157610225565b8063715018a61461056b57806373d002241461058257806379cc6790146105b157806385af30c5146105da57610225565b8063377ccf3a116101a657806343aa5a5e1161017557806343aa5a5e1461047257806343bf68f4146104af57806346325e0f146104da5780634a5ff7491461050357806370a082311461052e57610225565b8063377ccf3a146103b657806339509351146103e15780633ff42b921461041e57806342966c681461044957610225565b806318160ddd116101ed57806318160ddd146102e35780631c0efae11461030e57806323b872dd14610337578063313ce5671461037457806335cd4b461461039f57610225565b806306fdde0314610227578063095ea7b31461025257806311c4d4f41461028f578063130af2ea146102ba57610225565b3661022557005b005b34801561023357600080fd5b5061023c6108b8565b6040516102499190612580565b60405180910390f35b34801561025e57600080fd5b506102796004803603810190610274919061263b565b61094a565b6040516102869190612696565b60405180910390f35b34801561029b57600080fd5b506102a461096d565b6040516102b191906126c0565b60405180910390f35b3480156102c657600080fd5b506102e160048036038101906102dc9190612707565b610993565b005b3480156102ef57600080fd5b506102f8610a88565b6040516103059190612756565b60405180910390f35b34801561031a57600080fd5b5061033560048036038101906103309190612771565b610a92565b005b34801561034357600080fd5b5061035e6004803603810190610359919061279e565b610aa6565b60405161036b9190612696565b60405180910390f35b34801561038057600080fd5b50610389610ad5565b604051610396919061280d565b60405180910390f35b3480156103ab57600080fd5b506103b4610ade565b005b3480156103c257600080fd5b506103cb610af1565b6040516103d89190612756565b60405180910390f35b3480156103ed57600080fd5b506104086004803603810190610403919061263b565b610af7565b6040516104159190612696565b60405180910390f35b34801561042a57600080fd5b50610433610b2e565b60405161044091906126c0565b60405180910390f35b34801561045557600080fd5b50610470600480360381019061046b9190612771565b610b54565b005b34801561047e57600080fd5b5061049960048036038101906104949190612828565b610b68565b6040516104a69190612696565b60405180910390f35b3480156104bb57600080fd5b506104c4610b88565b6040516104d19190612696565b60405180910390f35b3480156104e657600080fd5b5061050160048036038101906104fc9190612855565b610b9b565b005b34801561050f57600080fd5b50610518610c39565b60405161052591906126c0565b60405180910390f35b34801561053a57600080fd5b5061055560048036038101906105509190612828565b610c5f565b6040516105629190612756565b60405180910390f35b34801561057757600080fd5b50610580610ca7565b005b34801561058e57600080fd5b50610597610cbb565b6040516105a89594939291906128d0565b60405180910390f35b3480156105bd57600080fd5b506105d860048036038101906105d3919061263b565b610cdf565b005b3480156105e657600080fd5b506105ef610cff565b6040516105fc91906126c0565b60405180910390f35b34801561061157600080fd5b5061061a610d25565b60405161062791906126c0565b60405180910390f35b34801561063c57600080fd5b5061065760048036038101906106529190612923565b610d4f565b005b34801561066557600080fd5b5061066e610d74565b60405161067b9190612580565b60405180910390f35b34801561069057600080fd5b506106ab60048036038101906106a6919061263b565b610e06565b6040516106b89190612696565b60405180910390f35b3480156106cd57600080fd5b506106e860048036038101906106e3919061263b565b610e7d565b6040516106f59190612696565b60405180910390f35b34801561070a57600080fd5b5061072560048036038101906107209190612707565b610ea0565b005b34801561073357600080fd5b5061073c610f03565b005b34801561074a57600080fd5b5061076560048036038101906107609190612950565b610f28565b6040516107729190612756565b60405180910390f35b34801561078757600080fd5b506107a2600480360381019061079d91906129ce565b610faf565b005b3480156107b057600080fd5b506107b961105e565b6040516107c8939291906129fb565b60405180910390f35b3480156107dd57600080fd5b506107e6611076565b6040516107f5939291906129fb565b60405180910390f35b34801561080a57600080fd5b5061082560048036038101906108209190612923565b61108e565b005b34801561083357600080fd5b5061084e60048036038101906108499190612828565b6110b3565b005b34801561085c57600080fd5b50610865611136565b6040516108729190612a91565b60405180910390f35b34801561088757600080fd5b506108a2600480360381019061089d9190612828565b61115c565b6040516108af9190612696565b60405180910390f35b6060600380546108c790612adb565b80601f01602080910402602001604051908101604052809291908181526020018280546108f390612adb565b80156109405780601f1061091557610100808354040283529160200191610940565b820191906000526020600020905b81548152906001019060200180831161092357829003601f168201915b5050505050905090565b60008061095561117c565b9050610962818585611184565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61099b61134d565b801515601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503610a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2490612b58565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600254905090565b610a9a61134d565b610aa3816113cb565b50565b600080610ab161117c565b9050610abe85828561160e565b610ac985858561169a565b60019150509392505050565b60006012905090565b610ae661134d565b610aef47611a3f565b565b60135481565b600080610b0261117c565b9050610b23818585610b148589610f28565b610b1e9190612ba7565b611184565b600191505092915050565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610b65610b5f61117c565b82611bad565b50565b60156020528060005260406000206000915054906101000a900460ff1681565b600760009054906101000a900460ff1681565b610ba361134d565b6064600654610bb29190612c0a565b85108015610bc1575060328411155b610c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf790612c87565b60405180910390fd5b84601660000181905550826016600201819055508160166003018190555080601660040181905550836016600101819055505050505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610caf61134d565b610cb96000611d7a565b565b60168060000154908060010154908060020154908060030154908060040154905085565b610cf182610ceb61117c565b8361160e565b610cfb8282611bad565b5050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610d5761134d565b80601460006101000a81548160ff02191690831515021790555050565b606060048054610d8390612adb565b80601f0160208091040260200160405190810160405280929190818152602001828054610daf90612adb565b8015610dfc5780601f10610dd157610100808354040283529160200191610dfc565b820191906000526020600020905b815481529060010190602001808311610ddf57829003601f168201915b5050505050905090565b600080610e1161117c565b90506000610e1f8286610f28565b905083811015610e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5b90612d19565b60405180910390fd5b610e718286868403611184565b60019250505092915050565b600080610e8861117c565b9050610e9581858561169a565b600191505092915050565b610ea861134d565b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610f0b61134d565b6001600760006101000a81548160ff021916908315150217905550565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610fb761134d565b61105b338273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610ff491906126c0565b602060405180830381865afa158015611011573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110359190612d4e565b8373ffffffffffffffffffffffffffffffffffffffff16611e409092919063ffffffff16565b50565b60108060000154908060010154908060020154905083565b600d8060000154908060010154908060020154905083565b61109661134d565b80601460016101000a81548160ff02191690831515021790555050565b6110bb61134d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361112a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112190612ded565b60405180910390fd5b61113381611d7a565b50565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b6020528060005260406000206000915054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ea90612e7f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611262576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125990612f11565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516113409190612756565b60405180910390a3505050565b61135561117c565b73ffffffffffffffffffffffffffffffffffffffff16611373610d25565b73ffffffffffffffffffffffffffffffffffffffff16146113c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c090612f7d565b60405180910390fd5b565b6000600267ffffffffffffffff8111156113e8576113e7612f9d565b5b6040519080825280602002602001820160405280156114165781602001602082028036833780820191505090505b509050308160008151811061142e5761142d612fcc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156114d5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114f99190613010565b8160018151811061150d5761150c612fcc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061157430600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611184565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016115d8959493929190613136565b600060405180830381600087803b1580156115f257600080fd5b505af1158015611606573d6000803e3d6000fd5b505050505050565b600061161a8484610f28565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146116945781811015611686576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167d906131dc565b60405180910390fd5b6116938484848403611184565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611709576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117009061326e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611778576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176f90613300565b60405180910390fd5b600080600080601560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061181f5750601560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561182957600190505b80611a125760011515600b60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514801561189b5750601460019054906101000a900460ff16155b15611931576010600201546010600101546010600001546118bc9190612ba7565b6118c69190612ba7565b93506103e8601354866118d99190613320565b6118e39190612c0a565b9150600760009054906101000a900460ff1661191557600a602d856119089190613320565b6119129190612c0a565b93505b6000601660000154111561192c5761192b611ec6565b5b6119cd565b60011515600b60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514801561199e5750601460009054906101000a900460ff16155b156119cc57600d60020154600d60010154600d600001546119bf9190612ba7565b6119c99190612ba7565b93505b5b6103e884866119dc9190613320565b6119e69190612c0a565b92506000831115611a11576119fc873085611fdc565b6000821115611a1057611a0f8783610cdf565b5b5b5b818386611a1f9190613362565b611a299190613362565b9450611a36878787611fdc565b50505050505050565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6003600584611a8a9190612c0a565b611a949190613320565b9081150290604051600060405180830381858888f19350505050158015611abf573d6000803e3d6000fd5b50600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc600583611b099190612c0a565b9081150290604051600060405180830381858888f19350505050158015611b34573d6000803e3d6000fd5b50600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc600583611b7e9190612c0a565b9081150290604051600060405180830381858888f19350505050158015611ba9573d6000803e3d6000fd5b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1390613408565b60405180910390fd5b611c2882600083612252565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca59061349a565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611d619190612756565b60405180910390a3611d7583600084612257565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611ec18363a9059cbb60e01b8484604051602401611e5f9291906134ba565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061225c565b505050565b6000611ed130610c5f565b90506000611f00600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610c5f565b90506000601660000154905060166000015483101580611f3d57506103e860166001015483611f2f9190613320565b611f399190612c0a565b8310155b8015611f5d5750601660030154601660020154611f5a9190612ba7565b42115b15611fd7576016600001546103e860166001015484611f7c9190613320565b611f869190612c0a565b1015611fad576103e860166001015483611fa09190613320565b611faa9190612c0a565b90505b611fb6816113cb565b426016600201819055506016600401544710611fd657611fd547611a3f565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361204b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120429061326e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036120ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b190613300565b60405180910390fd5b6120c5838383612252565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561214b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214290613555565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516122399190612756565b60405180910390a361224c848484612257565b50505050565b505050565b505050565b60006122be826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166123239092919063ffffffff16565b905060008151111561231e57808060200190518101906122de919061358a565b61231d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231490613629565b60405180910390fd5b5b505050565b6060612332848460008561233b565b90509392505050565b606082471015612380576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612377906136bb565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516123a99190613722565b60006040518083038185875af1925050503d80600081146123e6576040519150601f19603f3d011682016040523d82523d6000602084013e6123eb565b606091505b50915091506123fc87838387612408565b92505050949350505050565b6060831561246a576000835103612462576124228561247d565b612461576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245890613785565b60405180910390fd5b5b829050612475565b61247483836124a0565b5b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000825111156124b35781518083602001fd5b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e79190612580565b60405180910390fd5b600081519050919050565b600082825260208201905092915050565b60005b8381101561252a57808201518184015260208101905061250f565b60008484015250505050565b6000601f19601f8301169050919050565b6000612552826124f0565b61255c81856124fb565b935061256c81856020860161250c565b61257581612536565b840191505092915050565b6000602082019050818103600083015261259a8184612547565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006125d2826125a7565b9050919050565b6125e2816125c7565b81146125ed57600080fd5b50565b6000813590506125ff816125d9565b92915050565b6000819050919050565b61261881612605565b811461262357600080fd5b50565b6000813590506126358161260f565b92915050565b60008060408385031215612652576126516125a2565b5b6000612660858286016125f0565b925050602061267185828601612626565b9150509250929050565b60008115159050919050565b6126908161267b565b82525050565b60006020820190506126ab6000830184612687565b92915050565b6126ba816125c7565b82525050565b60006020820190506126d560008301846126b1565b92915050565b6126e48161267b565b81146126ef57600080fd5b50565b600081359050612701816126db565b92915050565b6000806040838503121561271e5761271d6125a2565b5b600061272c858286016125f0565b925050602061273d858286016126f2565b9150509250929050565b61275081612605565b82525050565b600060208201905061276b6000830184612747565b92915050565b600060208284031215612787576127866125a2565b5b600061279584828501612626565b91505092915050565b6000806000606084860312156127b7576127b66125a2565b5b60006127c5868287016125f0565b93505060206127d6868287016125f0565b92505060406127e786828701612626565b9150509250925092565b600060ff82169050919050565b612807816127f1565b82525050565b600060208201905061282260008301846127fe565b92915050565b60006020828403121561283e5761283d6125a2565b5b600061284c848285016125f0565b91505092915050565b600080600080600060a08688031215612871576128706125a2565b5b600061287f88828901612626565b955050602061289088828901612626565b94505060406128a188828901612626565b93505060606128b288828901612626565b92505060806128c388828901612626565b9150509295509295909350565b600060a0820190506128e56000830188612747565b6128f26020830187612747565b6128ff6040830186612747565b61290c6060830185612747565b6129196080830184612747565b9695505050505050565b600060208284031215612939576129386125a2565b5b6000612947848285016126f2565b91505092915050565b60008060408385031215612967576129666125a2565b5b6000612975858286016125f0565b9250506020612986858286016125f0565b9150509250929050565b600061299b826125c7565b9050919050565b6129ab81612990565b81146129b657600080fd5b50565b6000813590506129c8816129a2565b92915050565b6000602082840312156129e4576129e36125a2565b5b60006129f2848285016129b9565b91505092915050565b6000606082019050612a106000830186612747565b612a1d6020830185612747565b612a2a6040830184612747565b949350505050565b6000819050919050565b6000612a57612a52612a4d846125a7565b612a32565b6125a7565b9050919050565b6000612a6982612a3c565b9050919050565b6000612a7b82612a5e565b9050919050565b612a8b81612a70565b82525050565b6000602082019050612aa66000830184612a82565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612af357607f821691505b602082108103612b0657612b05612aac565b5b50919050565b7f416c726561647920736574210000000000000000000000000000000000000000600082015250565b6000612b42600c836124fb565b9150612b4d82612b0c565b602082019050919050565b60006020820190508181036000830152612b7181612b35565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612bb282612605565b9150612bbd83612605565b9250828201905080821115612bd557612bd4612b78565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612c1582612605565b9150612c2083612605565b925082612c3057612c2f612bdb565b5b828204905092915050565b7f496e76616c6964206d61782076616c7565732100000000000000000000000000600082015250565b6000612c716013836124fb565b9150612c7c82612c3b565b602082019050919050565b60006020820190508181036000830152612ca081612c64565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612d036025836124fb565b9150612d0e82612ca7565b604082019050919050565b60006020820190508181036000830152612d3281612cf6565b9050919050565b600081519050612d488161260f565b92915050565b600060208284031215612d6457612d636125a2565b5b6000612d7284828501612d39565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612dd76026836124fb565b9150612de282612d7b565b604082019050919050565b60006020820190508181036000830152612e0681612dca565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612e696024836124fb565b9150612e7482612e0d565b604082019050919050565b60006020820190508181036000830152612e9881612e5c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612efb6022836124fb565b9150612f0682612e9f565b604082019050919050565b60006020820190508181036000830152612f2a81612eee565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612f676020836124fb565b9150612f7282612f31565b602082019050919050565b60006020820190508181036000830152612f9681612f5a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061300a816125d9565b92915050565b600060208284031215613026576130256125a2565b5b600061303484828501612ffb565b91505092915050565b6000819050919050565b600061306261305d6130588461303d565b612a32565b612605565b9050919050565b61307281613047565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6130ad816125c7565b82525050565b60006130bf83836130a4565b60208301905092915050565b6000602082019050919050565b60006130e382613078565b6130ed8185613083565b93506130f883613094565b8060005b8381101561312957815161311088826130b3565b975061311b836130cb565b9250506001810190506130fc565b5085935050505092915050565b600060a08201905061314b6000830188612747565b6131586020830187613069565b818103604083015261316a81866130d8565b905061317960608301856126b1565b6131866080830184612747565b9695505050505050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006131c6601d836124fb565b91506131d182613190565b602082019050919050565b600060208201905081810360008301526131f5816131b9565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006132586025836124fb565b9150613263826131fc565b604082019050919050565b600060208201905081810360008301526132878161324b565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006132ea6023836124fb565b91506132f58261328e565b604082019050919050565b60006020820190508181036000830152613319816132dd565b9050919050565b600061332b82612605565b915061333683612605565b925082820261334481612605565b9150828204841483151761335b5761335a612b78565b5b5092915050565b600061336d82612605565b915061337883612605565b92508282039050818111156133905761338f612b78565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006133f26021836124fb565b91506133fd82613396565b604082019050919050565b60006020820190508181036000830152613421816133e5565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006134846022836124fb565b915061348f82613428565b604082019050919050565b600060208201905081810360008301526134b381613477565b9050919050565b60006040820190506134cf60008301856126b1565b6134dc6020830184612747565b9392505050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061353f6026836124fb565b915061354a826134e3565b604082019050919050565b6000602082019050818103600083015261356e81613532565b9050919050565b600081519050613584816126db565b92915050565b6000602082840312156135a05761359f6125a2565b5b60006135ae84828501613575565b91505092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b6000613613602a836124fb565b915061361e826135b7565b604082019050919050565b6000602082019050818103600083015261364281613606565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b60006136a56026836124fb565b91506136b082613649565b604082019050919050565b600060208201905081810360008301526136d481613698565b9050919050565b600081519050919050565b600081905092915050565b60006136fc826136db565b61370681856136e6565b935061371681856020860161250c565b80840191505092915050565b600061372e82846136f1565b915081905092915050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b600061376f601d836124fb565b915061377a82613739565b602082019050919050565b6000602082019050818103600083015261379e81613762565b905091905056fea2646970667358221220784edae0edcf5d117cd84214474a5c54fa8032f569e240dd564112175e657ce964736f6c63430008120033

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

0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

-----Decoded View---------------
Arg [0] : _router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D

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


Deployed Bytecode Sourcemap

46442:7521:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34022:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36373:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46711:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50894:178;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35142:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50605:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37154:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34984:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50714:99;;;;;;;;;;;;;:::i;:::-;;47167:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37858:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46646:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45793:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47256:40;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46587:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49016:420;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46681:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35313:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22943:103;;;;;;;;;;;;;:::i;:::-;;47488:27;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;:::i;:::-;;;;;;;;46203:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46843:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22295:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49647:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34241:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38599:436;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35646:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49488:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48886:84;;;;;;;;;;;;;:::i;:::-;;35902:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51119:138;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47137:23;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;46997:21;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;49774:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23201:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46760:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46799:37;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34022:100;34076:13;34109:5;34102:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34022:100;:::o;36373:201::-;36456:4;36473:13;36489:12;:10;:12::i;:::-;36473:28;;36512:32;36521:5;36528:7;36537:6;36512:8;:32::i;:::-;36562:4;36555:11;;;36373:201;;;;:::o;46711:28::-;;;;;;;;;;;;;:::o;50894:178::-;22181:13;:11;:13::i;:::-;51004:6:::1;50983:27;;:7;:17;50991:8;50983:17;;;;;;;;;;;;;;;;;;;;;;;;;:27;;::::0;50975:52:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;51058:6;51038:7;:17;51046:8;51038:17;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;50894:178:::0;;:::o;35142:108::-;35203:7;35230:12;;35223:19;;35142:108;:::o;50605:101::-;22181:13;:11;:13::i;:::-;50679:19:::1;50690:7;50679:10;:19::i;:::-;50605:101:::0;:::o;37154:295::-;37285:4;37302:15;37320:12;:10;:12::i;:::-;37302:30;;37343:38;37359:4;37365:7;37374:6;37343:15;:38::i;:::-;37392:27;37402:4;37408:2;37412:6;37392:9;:27::i;:::-;37437:4;37430:11;;;37154:295;;;;;:::o;34984:93::-;35042:5;35067:2;35060:9;;34984:93;:::o;50714:99::-;22181:13;:11;:13::i;:::-;50775:30:::1;50783:21;50775:7;:30::i;:::-;50714:99::o:0;47167:25::-;;;;:::o;37858:238::-;37946:4;37963:13;37979:12;:10;:12::i;:::-;37963:28;;38002:64;38011:5;38018:7;38055:10;38027:25;38037:5;38044:7;38027:9;:25::i;:::-;:38;;;;:::i;:::-;38002:8;:64::i;:::-;38084:4;38077:11;;;37858:238;;;;:::o;46646:28::-;;;;;;;;;;;;;:::o;45793:91::-;45849:27;45855:12;:10;:12::i;:::-;45869:6;45849:5;:27::i;:::-;45793:91;:::o;47256:40::-;;;;;;;;;;;;;;;;;;;;;;:::o;46587:23::-;;;;;;;;;;;;;:::o;49016:420::-;22181:13;:11;:13::i;:::-;49186:3:::1;49171:12;;:18;;;;:::i;:::-;49164:4;:25;:46;;;;;49208:2;49193:11;:17;;49164:46;49156:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;49262:4;49245:10;:14;;:21;;;;49295:5;49277:10;:15;;:23;;;;49330:6;49311:10;:16;;:25;;;;49371:11;49347:10;:21;;:35;;;;49417:11;49393:10;:21;;:35;;;;49016:420:::0;;;;;:::o;46681:23::-;;;;;;;;;;;;;:::o;35313:127::-;35387:7;35414:9;:18;35424:7;35414:18;;;;;;;;;;;;;;;;35407:25;;35313:127;;;:::o;22943:103::-;22181:13;:11;:13::i;:::-;23008:30:::1;23035:1;23008:18;:30::i;:::-;22943:103::o:0;47488:27::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;46203:164::-;46280:46;46296:7;46305:12;:10;:12::i;:::-;46319:6;46280:15;:46::i;:::-;46337:22;46343:7;46352:6;46337:5;:22::i;:::-;46203:164;;:::o;46843:23::-;;;;;;;;;;;;;:::o;22295:87::-;22341:7;22368:6;;;;;;;;;;;22361:13;;22295:87;:::o;49647:119::-;22181:13;:11;:13::i;:::-;49743:15:::1;49726:14;;:32;;;;;;;;;;;;;;;;;;49647:119:::0;:::o;34241:104::-;34297:13;34330:7;34323:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34241:104;:::o;38599:436::-;38692:4;38709:13;38725:12;:10;:12::i;:::-;38709:28;;38748:24;38775:25;38785:5;38792:7;38775:9;:25::i;:::-;38748:52;;38839:15;38819:16;:35;;38811:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;38932:60;38941:5;38948:7;38976:15;38957:16;:34;38932:8;:60::i;:::-;39023:4;39016:11;;;;38599:436;;;;:::o;35646:193::-;35725:4;35742:13;35758:12;:10;:12::i;:::-;35742:28;;35781;35791:5;35798:2;35802:6;35781:9;:28::i;:::-;35827:4;35820:11;;;35646:193;;;;:::o;49488:113::-;22181:13;:11;:13::i;:::-;49586:7:::1;49571:5;:12;49577:5;49571:12;;;;;;;;;;;;;;;;:22;;;;;;;;;;;;;;;;;;49488:113:::0;;:::o;48886:84::-;22181:13;:11;:13::i;:::-;48958:4:::1;48944:11;;:18;;;;;;;;;;;;;;;;;;48886:84::o:0;35902:151::-;35991:7;36018:11;:18;36030:5;36018:18;;;;;;;;;;;;;;;:27;36037:7;36018:27;;;;;;;;;;;;;;;;36011:34;;35902:151;;;;:::o;51119:138::-;22181:13;:11;:13::i;:::-;51185:64:::1;51205:10;51217:6;:16;;;51242:4;51217:31;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51185:6;:19;;;;:64;;;;;:::i;:::-;51119:138:::0;:::o;47137:23::-;;;;;;;;;;;;;;;;;;;:::o;46997:21::-;;;;;;;;;;;;;;;;;;;:::o;49774:123::-;22181:13;:11;:13::i;:::-;49873:16:::1;49855:15;;:34;;;;;;;;;;;;;;;;;;49774:123:::0;:::o;23201:201::-;22181:13;:11;:13::i;:::-;23310:1:::1;23290:22;;:8;:22;;::::0;23282:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;23366:28;23385:8;23366:18;:28::i;:::-;23201:201:::0;:::o;46760:32::-;;;;;;;;;;;;;:::o;46799:37::-;;;;;;;;;;;;;;;;;;;;;;:::o;20846:98::-;20899:7;20926:10;20919:17;;20846:98;:::o;42626:380::-;42779:1;42762:19;;:5;:19;;;42754:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42860:1;42841:21;;:7;:21;;;42833:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42944:6;42914:11;:18;42926:5;42914:18;;;;;;;;;;;;;;;:27;42933:7;42914:27;;;;;;;;;;;;;;;:36;;;;42982:7;42966:32;;42975:5;42966:32;;;42991:6;42966:32;;;;;;:::i;:::-;;;;;;;;42626:380;;;:::o;22460:132::-;22535:12;:10;:12::i;:::-;22524:23;;:7;:5;:7::i;:::-;:23;;;22516:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22460:132::o;49948:427::-;50005:21;50043:1;50029:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50005:40;;50074:4;50056;50061:1;50056:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;50100:6;;;;;;;;;;;:11;;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50090:4;50095:1;50090:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;50124:49;50141:4;50156:6;;;;;;;;;;;50165:7;50124:8;:49::i;:::-;50184:6;;;;;;;;;;;:57;;;50256:7;50278:1;50294:4;50321;50341:15;50184:183;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49994:381;49948:427;:::o;43297:453::-;43432:24;43459:25;43469:5;43476:7;43459:9;:25::i;:::-;43432:52;;43519:17;43499:16;:37;43495:248;;43581:6;43561:16;:26;;43553:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43665:51;43674:5;43681:7;43709:6;43690:16;:25;43665:8;:51::i;:::-;43495:248;43421:329;43297:453;;;:::o;52120:1767::-;52234:1;52218:18;;:4;:18;;;52210:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52311:1;52297:16;;:2;:16;;;52289:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;52374:12;52397:20;52428;52459:13;52488:7;:11;52496:2;52488:11;;;;;;;;;;;;;;;;;;;;;;;;;:28;;;;52503:7;:13;52511:4;52503:13;;;;;;;;;;;;;;;;;;;;;;;;;52488:28;52485:75;;;52544:4;52533:15;;52485:75;52584:8;52580:1162;;52646:4;52633:17;;:5;:9;52639:2;52633:9;;;;;;;;;;;;;;;;;;;;;;;;;:17;;;:37;;;;;52655:15;;;;;;;;;;;52654:16;52633:37;52630:743;;;52776:8;:18;;;52760:8;:13;;;52739:8;:18;;;:34;;;;:::i;:::-;:55;;;;:::i;:::-;52732:62;;52850:4;52837:10;;52828:6;:19;;;;:::i;:::-;:26;;;;:::i;:::-;52813:41;;52964:11;;;;;;;;;;;52960:81;;53019:2;53014;53007:4;:9;;;;:::i;:::-;:14;;;;:::i;:::-;53000:21;;52960:81;53081:1;53064:10;:14;;;:18;53061:79;;;53107:13;:11;:13::i;:::-;53061:79;52630:743;;;53213:4;53198:19;;:5;:11;53204:4;53198:11;;;;;;;;;;;;;;;;;;;;;;;;;:19;;;:38;;;;;53222:14;;;;;;;;;;;53221:15;53198:38;53195:178;;;53340:7;:17;;;53325:7;:12;;;53305:7;:17;;;:32;;;;:::i;:::-;:52;;;;:::i;:::-;53298:59;;53195:178;52630:743;53420:4;53413;53404:6;:13;;;;:::i;:::-;:20;;;;:::i;:::-;53389:35;;53531:1;53516:12;:16;53513:218;;;53553:50;53569:4;53583;53590:12;53553:15;:50::i;:::-;53642:1;53627:12;:16;53624:92;;;53668:28;53677:4;53683:12;53668:8;:28::i;:::-;53624:92;53513:218;52580:1162;53823:12;53808;53799:6;:21;;;;:::i;:::-;:36;;;;:::i;:::-;53790:45;;53846:33;53862:4;53868:2;53872:6;53846:15;:33::i;:::-;52199:1688;;;;52120:1767;;;:::o;50383:214::-;50444:13;;;;;;;;;;;50436:31;;:48;50482:1;50478;50468:7;:11;;;;:::i;:::-;:15;;;;:::i;:::-;50436:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50503:8;;;;;;;;;;;50495:26;;:39;50532:1;50522:7;:11;;;;:::i;:::-;50495:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50553:13;;;;;;;;;;;50545:31;;:44;50587:1;50577:7;:11;;;;:::i;:::-;50545:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50383:214;:::o;41513:675::-;41616:1;41597:21;;:7;:21;;;41589:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;41669:49;41690:7;41707:1;41711:6;41669:20;:49::i;:::-;41731:22;41756:9;:18;41766:7;41756:18;;;;;;;;;;;;;;;;41731:43;;41811:6;41793:14;:24;;41785:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;41930:6;41913:14;:23;41892:9;:18;41902:7;41892:18;;;;;;;;;;;;;;;:44;;;;42047:6;42031:12;;:22;;;;;;;;;;;42108:1;42082:37;;42091:7;42082:37;;;42112:6;42082:37;;;;;;:::i;:::-;;;;;;;;42132:48;42152:7;42169:1;42173:6;42132:19;:48::i;:::-;41578:610;41513:675;;:::o;23562:191::-;23636:16;23655:6;;;;;;;;;;;23636:25;;23681:8;23672:6;;:17;;;;;;;;;;;;;;;;;;23736:8;23705:40;;23726:8;23705:40;;;;;;;;;;;;23625:128;23562:191;:::o;27353:211::-;27470:86;27490:5;27520:23;;;27545:2;27549:5;27497:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27470:19;:86::i;:::-;27353:211;;;:::o;51312:753::-;51355:20;51378:24;51396:4;51378:9;:24::i;:::-;51355:47;;51413:19;51435;51445:8;;;;;;;;;;;51435:9;:19::i;:::-;51413:41;;51465:14;51482:10;:14;;;51465:31;;51530:10;:14;;;51514:12;:30;;:92;;;;51602:4;51578:10;:21;;;51564:11;:35;;;;:::i;:::-;:42;;;;:::i;:::-;51548:12;:58;;51514:92;51513:150;;;;;51647:10;:16;;;51629:10;:15;;;:34;;;;:::i;:::-;51611:15;:52;51513:150;51509:549;;;51728:10;:14;;;51721:4;51697:10;:21;;;51683:11;:35;;;;:::i;:::-;:42;;;;:::i;:::-;:59;51680:150;;;51810:4;51786:10;:21;;;51772:11;:35;;;;:::i;:::-;:42;;;;:::i;:::-;51763:51;;51680:150;51846:18;51857:6;51846:10;:18::i;:::-;51899:15;51881:10;:15;;:33;;;;51959:10;:21;;;51934;:46;51931:116;;52001:30;52009:21;52001:7;:30::i;:::-;51931:116;51509:549;51344:721;;;51312:753::o;39505:840::-;39652:1;39636:18;;:4;:18;;;39628:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39729:1;39715:16;;:2;:16;;;39707:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;39784:38;39805:4;39811:2;39815:6;39784:20;:38::i;:::-;39835:19;39857:9;:15;39867:4;39857:15;;;;;;;;;;;;;;;;39835:37;;39906:6;39891:11;:21;;39883:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;40023:6;40009:11;:20;39991:9;:15;40001:4;39991:15;;;;;;;;;;;;;;;:38;;;;40226:6;40209:9;:13;40219:2;40209:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;40276:2;40261:26;;40270:4;40261:26;;;40280:6;40261:26;;;;;;:::i;:::-;;;;;;;;40300:37;40320:4;40326:2;40330:6;40300:19;:37::i;:::-;39617:728;39505:840;;;:::o;44350:125::-;;;;:::o;45079:124::-;;;;:::o;30420:716::-;30844:23;30870:69;30898:4;30870:69;;;;;;;;;;;;;;;;;30878:5;30870:27;;;;:69;;;;;:::i;:::-;30844:95;;30974:1;30954:10;:17;:21;30950:179;;;31051:10;31040:30;;;;;;;;;;;;:::i;:::-;31032:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;30950:179;30490:646;30420:716;;:::o;12364:229::-;12501:12;12533:52;12555:6;12563:4;12569:1;12572:12;12533:21;:52::i;:::-;12526:59;;12364:229;;;;;:::o;13484:455::-;13654:12;13712:5;13687:21;:30;;13679:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;13772:12;13786:23;13813:6;:11;;13832:5;13839:4;13813:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13771:73;;;;13862:69;13889:6;13897:7;13906:10;13918:12;13862:26;:69::i;:::-;13855:76;;;;13484:455;;;;;;:::o;16057:644::-;16242:12;16271:7;16267:427;;;16320:1;16299:10;:17;:22;16295:290;;16517:18;16528:6;16517:10;:18::i;:::-;16509:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;16295:290;16606:10;16599:17;;;;16267:427;16649:33;16657:10;16669:12;16649:7;:33::i;:::-;16057:644;;;;;;;:::o;9607:326::-;9667:4;9924:1;9902:7;:19;;;:23;9895:30;;9607:326;;;:::o;17243:552::-;17424:1;17404:10;:17;:21;17400:388;;;17636:10;17630:17;17693:15;17680:10;17676:2;17672:19;17665:44;17400:388;17763:12;17756:20;;;;;;;;;;;:::i;:::-;;;;;;;;7:99:1;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:116::-;3868:21;3883:5;3868:21;:::i;:::-;3861:5;3858:32;3848:60;;3904:1;3901;3894:12;3848:60;3798:116;:::o;3920:133::-;3963:5;4001:6;3988:20;3979:29;;4017:30;4041:5;4017:30;:::i;:::-;3920:133;;;;:::o;4059:468::-;4124:6;4132;4181:2;4169:9;4160:7;4156:23;4152:32;4149:119;;;4187:79;;:::i;:::-;4149:119;4307:1;4332:53;4377:7;4368:6;4357:9;4353:22;4332:53;:::i;:::-;4322:63;;4278:117;4434:2;4460:50;4502:7;4493:6;4482:9;4478:22;4460:50;:::i;:::-;4450:60;;4405:115;4059:468;;;;;:::o;4533:118::-;4620:24;4638:5;4620:24;:::i;:::-;4615:3;4608:37;4533:118;;:::o;4657:222::-;4750:4;4788:2;4777:9;4773:18;4765:26;;4801:71;4869:1;4858:9;4854:17;4845:6;4801:71;:::i;:::-;4657:222;;;;:::o;4885:329::-;4944:6;4993:2;4981:9;4972:7;4968:23;4964:32;4961:119;;;4999:79;;:::i;:::-;4961:119;5119:1;5144:53;5189:7;5180:6;5169:9;5165:22;5144:53;:::i;:::-;5134:63;;5090:117;4885:329;;;;:::o;5220:619::-;5297:6;5305;5313;5362:2;5350:9;5341:7;5337:23;5333:32;5330:119;;;5368:79;;:::i;:::-;5330:119;5488:1;5513:53;5558:7;5549:6;5538:9;5534:22;5513:53;:::i;:::-;5503:63;;5459:117;5615:2;5641:53;5686:7;5677:6;5666:9;5662:22;5641:53;:::i;:::-;5631:63;;5586:118;5743:2;5769:53;5814:7;5805:6;5794:9;5790:22;5769:53;:::i;:::-;5759:63;;5714:118;5220:619;;;;;:::o;5845:86::-;5880:7;5920:4;5913:5;5909:16;5898:27;;5845:86;;;:::o;5937:112::-;6020:22;6036:5;6020:22;:::i;:::-;6015:3;6008:35;5937:112;;:::o;6055:214::-;6144:4;6182:2;6171:9;6167:18;6159:26;;6195:67;6259:1;6248:9;6244:17;6235:6;6195:67;:::i;:::-;6055:214;;;;:::o;6275:329::-;6334:6;6383:2;6371:9;6362:7;6358:23;6354:32;6351:119;;;6389:79;;:::i;:::-;6351:119;6509:1;6534:53;6579:7;6570:6;6559:9;6555:22;6534:53;:::i;:::-;6524:63;;6480:117;6275:329;;;;:::o;6610:911::-;6705:6;6713;6721;6729;6737;6786:3;6774:9;6765:7;6761:23;6757:33;6754:120;;;6793:79;;:::i;:::-;6754:120;6913:1;6938:53;6983:7;6974:6;6963:9;6959:22;6938:53;:::i;:::-;6928:63;;6884:117;7040:2;7066:53;7111:7;7102:6;7091:9;7087:22;7066:53;:::i;:::-;7056:63;;7011:118;7168:2;7194:53;7239:7;7230:6;7219:9;7215:22;7194:53;:::i;:::-;7184:63;;7139:118;7296:2;7322:53;7367:7;7358:6;7347:9;7343:22;7322:53;:::i;:::-;7312:63;;7267:118;7424:3;7451:53;7496:7;7487:6;7476:9;7472:22;7451:53;:::i;:::-;7441:63;;7395:119;6610:911;;;;;;;;:::o;7527:664::-;7732:4;7770:3;7759:9;7755:19;7747:27;;7784:71;7852:1;7841:9;7837:17;7828:6;7784:71;:::i;:::-;7865:72;7933:2;7922:9;7918:18;7909:6;7865:72;:::i;:::-;7947;8015:2;8004:9;8000:18;7991:6;7947:72;:::i;:::-;8029;8097:2;8086:9;8082:18;8073:6;8029:72;:::i;:::-;8111:73;8179:3;8168:9;8164:19;8155:6;8111:73;:::i;:::-;7527:664;;;;;;;;:::o;8197:323::-;8253:6;8302:2;8290:9;8281:7;8277:23;8273:32;8270:119;;;8308:79;;:::i;:::-;8270:119;8428:1;8453:50;8495:7;8486:6;8475:9;8471:22;8453:50;:::i;:::-;8443:60;;8399:114;8197:323;;;;:::o;8526:474::-;8594:6;8602;8651:2;8639:9;8630:7;8626:23;8622:32;8619:119;;;8657:79;;:::i;:::-;8619:119;8777:1;8802:53;8847:7;8838:6;8827:9;8823:22;8802:53;:::i;:::-;8792:63;;8748:117;8904:2;8930:53;8975:7;8966:6;8955:9;8951:22;8930:53;:::i;:::-;8920:63;;8875:118;8526:474;;;;;:::o;9006:111::-;9058:7;9087:24;9105:5;9087:24;:::i;:::-;9076:35;;9006:111;;;:::o;9123:152::-;9211:39;9244:5;9211:39;:::i;:::-;9204:5;9201:50;9191:78;;9265:1;9262;9255:12;9191:78;9123:152;:::o;9281:169::-;9342:5;9380:6;9367:20;9358:29;;9396:48;9438:5;9396:48;:::i;:::-;9281:169;;;;:::o;9456:359::-;9530:6;9579:2;9567:9;9558:7;9554:23;9550:32;9547:119;;;9585:79;;:::i;:::-;9547:119;9705:1;9730:68;9790:7;9781:6;9770:9;9766:22;9730:68;:::i;:::-;9720:78;;9676:132;9456:359;;;;:::o;9821:442::-;9970:4;10008:2;9997:9;9993:18;9985:26;;10021:71;10089:1;10078:9;10074:17;10065:6;10021:71;:::i;:::-;10102:72;10170:2;10159:9;10155:18;10146:6;10102:72;:::i;:::-;10184;10252:2;10241:9;10237:18;10228:6;10184:72;:::i;:::-;9821:442;;;;;;:::o;10269:60::-;10297:3;10318:5;10311:12;;10269:60;;;:::o;10335:142::-;10385:9;10418:53;10436:34;10445:24;10463:5;10445:24;:::i;:::-;10436:34;:::i;:::-;10418:53;:::i;:::-;10405:66;;10335:142;;;:::o;10483:126::-;10533:9;10566:37;10597:5;10566:37;:::i;:::-;10553:50;;10483:126;;;:::o;10615:152::-;10691:9;10724:37;10755:5;10724:37;:::i;:::-;10711:50;;10615:152;;;:::o;10773:183::-;10886:63;10943:5;10886:63;:::i;:::-;10881:3;10874:76;10773:183;;:::o;10962:274::-;11081:4;11119:2;11108:9;11104:18;11096:26;;11132:97;11226:1;11215:9;11211:17;11202:6;11132:97;:::i;:::-;10962:274;;;;:::o;11242:180::-;11290:77;11287:1;11280:88;11387:4;11384:1;11377:15;11411:4;11408:1;11401:15;11428:320;11472:6;11509:1;11503:4;11499:12;11489:22;;11556:1;11550:4;11546:12;11577:18;11567:81;;11633:4;11625:6;11621:17;11611:27;;11567:81;11695:2;11687:6;11684:14;11664:18;11661:38;11658:84;;11714:18;;:::i;:::-;11658:84;11479:269;11428:320;;;:::o;11754:162::-;11894:14;11890:1;11882:6;11878:14;11871:38;11754:162;:::o;11922:366::-;12064:3;12085:67;12149:2;12144:3;12085:67;:::i;:::-;12078:74;;12161:93;12250:3;12161:93;:::i;:::-;12279:2;12274:3;12270:12;12263:19;;11922:366;;;:::o;12294:419::-;12460:4;12498:2;12487:9;12483:18;12475:26;;12547:9;12541:4;12537:20;12533:1;12522:9;12518:17;12511:47;12575:131;12701:4;12575:131;:::i;:::-;12567:139;;12294:419;;;:::o;12719:180::-;12767:77;12764:1;12757:88;12864:4;12861:1;12854:15;12888:4;12885:1;12878:15;12905:191;12945:3;12964:20;12982:1;12964:20;:::i;:::-;12959:25;;12998:20;13016:1;12998:20;:::i;:::-;12993:25;;13041:1;13038;13034:9;13027:16;;13062:3;13059:1;13056:10;13053:36;;;13069:18;;:::i;:::-;13053:36;12905:191;;;;:::o;13102:180::-;13150:77;13147:1;13140:88;13247:4;13244:1;13237:15;13271:4;13268:1;13261:15;13288:185;13328:1;13345:20;13363:1;13345:20;:::i;:::-;13340:25;;13379:20;13397:1;13379:20;:::i;:::-;13374:25;;13418:1;13408:35;;13423:18;;:::i;:::-;13408:35;13465:1;13462;13458:9;13453:14;;13288:185;;;;:::o;13479:169::-;13619:21;13615:1;13607:6;13603:14;13596:45;13479:169;:::o;13654:366::-;13796:3;13817:67;13881:2;13876:3;13817:67;:::i;:::-;13810:74;;13893:93;13982:3;13893:93;:::i;:::-;14011:2;14006:3;14002:12;13995:19;;13654:366;;;:::o;14026:419::-;14192:4;14230:2;14219:9;14215:18;14207:26;;14279:9;14273:4;14269:20;14265:1;14254:9;14250:17;14243:47;14307:131;14433:4;14307:131;:::i;:::-;14299:139;;14026:419;;;:::o;14451:224::-;14591:34;14587:1;14579:6;14575:14;14568:58;14660:7;14655:2;14647:6;14643:15;14636:32;14451:224;:::o;14681:366::-;14823:3;14844:67;14908:2;14903:3;14844:67;:::i;:::-;14837:74;;14920:93;15009:3;14920:93;:::i;:::-;15038:2;15033:3;15029:12;15022:19;;14681:366;;;:::o;15053:419::-;15219:4;15257:2;15246:9;15242:18;15234:26;;15306:9;15300:4;15296:20;15292:1;15281:9;15277:17;15270:47;15334:131;15460:4;15334:131;:::i;:::-;15326:139;;15053:419;;;:::o;15478:143::-;15535:5;15566:6;15560:13;15551:22;;15582:33;15609:5;15582:33;:::i;:::-;15478:143;;;;:::o;15627:351::-;15697:6;15746:2;15734:9;15725:7;15721:23;15717:32;15714:119;;;15752:79;;:::i;:::-;15714:119;15872:1;15897:64;15953:7;15944:6;15933:9;15929:22;15897:64;:::i;:::-;15887:74;;15843:128;15627:351;;;;:::o;15984:225::-;16124:34;16120:1;16112:6;16108:14;16101:58;16193:8;16188:2;16180:6;16176:15;16169:33;15984:225;:::o;16215:366::-;16357:3;16378:67;16442:2;16437:3;16378:67;:::i;:::-;16371:74;;16454:93;16543:3;16454:93;:::i;:::-;16572:2;16567:3;16563:12;16556:19;;16215:366;;;:::o;16587:419::-;16753:4;16791:2;16780:9;16776:18;16768:26;;16840:9;16834:4;16830:20;16826:1;16815:9;16811:17;16804:47;16868:131;16994:4;16868:131;:::i;:::-;16860:139;;16587:419;;;:::o;17012:223::-;17152:34;17148:1;17140:6;17136:14;17129:58;17221:6;17216:2;17208:6;17204:15;17197:31;17012:223;:::o;17241:366::-;17383:3;17404:67;17468:2;17463:3;17404:67;:::i;:::-;17397:74;;17480:93;17569:3;17480:93;:::i;:::-;17598:2;17593:3;17589:12;17582:19;;17241:366;;;:::o;17613:419::-;17779:4;17817:2;17806:9;17802:18;17794:26;;17866:9;17860:4;17856:20;17852:1;17841:9;17837:17;17830:47;17894:131;18020:4;17894:131;:::i;:::-;17886:139;;17613:419;;;:::o;18038:221::-;18178:34;18174:1;18166:6;18162:14;18155:58;18247:4;18242:2;18234:6;18230:15;18223:29;18038:221;:::o;18265:366::-;18407:3;18428:67;18492:2;18487:3;18428:67;:::i;:::-;18421:74;;18504:93;18593:3;18504:93;:::i;:::-;18622:2;18617:3;18613:12;18606:19;;18265:366;;;:::o;18637:419::-;18803:4;18841:2;18830:9;18826:18;18818:26;;18890:9;18884:4;18880:20;18876:1;18865:9;18861:17;18854:47;18918:131;19044:4;18918:131;:::i;:::-;18910:139;;18637:419;;;:::o;19062:182::-;19202:34;19198:1;19190:6;19186:14;19179:58;19062:182;:::o;19250:366::-;19392:3;19413:67;19477:2;19472:3;19413:67;:::i;:::-;19406:74;;19489:93;19578:3;19489:93;:::i;:::-;19607:2;19602:3;19598:12;19591:19;;19250:366;;;:::o;19622:419::-;19788:4;19826:2;19815:9;19811:18;19803:26;;19875:9;19869:4;19865:20;19861:1;19850:9;19846:17;19839:47;19903:131;20029:4;19903:131;:::i;:::-;19895:139;;19622:419;;;:::o;20047:180::-;20095:77;20092:1;20085:88;20192:4;20189:1;20182:15;20216:4;20213:1;20206:15;20233:180;20281:77;20278:1;20271:88;20378:4;20375:1;20368:15;20402:4;20399:1;20392:15;20419:143;20476:5;20507:6;20501:13;20492:22;;20523:33;20550:5;20523:33;:::i;:::-;20419:143;;;;:::o;20568:351::-;20638:6;20687:2;20675:9;20666:7;20662:23;20658:32;20655:119;;;20693:79;;:::i;:::-;20655:119;20813:1;20838:64;20894:7;20885:6;20874:9;20870:22;20838:64;:::i;:::-;20828:74;;20784:128;20568:351;;;;:::o;20925:85::-;20970:7;20999:5;20988:16;;20925:85;;;:::o;21016:158::-;21074:9;21107:61;21125:42;21134:32;21160:5;21134:32;:::i;:::-;21125:42;:::i;:::-;21107:61;:::i;:::-;21094:74;;21016:158;;;:::o;21180:147::-;21275:45;21314:5;21275:45;:::i;:::-;21270:3;21263:58;21180:147;;:::o;21333:114::-;21400:6;21434:5;21428:12;21418:22;;21333:114;;;:::o;21453:184::-;21552:11;21586:6;21581:3;21574:19;21626:4;21621:3;21617:14;21602:29;;21453:184;;;;:::o;21643:132::-;21710:4;21733:3;21725:11;;21763:4;21758:3;21754:14;21746:22;;21643:132;;;:::o;21781:108::-;21858:24;21876:5;21858:24;:::i;:::-;21853:3;21846:37;21781:108;;:::o;21895:179::-;21964:10;21985:46;22027:3;22019:6;21985:46;:::i;:::-;22063:4;22058:3;22054:14;22040:28;;21895:179;;;;:::o;22080:113::-;22150:4;22182;22177:3;22173:14;22165:22;;22080:113;;;:::o;22229:732::-;22348:3;22377:54;22425:5;22377:54;:::i;:::-;22447:86;22526:6;22521:3;22447:86;:::i;:::-;22440:93;;22557:56;22607:5;22557:56;:::i;:::-;22636:7;22667:1;22652:284;22677:6;22674:1;22671:13;22652:284;;;22753:6;22747:13;22780:63;22839:3;22824:13;22780:63;:::i;:::-;22773:70;;22866:60;22919:6;22866:60;:::i;:::-;22856:70;;22712:224;22699:1;22696;22692:9;22687:14;;22652:284;;;22656:14;22952:3;22945:10;;22353:608;;;22229:732;;;;:::o;22967:831::-;23230:4;23268:3;23257:9;23253:19;23245:27;;23282:71;23350:1;23339:9;23335:17;23326:6;23282:71;:::i;:::-;23363:80;23439:2;23428:9;23424:18;23415:6;23363:80;:::i;:::-;23490:9;23484:4;23480:20;23475:2;23464:9;23460:18;23453:48;23518:108;23621:4;23612:6;23518:108;:::i;:::-;23510:116;;23636:72;23704:2;23693:9;23689:18;23680:6;23636:72;:::i;:::-;23718:73;23786:3;23775:9;23771:19;23762:6;23718:73;:::i;:::-;22967:831;;;;;;;;:::o;23804:179::-;23944:31;23940:1;23932:6;23928:14;23921:55;23804:179;:::o;23989:366::-;24131:3;24152:67;24216:2;24211:3;24152:67;:::i;:::-;24145:74;;24228:93;24317:3;24228:93;:::i;:::-;24346:2;24341:3;24337:12;24330:19;;23989:366;;;:::o;24361:419::-;24527:4;24565:2;24554:9;24550:18;24542:26;;24614:9;24608:4;24604:20;24600:1;24589:9;24585:17;24578:47;24642:131;24768:4;24642:131;:::i;:::-;24634:139;;24361:419;;;:::o;24786:224::-;24926:34;24922:1;24914:6;24910:14;24903:58;24995:7;24990:2;24982:6;24978:15;24971:32;24786:224;:::o;25016:366::-;25158:3;25179:67;25243:2;25238:3;25179:67;:::i;:::-;25172:74;;25255:93;25344:3;25255:93;:::i;:::-;25373:2;25368:3;25364:12;25357:19;;25016:366;;;:::o;25388:419::-;25554:4;25592:2;25581:9;25577:18;25569:26;;25641:9;25635:4;25631:20;25627:1;25616:9;25612:17;25605:47;25669:131;25795:4;25669:131;:::i;:::-;25661:139;;25388:419;;;:::o;25813:222::-;25953:34;25949:1;25941:6;25937:14;25930:58;26022:5;26017:2;26009:6;26005:15;25998:30;25813:222;:::o;26041:366::-;26183:3;26204:67;26268:2;26263:3;26204:67;:::i;:::-;26197:74;;26280:93;26369:3;26280:93;:::i;:::-;26398:2;26393:3;26389:12;26382:19;;26041:366;;;:::o;26413:419::-;26579:4;26617:2;26606:9;26602:18;26594:26;;26666:9;26660:4;26656:20;26652:1;26641:9;26637:17;26630:47;26694:131;26820:4;26694:131;:::i;:::-;26686:139;;26413:419;;;:::o;26838:410::-;26878:7;26901:20;26919:1;26901:20;:::i;:::-;26896:25;;26935:20;26953:1;26935:20;:::i;:::-;26930:25;;26990:1;26987;26983:9;27012:30;27030:11;27012:30;:::i;:::-;27001:41;;27191:1;27182:7;27178:15;27175:1;27172:22;27152:1;27145:9;27125:83;27102:139;;27221:18;;:::i;:::-;27102:139;26886:362;26838:410;;;;:::o;27254:194::-;27294:4;27314:20;27332:1;27314:20;:::i;:::-;27309:25;;27348:20;27366:1;27348:20;:::i;:::-;27343:25;;27392:1;27389;27385:9;27377:17;;27416:1;27410:4;27407:11;27404:37;;;27421:18;;:::i;:::-;27404:37;27254:194;;;;:::o;27454:220::-;27594:34;27590:1;27582:6;27578:14;27571:58;27663:3;27658:2;27650:6;27646:15;27639:28;27454:220;:::o;27680:366::-;27822:3;27843:67;27907:2;27902:3;27843:67;:::i;:::-;27836:74;;27919:93;28008:3;27919:93;:::i;:::-;28037:2;28032:3;28028:12;28021:19;;27680:366;;;:::o;28052:419::-;28218:4;28256:2;28245:9;28241:18;28233:26;;28305:9;28299:4;28295:20;28291:1;28280:9;28276:17;28269:47;28333:131;28459:4;28333:131;:::i;:::-;28325:139;;28052:419;;;:::o;28477:221::-;28617:34;28613:1;28605:6;28601:14;28594:58;28686:4;28681:2;28673:6;28669:15;28662:29;28477:221;:::o;28704:366::-;28846:3;28867:67;28931:2;28926:3;28867:67;:::i;:::-;28860:74;;28943:93;29032:3;28943:93;:::i;:::-;29061:2;29056:3;29052:12;29045:19;;28704:366;;;:::o;29076:419::-;29242:4;29280:2;29269:9;29265:18;29257:26;;29329:9;29323:4;29319:20;29315:1;29304:9;29300:17;29293:47;29357:131;29483:4;29357:131;:::i;:::-;29349:139;;29076:419;;;:::o;29501:332::-;29622:4;29660:2;29649:9;29645:18;29637:26;;29673:71;29741:1;29730:9;29726:17;29717:6;29673:71;:::i;:::-;29754:72;29822:2;29811:9;29807:18;29798:6;29754:72;:::i;:::-;29501:332;;;;;:::o;29839:225::-;29979:34;29975:1;29967:6;29963:14;29956:58;30048:8;30043:2;30035:6;30031:15;30024:33;29839:225;:::o;30070:366::-;30212:3;30233:67;30297:2;30292:3;30233:67;:::i;:::-;30226:74;;30309:93;30398:3;30309:93;:::i;:::-;30427:2;30422:3;30418:12;30411:19;;30070:366;;;:::o;30442:419::-;30608:4;30646:2;30635:9;30631:18;30623:26;;30695:9;30689:4;30685:20;30681:1;30670:9;30666:17;30659:47;30723:131;30849:4;30723:131;:::i;:::-;30715:139;;30442:419;;;:::o;30867:137::-;30921:5;30952:6;30946:13;30937:22;;30968:30;30992:5;30968:30;:::i;:::-;30867:137;;;;:::o;31010:345::-;31077:6;31126:2;31114:9;31105:7;31101:23;31097:32;31094:119;;;31132:79;;:::i;:::-;31094:119;31252:1;31277:61;31330:7;31321:6;31310:9;31306:22;31277:61;:::i;:::-;31267:71;;31223:125;31010:345;;;;:::o;31361:229::-;31501:34;31497:1;31489:6;31485:14;31478:58;31570:12;31565:2;31557:6;31553:15;31546:37;31361:229;:::o;31596:366::-;31738:3;31759:67;31823:2;31818:3;31759:67;:::i;:::-;31752:74;;31835:93;31924:3;31835:93;:::i;:::-;31953:2;31948:3;31944:12;31937:19;;31596:366;;;:::o;31968:419::-;32134:4;32172:2;32161:9;32157:18;32149:26;;32221:9;32215:4;32211:20;32207:1;32196:9;32192:17;32185:47;32249:131;32375:4;32249:131;:::i;:::-;32241:139;;31968:419;;;:::o;32393:225::-;32533:34;32529:1;32521:6;32517:14;32510:58;32602:8;32597:2;32589:6;32585:15;32578:33;32393:225;:::o;32624:366::-;32766:3;32787:67;32851:2;32846:3;32787:67;:::i;:::-;32780:74;;32863:93;32952:3;32863:93;:::i;:::-;32981:2;32976:3;32972:12;32965:19;;32624:366;;;:::o;32996:419::-;33162:4;33200:2;33189:9;33185:18;33177:26;;33249:9;33243:4;33239:20;33235:1;33224:9;33220:17;33213:47;33277:131;33403:4;33277:131;:::i;:::-;33269:139;;32996:419;;;:::o;33421:98::-;33472:6;33506:5;33500:12;33490:22;;33421:98;;;:::o;33525:147::-;33626:11;33663:3;33648:18;;33525:147;;;;:::o;33678:386::-;33782:3;33810:38;33842:5;33810:38;:::i;:::-;33864:88;33945:6;33940:3;33864:88;:::i;:::-;33857:95;;33961:65;34019:6;34014:3;34007:4;34000:5;33996:16;33961:65;:::i;:::-;34051:6;34046:3;34042:16;34035:23;;33786:278;33678:386;;;;:::o;34070:271::-;34200:3;34222:93;34311:3;34302:6;34222:93;:::i;:::-;34215:100;;34332:3;34325:10;;34070:271;;;;:::o;34347:179::-;34487:31;34483:1;34475:6;34471:14;34464:55;34347:179;:::o;34532:366::-;34674:3;34695:67;34759:2;34754:3;34695:67;:::i;:::-;34688:74;;34771:93;34860:3;34771:93;:::i;:::-;34889:2;34884:3;34880:12;34873:19;;34532:366;;;:::o;34904:419::-;35070:4;35108:2;35097:9;35093:18;35085:26;;35157:9;35151:4;35147:20;35143:1;35132:9;35128:17;35121:47;35185:131;35311:4;35185:131;:::i;:::-;35177:139;;34904:419;;;:::o

Swarm Source

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