ETH Price: $3,450.60 (+1.74%)
Gas: 4 Gwei

Token

RuneTurbo (RTB)
 

Overview

Max Total Supply

100,000,000 RTB

Holders

104

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 RTB

Value
$0.00
0x37a8f295612602f2774d331e562be9e61b83a327
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
RuneTurbo

Compiler Version
v0.8.23+commit.f704f362

Optimization Enabled:
No with 200 runs

Other Settings:
paris EvmVersion
File 1 of 9 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {Context} from "../utils/Context.sol";

/**
 * @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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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 2 of 9 : draft-IERC6093.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

File 3 of 9 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";
import {Context} from "../../utils/Context.sol";
import {IERC20Errors} from "../../interfaces/draft-IERC6093.sol";

/**
 * @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}.
 *
 * 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].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * 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 returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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 default value returned by this function, unless
     * it's 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 returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual 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 `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` 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 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        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 `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` 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.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` 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.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

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

File 4 of 9 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;

import {IERC20} from "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 */
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 5 of 9 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}

File 6 of 9 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

/**
 * @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;
    }

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

File 7 of 9 : 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 8 of 9 : IUniswapV2Router02.sol
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

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 9 of 9 : RuneTurbo.sol
/**
 *  *
 * @author Rune_Turbo
 * Website: http://runeturbo.io/
 * Dapp: https://runeturbo.io/bridge
 * Twitter: https://twitter.com/Rune_Turbo
 * Telegram: https://t.me/Rune_Turbo
 *
 */

// SPDX-License-Identifier: UNLICENSED

pragma solidity ^0.8.23;

import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";

import {IUniswapV2Router02} from "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.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;
}

contract RuneTurbo is Ownable, ERC20 {
    receive() external payable {}
    uint256 public constant TOTAL_SUPPLY = 100_000_000 ether;

    IUniswapV2Router02 immutable router =
        IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
    address public pair;

    bool private isOpenTrading;
    address public taxPool; // 1 2 2

    bool public limit = true;

    uint256 private _maxWalletSize = 1000000 ether;
    uint256 public swapTokenAt = 200000 ether;

    uint256 private _buy;
    uint256 private _sell;

    mapping(address => bool) private _isExcludedFromFees;

    event SwapBack(uint256 amount);

    constructor() ERC20(unicode"RuneTurbo", "RTB") Ownable(_msgSender()) {
        taxPool = address(0x399d294b6108B0b1689FaC2F293F700ABd9ff4eC);
        pair = IUniswapV2Factory(router.factory()).createPair(
            address(this),
            router.WETH()
        );

        _isExcludedFromFees[taxPool] = true;
        _isExcludedFromFees[_msgSender()] = true;

        _isExcludedFromFees[address(this)] = true;
        _isExcludedFromFees[address(router)] = true;
        _isExcludedFromFees[address(0xdead)] = true;

        _mint(_msgSender(), TOTAL_SUPPLY);
        _approve(_msgSender(), address(router), type(uint256).max);
    }

    function openTrading() external onlyOwner {
        require(!isOpenTrading, "Trading already open");
        isOpenTrading = true;
    }

    function removeLimit() external onlyOwner {
        require(limit, "Limit already removed");
        limit = false;
        _maxWalletSize = TOTAL_SUPPLY;
    }

    error MaxWalletAmountExceeded();

    function _update(
        address from,
        address to,
        uint256 amount
    ) internal override {
        if (
            _isExcludedFromFees[from] ||
            _isExcludedFromFees[to] ||
            (to != pair && from != pair) ||
            _swapping
        ) {
            super._update(from, to, amount);
            return;
        }

        require(isOpenTrading, "Trading not open yet");

        if (limit) {
            if (to != pair && balanceOf(to) + amount > _maxWalletSize) {
                revert MaxWalletAmountExceeded();
            }
        }

        if (to == pair && balanceOf(address(this)) >= swapTokenAt) {
            swapBack();
        }

        uint256 _fees;

        // BUY
        if (from == pair) {
            _buy++;
            _fees = (amount * (_buy > 25 ? 5 : 25)) / 100;
        } else if (to == pair) {
            // SELL
            _sell++;
            _fees = (amount * (_sell > 25 ? 5 : 25)) / 100;
        }

        if (_fees > 0) {
            super._update(from, address(this), _fees);
            amount = amount - _fees;
        }

        super._update(from, to, amount);
    }

    bool private _swapping = false;
    modifier onSwap() {
        _swapping = true;
        _;
        _swapping = false;
    }

    function swapBack() private onSwap {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = router.WETH();

        _approve(address(this), address(router), swapTokenAt);

        router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            swapTokenAt,
            0,
            path,
            address(this),
            block.timestamp
        );

        uint256 currentETH = address(this).balance;
        (bool _sent, ) = payable(taxPool).call{value: currentETH}("");
        require(_sent, "Tx failed");

        emit SwapBack(swapTokenAt);
    }

    function getIsExcludedFromFees(
        address _address
    ) external view returns (bool) {
        return _isExcludedFromFees[_address];
    }

    function excludedFromFees(
        address _address,
        bool _value
    ) external onlyOwner {
        _isExcludedFromFees[_address] = _value;
    }

    error NotAuthorized();
    function setWalletStaking(address _newAddress) external {
        if (_msgSender() != owner() || _msgSender() != taxPool) {
            revert NotAuthorized();
        }
        taxPool = _newAddress;
    }

    function burn(uint256 value) external {
        _burn(_msgSender(), value);
    }

    function setSwapTokenAt(uint256 _swapTokenAt) external onlyOwner {
        require(
            _swapTokenAt <= TOTAL_SUPPLY / 40, // 2.5%
            "_swapTokenAt must be less than 2.5% of total supply"
        );
        swapTokenAt = _swapTokenAt;
    }

    function emergency(uint256 amount) external {
        if (_msgSender() != owner() || _msgSender() != taxPool) {
            revert NotAuthorized();
        }
        if (amount == 0) {
            amount = address(this).balance;
        }
        (bool _sent, ) = payable(_msgSender()).call{value: amount}("");
        require(_sent, "send ETH failed");
    }
}

Settings
{
  "evmVersion": "paris",
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[],"name":"MaxWalletAmountExceeded","type":"error"},{"inputs":[],"name":"NotAuthorized","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SwapBack","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","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":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"emergency","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_value","type":"bool"}],"name":"excludedFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"getIsExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limit","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":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_swapTokenAt","type":"uint256"}],"name":"setSwapTokenAt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"setWalletStaking","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokenAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxPool","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":"value","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":"value","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"},{"stateMutability":"payable","type":"receive"}]

60a0604052737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff168152506001600760146101000a81548160ff02191690831515021790555069d3c21bcecceda1000000600855692a5a058fc295ed0000006009556000600d60006101000a81548160ff021916908315150217905550348015620000aa57600080fd5b506040518060400160405280600981526020017f52756e65547572626f00000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f5254420000000000000000000000000000000000000000000000000000000000815250620001276200063560201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036200019c5760006040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040162000193919062001466565b60405180910390fd5b620001ad816200063d60201b60201c565b508160049081620001bf9190620016fd565b508060059081620001d19190620016fd565b50505073399d294b6108b0b1689fac2f293f700abd9ff4ec600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060805173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000277573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200029d91906200181a565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060805173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000307573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200032d91906200181a565b6040518363ffffffff1660e01b81526004016200034c9291906200184c565b6020604051808303816000875af11580156200036c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200039291906200181a565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600c6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c6000620004626200063560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c600060805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620005eb620005d36200063560201b60201c565b6a52b7d2dcc80cd2e40000006200070160201b60201c565b6200062f620005ff6200063560201b60201c565b6080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6200078e60201b60201c565b62001d6d565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620007765760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016200076d919062001466565b60405180910390fd5b6200078a60008383620007a860201b60201c565b5050565b620007a3838383600162000c7960201b60201c565b505050565b600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806200084a5750600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80620008ff5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015620008fe5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b80620009175750600d60009054906101000a900460ff165b1562000936576200093083838362000e5960201b60201c565b62000c74565b600660149054906101000a900460ff1662000988576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200097f90620018da565b60405180910390fd5b600760149054906101000a900460ff161562000a5457600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801562000a1b57506008548162000a0d846200108c60201b60201c565b62000a1991906200192b565b115b1562000a53576040517fa9a44dff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614801562000ac4575060095462000ac1306200108c60201b60201c565b10155b1562000adb5762000ada620010d560201b60201c565b5b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160362000b8957600a600081548092919062000b489062001966565b919050555060646019600a541162000b6257601962000b65565b60055b60ff168362000b759190620019b3565b62000b81919062001a2d565b905062000c31565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000c3057600b600081548092919062000bf49062001966565b919050555060646019600b541162000c0e57601962000c11565b60055b60ff168362000c219190620019b3565b62000c2d919062001a2d565b90505b5b600081111562000c5f5762000c4e84308362000e5960201b60201c565b808262000c5c919062001a65565b91505b62000c7284848462000e5960201b60201c565b505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160362000cee5760006040517fe602df0500000000000000000000000000000000000000000000000000000000815260040162000ce5919062001466565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000d635760006040517f94280d6200000000000000000000000000000000000000000000000000000000815260040162000d5a919062001466565b60405180910390fd5b81600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550801562000e53578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405162000e4a919062001ab1565b60405180910390a35b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000eaf57806003600082825462000ea291906200192b565b9250508190555062000f87565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101562000f3f578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040162000f369392919062001ace565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000fd2578060036000828254039250508190555062001020565b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200107f919062001ab1565b60405180910390a3505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6001600d60006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff81111562001110576200110f6200148e565b5b6040519080825280602002602001820160405280156200113f5781602001602082028036833780820191505090505b50905030816000815181106200115a576200115962001b0b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060805173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620011e2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200120891906200181a565b816001815181106200121f576200121e62001b0b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505062001270306080516009546200078e60201b60201c565b60805173ffffffffffffffffffffffffffffffffffffffff1663791ac94760095460008430426040518663ffffffff1660e01b8152600401620012b895949392919062001c4b565b600060405180830381600087803b158015620012d357600080fd5b505af1158015620012e8573d6000803e3d6000fd5b5050505060004790506000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516200133b9062001ce4565b60006040518083038185875af1925050503d80600081146200137a576040519150601f19603f3d011682016040523d82523d6000602084013e6200137f565b606091505b5050905080620013c6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620013bd9062001d4b565b60405180910390fd5b7fd851aeb8e2074b285cc12da5e2fbf79e642e38f62ef8e59590790c157491ee05600954604051620013f9919062001ab1565b60405180910390a15050506000600d60006101000a81548160ff021916908315150217905550565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200144e8262001421565b9050919050565b620014608162001441565b82525050565b60006020820190506200147d600083018462001455565b92915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200150557607f821691505b6020821081036200151b576200151a620014bd565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620015857fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262001546565b62001591868362001546565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620015de620015d8620015d284620015a9565b620015b3565b620015a9565b9050919050565b6000819050919050565b620015fa83620015bd565b620016126200160982620015e5565b84845462001553565b825550505050565b600090565b620016296200161a565b62001636818484620015ef565b505050565b5b818110156200165e57620016526000826200161f565b6001810190506200163c565b5050565b601f821115620016ad57620016778162001521565b620016828462001536565b8101602085101562001692578190505b620016aa620016a18562001536565b8301826200163b565b50505b505050565b600082821c905092915050565b6000620016d260001984600802620016b2565b1980831691505092915050565b6000620016ed8383620016bf565b9150826002028217905092915050565b620017088262001483565b67ffffffffffffffff8111156200172457620017236200148e565b5b620017308254620014ec565b6200173d82828562001662565b600060209050601f83116001811462001775576000841562001760578287015190505b6200176c8582620016df565b865550620017dc565b601f198416620017858662001521565b60005b82811015620017af5784890151825560018201915060208501945060208101905062001788565b86831015620017cf5784890151620017cb601f891682620016bf565b8355505b6001600288020188555050505b505050505050565b600080fd5b620017f48162001441565b81146200180057600080fd5b50565b6000815190506200181481620017e9565b92915050565b600060208284031215620018335762001832620017e4565b5b6000620018438482850162001803565b91505092915050565b600060408201905062001863600083018562001455565b62001872602083018462001455565b9392505050565b600082825260208201905092915050565b7f54726164696e67206e6f74206f70656e20796574000000000000000000000000600082015250565b6000620018c260148362001879565b9150620018cf826200188a565b602082019050919050565b60006020820190508181036000830152620018f581620018b3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200193882620015a9565b91506200194583620015a9565b925082820190508082111562001960576200195f620018fc565b5b92915050565b60006200197382620015a9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203620019a857620019a7620018fc565b5b600182019050919050565b6000620019c082620015a9565b9150620019cd83620015a9565b9250828202620019dd81620015a9565b91508282048414831517620019f757620019f6620018fc565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062001a3a82620015a9565b915062001a4783620015a9565b92508262001a5a5762001a59620019fe565b5b828204905092915050565b600062001a7282620015a9565b915062001a7f83620015a9565b925082820390508181111562001a9a5762001a99620018fc565b5b92915050565b62001aab81620015a9565b82525050565b600060208201905062001ac8600083018462001aa0565b92915050565b600060608201905062001ae5600083018662001455565b62001af4602083018562001aa0565b62001b03604083018462001aa0565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b600062001b6562001b5f62001b598462001b3a565b620015b3565b620015a9565b9050919050565b62001b778162001b44565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b62001bb48162001441565b82525050565b600062001bc8838362001ba9565b60208301905092915050565b6000602082019050919050565b600062001bee8262001b7d565b62001bfa818562001b88565b935062001c078362001b99565b8060005b8381101562001c3e57815162001c22888262001bba565b975062001c2f8362001bd4565b92505060018101905062001c0b565b5085935050505092915050565b600060a08201905062001c62600083018862001aa0565b62001c71602083018762001b6c565b818103604083015262001c85818662001be1565b905062001c96606083018562001455565b62001ca5608083018462001aa0565b9695505050505050565b600081905092915050565b50565b600062001ccc60008362001caf565b915062001cd98262001cba565b600082019050919050565b600062001cf18262001cbd565b9150819050919050565b7f5478206661696c65640000000000000000000000000000000000000000000000600082015250565b600062001d3360098362001879565b915062001d408262001cfb565b602082019050919050565b6000602082019050818103600083015262001d668162001d24565b9050919050565b6080516128b662001d9760003960008181611b0801528181611be90152611c1201526128b66000f3fe60806040526004361061016a5760003560e01c8063864b3167116100d1578063a9059cbb1161008a578063c9567bf911610064578063c9567bf914610527578063dd62ed3e1461053e578063e5c301201461057b578063f2fde38b146105a457610171565b8063a9059cbb14610496578063af7a26d0146104d3578063b12cbc76146104fc57610171565b8063864b3167146103965780638da5cb5b146103bf578063902d55a5146103ea57806395d89b4114610415578063a4d66daf14610440578063a8aa1b311461046b57610171565b806342966c681161012357806342966c681461029a57806362256589146102c357806370a08231146102da578063715018a61461031757806373bc5a361461032e5780637b16cea01461035957610171565b806306fdde0314610176578063095ea7b3146101a157806316697fc5146101de57806318160ddd1461020757806323b872dd14610232578063313ce5671461026f57610171565b3661017157005b600080fd5b34801561018257600080fd5b5061018b6105cd565b6040516101989190611e62565b60405180910390f35b3480156101ad57600080fd5b506101c860048036038101906101c39190611f1d565b61065f565b6040516101d59190611f78565b60405180910390f35b3480156101ea57600080fd5b5061020560048036038101906102009190611fbf565b610682565b005b34801561021357600080fd5b5061021c6106e5565b604051610229919061200e565b60405180910390f35b34801561023e57600080fd5b5061025960048036038101906102549190612029565b6106ef565b6040516102669190611f78565b60405180910390f35b34801561027b57600080fd5b5061028461071e565b6040516102919190612098565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc91906120b3565b610727565b005b3480156102cf57600080fd5b506102d861073b565b005b3480156102e657600080fd5b5061030160048036038101906102fc91906120e0565b6107c1565b60405161030e919061200e565b60405180910390f35b34801561032357600080fd5b5061032c61080a565b005b34801561033a57600080fd5b5061034361081e565b604051610350919061200e565b60405180910390f35b34801561036557600080fd5b50610380600480360381019061037b91906120e0565b610824565b60405161038d9190611f78565b60405180910390f35b3480156103a257600080fd5b506103bd60048036038101906103b891906120b3565b61087a565b005b3480156103cb57600080fd5b506103d46108e6565b6040516103e1919061211c565b60405180910390f35b3480156103f657600080fd5b506103ff61090f565b60405161040c919061200e565b60405180910390f35b34801561042157600080fd5b5061042a61091e565b6040516104379190611e62565b60405180910390f35b34801561044c57600080fd5b506104556109b0565b6040516104629190611f78565b60405180910390f35b34801561047757600080fd5b506104806109c3565b60405161048d919061211c565b60405180910390f35b3480156104a257600080fd5b506104bd60048036038101906104b89190611f1d565b6109e9565b6040516104ca9190611f78565b60405180910390f35b3480156104df57600080fd5b506104fa60048036038101906104f591906120e0565b610a0c565b005b34801561050857600080fd5b50610511610b25565b60405161051e919061211c565b60405180910390f35b34801561053357600080fd5b5061053c610b4b565b005b34801561054a57600080fd5b5061056560048036038101906105609190612137565b610bc0565b604051610572919061200e565b60405180910390f35b34801561058757600080fd5b506105a2600480360381019061059d91906120b3565b610c47565b005b3480156105b057600080fd5b506105cb60048036038101906105c691906120e0565b610ddf565b005b6060600480546105dc906121a6565b80601f0160208091040260200160405190810160405280929190818152602001828054610608906121a6565b80156106555780601f1061062a57610100808354040283529160200191610655565b820191906000526020600020905b81548152906001019060200180831161063857829003601f168201915b5050505050905090565b60008061066a610e65565b9050610677818585610e6d565b600191505092915050565b61068a610e7f565b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600354905090565b6000806106fa610e65565b9050610707858285610f06565b610712858585610f9a565b60019150509392505050565b60006012905090565b610738610732610e65565b8261108e565b50565b610743610e7f565b600760149054906101000a900460ff16610792576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078990612223565b60405180910390fd5b6000600760146101000a81548160ff0219169083151502179055506a52b7d2dcc80cd2e4000000600881905550565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610812610e7f565b61081c6000611110565b565b60095481565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610882610e7f565b60286a52b7d2dcc80cd2e400000061089a91906122a1565b8111156108dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d390612344565b60405180910390fd5b8060098190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6a52b7d2dcc80cd2e400000081565b60606005805461092d906121a6565b80601f0160208091040260200160405190810160405280929190818152602001828054610959906121a6565b80156109a65780601f1061097b576101008083540402835291602001916109a6565b820191906000526020600020905b81548152906001019060200180831161098957829003601f168201915b5050505050905090565b600760149054906101000a900460ff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806109f4610e65565b9050610a01818585610f9a565b600191505092915050565b610a146108e6565b73ffffffffffffffffffffffffffffffffffffffff16610a32610e65565b73ffffffffffffffffffffffffffffffffffffffff16141580610aaa5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610a91610e65565b73ffffffffffffffffffffffffffffffffffffffff1614155b15610ae1576040517fea8e4eb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610b53610e7f565b600660149054906101000a900460ff1615610ba3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9a906123b0565b60405180910390fd5b6001600660146101000a81548160ff021916908315150217905550565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c4f6108e6565b73ffffffffffffffffffffffffffffffffffffffff16610c6d610e65565b73ffffffffffffffffffffffffffffffffffffffff16141580610ce55750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610ccc610e65565b73ffffffffffffffffffffffffffffffffffffffff1614155b15610d1c576040517fea8e4eb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008103610d28574790505b6000610d32610e65565b73ffffffffffffffffffffffffffffffffffffffff1682604051610d5590612401565b60006040518083038185875af1925050503d8060008114610d92576040519150601f19603f3d011682016040523d82523d6000602084013e610d97565b606091505b5050905080610ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd290612462565b60405180910390fd5b5050565b610de7610e7f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e595760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610e50919061211c565b60405180910390fd5b610e6281611110565b50565b600033905090565b610e7a83838360016111d4565b505050565b610e87610e65565b73ffffffffffffffffffffffffffffffffffffffff16610ea56108e6565b73ffffffffffffffffffffffffffffffffffffffff1614610f0457610ec8610e65565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610efb919061211c565b60405180910390fd5b565b6000610f128484610bc0565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f945781811015610f84578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610f7b93929190612482565b60405180910390fd5b610f93848484840360006111d4565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361100c5760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401611003919061211c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361107e5760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401611075919061211c565b60405180910390fd5b6110898383836113ab565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111005760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016110f7919061211c565b60405180910390fd5b61110c826000836113ab565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036112465760006040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161123d919061211c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112b85760006040517f94280d620000000000000000000000000000000000000000000000000000000081526004016112af919061211c565b60405180910390fd5b81600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080156113a5578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161139c919061200e565b60405180910390a35b50505050565b600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061144c5750600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806114ff5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156114fe5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b806115165750600d60009054906101000a900460ff165b1561152b57611526838383611826565b611821565b600660149054906101000a900460ff1661157a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157190612505565b60405180910390fd5b600760149054906101000a900460ff161561163957600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156116015750600854816115f5846107c1565b6115ff9190612525565b115b15611638576040517fa9a44dff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161480156116a0575060095461169d306107c1565b10155b156116ae576116ad611a4e565b5b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361175257600a600081548092919061171890612559565b919050555060646019600a5411611730576019611733565b60055b60ff168361174191906125a1565b61174b91906122a1565b90506117f1565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117f057600b60008154809291906117ba90612559565b919050555060646019600b54116117d25760196117d5565b60055b60ff16836117e391906125a1565b6117ed91906122a1565b90505b5b600081111561181457611805843083611826565b808261181191906125e3565b91505b61181f848484611826565b505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361187857806003600082825461186c9190612525565b9250508190555061194d565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611905578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016118fc93929190612482565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361199657806003600082825403925050819055506119e4565b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611a41919061200e565b60405180910390a3505050565b6001600d60006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115611a8657611a85612617565b5b604051908082528060200260200182016040528015611ab45781602001602082028036833780820191505090505b5090503081600081518110611acc57611acb612646565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b71573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b95919061268a565b81600181518110611ba957611ba8612646565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611c10307f0000000000000000000000000000000000000000000000000000000000000000600954610e6d565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac94760095460008430426040518663ffffffff1660e01b8152600401611c749594939291906127ba565b600060405180830381600087803b158015611c8e57600080fd5b505af1158015611ca2573d6000803e3d6000fd5b5050505060004790506000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611cf390612401565b60006040518083038185875af1925050503d8060008114611d30576040519150601f19603f3d011682016040523d82523d6000602084013e611d35565b606091505b5050905080611d79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7090612860565b60405180910390fd5b7fd851aeb8e2074b285cc12da5e2fbf79e642e38f62ef8e59590790c157491ee05600954604051611daa919061200e565b60405180910390a15050506000600d60006101000a81548160ff021916908315150217905550565b600081519050919050565b600082825260208201905092915050565b60005b83811015611e0c578082015181840152602081019050611df1565b60008484015250505050565b6000601f19601f8301169050919050565b6000611e3482611dd2565b611e3e8185611ddd565b9350611e4e818560208601611dee565b611e5781611e18565b840191505092915050565b60006020820190508181036000830152611e7c8184611e29565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611eb482611e89565b9050919050565b611ec481611ea9565b8114611ecf57600080fd5b50565b600081359050611ee181611ebb565b92915050565b6000819050919050565b611efa81611ee7565b8114611f0557600080fd5b50565b600081359050611f1781611ef1565b92915050565b60008060408385031215611f3457611f33611e84565b5b6000611f4285828601611ed2565b9250506020611f5385828601611f08565b9150509250929050565b60008115159050919050565b611f7281611f5d565b82525050565b6000602082019050611f8d6000830184611f69565b92915050565b611f9c81611f5d565b8114611fa757600080fd5b50565b600081359050611fb981611f93565b92915050565b60008060408385031215611fd657611fd5611e84565b5b6000611fe485828601611ed2565b9250506020611ff585828601611faa565b9150509250929050565b61200881611ee7565b82525050565b60006020820190506120236000830184611fff565b92915050565b60008060006060848603121561204257612041611e84565b5b600061205086828701611ed2565b935050602061206186828701611ed2565b925050604061207286828701611f08565b9150509250925092565b600060ff82169050919050565b6120928161207c565b82525050565b60006020820190506120ad6000830184612089565b92915050565b6000602082840312156120c9576120c8611e84565b5b60006120d784828501611f08565b91505092915050565b6000602082840312156120f6576120f5611e84565b5b600061210484828501611ed2565b91505092915050565b61211681611ea9565b82525050565b6000602082019050612131600083018461210d565b92915050565b6000806040838503121561214e5761214d611e84565b5b600061215c85828601611ed2565b925050602061216d85828601611ed2565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806121be57607f821691505b6020821081036121d1576121d0612177565b5b50919050565b7f4c696d697420616c72656164792072656d6f7665640000000000000000000000600082015250565b600061220d601583611ddd565b9150612218826121d7565b602082019050919050565b6000602082019050818103600083015261223c81612200565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006122ac82611ee7565b91506122b783611ee7565b9250826122c7576122c6612243565b5b828204905092915050565b7f5f73776170546f6b656e4174206d757374206265206c657373207468616e203260008201527f2e3525206f6620746f74616c20737570706c7900000000000000000000000000602082015250565b600061232e603383611ddd565b9150612339826122d2565b604082019050919050565b6000602082019050818103600083015261235d81612321565b9050919050565b7f54726164696e6720616c7265616479206f70656e000000000000000000000000600082015250565b600061239a601483611ddd565b91506123a582612364565b602082019050919050565b600060208201905081810360008301526123c98161238d565b9050919050565b600081905092915050565b50565b60006123eb6000836123d0565b91506123f6826123db565b600082019050919050565b600061240c826123de565b9150819050919050565b7f73656e6420455448206661696c65640000000000000000000000000000000000600082015250565b600061244c600f83611ddd565b915061245782612416565b602082019050919050565b6000602082019050818103600083015261247b8161243f565b9050919050565b6000606082019050612497600083018661210d565b6124a46020830185611fff565b6124b16040830184611fff565b949350505050565b7f54726164696e67206e6f74206f70656e20796574000000000000000000000000600082015250565b60006124ef601483611ddd565b91506124fa826124b9565b602082019050919050565b6000602082019050818103600083015261251e816124e2565b9050919050565b600061253082611ee7565b915061253b83611ee7565b925082820190508082111561255357612552612272565b5b92915050565b600061256482611ee7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361259657612595612272565b5b600182019050919050565b60006125ac82611ee7565b91506125b783611ee7565b92508282026125c581611ee7565b915082820484148315176125dc576125db612272565b5b5092915050565b60006125ee82611ee7565b91506125f983611ee7565b925082820390508181111561261157612610612272565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061268481611ebb565b92915050565b6000602082840312156126a05761269f611e84565b5b60006126ae84828501612675565b91505092915050565b6000819050919050565b6000819050919050565b60006126e66126e16126dc846126b7565b6126c1565b611ee7565b9050919050565b6126f6816126cb565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61273181611ea9565b82525050565b60006127438383612728565b60208301905092915050565b6000602082019050919050565b6000612767826126fc565b6127718185612707565b935061277c83612718565b8060005b838110156127ad5781516127948882612737565b975061279f8361274f565b925050600181019050612780565b5085935050505092915050565b600060a0820190506127cf6000830188611fff565b6127dc60208301876126ed565b81810360408301526127ee818661275c565b90506127fd606083018561210d565b61280a6080830184611fff565b9695505050505050565b7f5478206661696c65640000000000000000000000000000000000000000000000600082015250565b600061284a600983611ddd565b915061285582612814565b602082019050919050565b600060208201905081810360008301526128798161283d565b905091905056fea264697066735822122046c4e12fc2432d4beba55b06cd7c2ac7a9c8797b0dfbbdec23fb99202e575c7f64736f6c63430008170033

Deployed Bytecode

0x60806040526004361061016a5760003560e01c8063864b3167116100d1578063a9059cbb1161008a578063c9567bf911610064578063c9567bf914610527578063dd62ed3e1461053e578063e5c301201461057b578063f2fde38b146105a457610171565b8063a9059cbb14610496578063af7a26d0146104d3578063b12cbc76146104fc57610171565b8063864b3167146103965780638da5cb5b146103bf578063902d55a5146103ea57806395d89b4114610415578063a4d66daf14610440578063a8aa1b311461046b57610171565b806342966c681161012357806342966c681461029a57806362256589146102c357806370a08231146102da578063715018a61461031757806373bc5a361461032e5780637b16cea01461035957610171565b806306fdde0314610176578063095ea7b3146101a157806316697fc5146101de57806318160ddd1461020757806323b872dd14610232578063313ce5671461026f57610171565b3661017157005b600080fd5b34801561018257600080fd5b5061018b6105cd565b6040516101989190611e62565b60405180910390f35b3480156101ad57600080fd5b506101c860048036038101906101c39190611f1d565b61065f565b6040516101d59190611f78565b60405180910390f35b3480156101ea57600080fd5b5061020560048036038101906102009190611fbf565b610682565b005b34801561021357600080fd5b5061021c6106e5565b604051610229919061200e565b60405180910390f35b34801561023e57600080fd5b5061025960048036038101906102549190612029565b6106ef565b6040516102669190611f78565b60405180910390f35b34801561027b57600080fd5b5061028461071e565b6040516102919190612098565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc91906120b3565b610727565b005b3480156102cf57600080fd5b506102d861073b565b005b3480156102e657600080fd5b5061030160048036038101906102fc91906120e0565b6107c1565b60405161030e919061200e565b60405180910390f35b34801561032357600080fd5b5061032c61080a565b005b34801561033a57600080fd5b5061034361081e565b604051610350919061200e565b60405180910390f35b34801561036557600080fd5b50610380600480360381019061037b91906120e0565b610824565b60405161038d9190611f78565b60405180910390f35b3480156103a257600080fd5b506103bd60048036038101906103b891906120b3565b61087a565b005b3480156103cb57600080fd5b506103d46108e6565b6040516103e1919061211c565b60405180910390f35b3480156103f657600080fd5b506103ff61090f565b60405161040c919061200e565b60405180910390f35b34801561042157600080fd5b5061042a61091e565b6040516104379190611e62565b60405180910390f35b34801561044c57600080fd5b506104556109b0565b6040516104629190611f78565b60405180910390f35b34801561047757600080fd5b506104806109c3565b60405161048d919061211c565b60405180910390f35b3480156104a257600080fd5b506104bd60048036038101906104b89190611f1d565b6109e9565b6040516104ca9190611f78565b60405180910390f35b3480156104df57600080fd5b506104fa60048036038101906104f591906120e0565b610a0c565b005b34801561050857600080fd5b50610511610b25565b60405161051e919061211c565b60405180910390f35b34801561053357600080fd5b5061053c610b4b565b005b34801561054a57600080fd5b5061056560048036038101906105609190612137565b610bc0565b604051610572919061200e565b60405180910390f35b34801561058757600080fd5b506105a2600480360381019061059d91906120b3565b610c47565b005b3480156105b057600080fd5b506105cb60048036038101906105c691906120e0565b610ddf565b005b6060600480546105dc906121a6565b80601f0160208091040260200160405190810160405280929190818152602001828054610608906121a6565b80156106555780601f1061062a57610100808354040283529160200191610655565b820191906000526020600020905b81548152906001019060200180831161063857829003601f168201915b5050505050905090565b60008061066a610e65565b9050610677818585610e6d565b600191505092915050565b61068a610e7f565b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600354905090565b6000806106fa610e65565b9050610707858285610f06565b610712858585610f9a565b60019150509392505050565b60006012905090565b610738610732610e65565b8261108e565b50565b610743610e7f565b600760149054906101000a900460ff16610792576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078990612223565b60405180910390fd5b6000600760146101000a81548160ff0219169083151502179055506a52b7d2dcc80cd2e4000000600881905550565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610812610e7f565b61081c6000611110565b565b60095481565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610882610e7f565b60286a52b7d2dcc80cd2e400000061089a91906122a1565b8111156108dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d390612344565b60405180910390fd5b8060098190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6a52b7d2dcc80cd2e400000081565b60606005805461092d906121a6565b80601f0160208091040260200160405190810160405280929190818152602001828054610959906121a6565b80156109a65780601f1061097b576101008083540402835291602001916109a6565b820191906000526020600020905b81548152906001019060200180831161098957829003601f168201915b5050505050905090565b600760149054906101000a900460ff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806109f4610e65565b9050610a01818585610f9a565b600191505092915050565b610a146108e6565b73ffffffffffffffffffffffffffffffffffffffff16610a32610e65565b73ffffffffffffffffffffffffffffffffffffffff16141580610aaa5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610a91610e65565b73ffffffffffffffffffffffffffffffffffffffff1614155b15610ae1576040517fea8e4eb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610b53610e7f565b600660149054906101000a900460ff1615610ba3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9a906123b0565b60405180910390fd5b6001600660146101000a81548160ff021916908315150217905550565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c4f6108e6565b73ffffffffffffffffffffffffffffffffffffffff16610c6d610e65565b73ffffffffffffffffffffffffffffffffffffffff16141580610ce55750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610ccc610e65565b73ffffffffffffffffffffffffffffffffffffffff1614155b15610d1c576040517fea8e4eb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008103610d28574790505b6000610d32610e65565b73ffffffffffffffffffffffffffffffffffffffff1682604051610d5590612401565b60006040518083038185875af1925050503d8060008114610d92576040519150601f19603f3d011682016040523d82523d6000602084013e610d97565b606091505b5050905080610ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd290612462565b60405180910390fd5b5050565b610de7610e7f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e595760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610e50919061211c565b60405180910390fd5b610e6281611110565b50565b600033905090565b610e7a83838360016111d4565b505050565b610e87610e65565b73ffffffffffffffffffffffffffffffffffffffff16610ea56108e6565b73ffffffffffffffffffffffffffffffffffffffff1614610f0457610ec8610e65565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610efb919061211c565b60405180910390fd5b565b6000610f128484610bc0565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f945781811015610f84578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610f7b93929190612482565b60405180910390fd5b610f93848484840360006111d4565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361100c5760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401611003919061211c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361107e5760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401611075919061211c565b60405180910390fd5b6110898383836113ab565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111005760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016110f7919061211c565b60405180910390fd5b61110c826000836113ab565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036112465760006040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161123d919061211c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112b85760006040517f94280d620000000000000000000000000000000000000000000000000000000081526004016112af919061211c565b60405180910390fd5b81600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080156113a5578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161139c919061200e565b60405180910390a35b50505050565b600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061144c5750600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806114ff5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156114fe5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b806115165750600d60009054906101000a900460ff165b1561152b57611526838383611826565b611821565b600660149054906101000a900460ff1661157a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157190612505565b60405180910390fd5b600760149054906101000a900460ff161561163957600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156116015750600854816115f5846107c1565b6115ff9190612525565b115b15611638576040517fa9a44dff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161480156116a0575060095461169d306107c1565b10155b156116ae576116ad611a4e565b5b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361175257600a600081548092919061171890612559565b919050555060646019600a5411611730576019611733565b60055b60ff168361174191906125a1565b61174b91906122a1565b90506117f1565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117f057600b60008154809291906117ba90612559565b919050555060646019600b54116117d25760196117d5565b60055b60ff16836117e391906125a1565b6117ed91906122a1565b90505b5b600081111561181457611805843083611826565b808261181191906125e3565b91505b61181f848484611826565b505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361187857806003600082825461186c9190612525565b9250508190555061194d565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611905578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016118fc93929190612482565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361199657806003600082825403925050819055506119e4565b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611a41919061200e565b60405180910390a3505050565b6001600d60006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115611a8657611a85612617565b5b604051908082528060200260200182016040528015611ab45781602001602082028036833780820191505090505b5090503081600081518110611acc57611acb612646565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b71573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b95919061268a565b81600181518110611ba957611ba8612646565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611c10307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d600954610e6d565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac94760095460008430426040518663ffffffff1660e01b8152600401611c749594939291906127ba565b600060405180830381600087803b158015611c8e57600080fd5b505af1158015611ca2573d6000803e3d6000fd5b5050505060004790506000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611cf390612401565b60006040518083038185875af1925050503d8060008114611d30576040519150601f19603f3d011682016040523d82523d6000602084013e611d35565b606091505b5050905080611d79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7090612860565b60405180910390fd5b7fd851aeb8e2074b285cc12da5e2fbf79e642e38f62ef8e59590790c157491ee05600954604051611daa919061200e565b60405180910390a15050506000600d60006101000a81548160ff021916908315150217905550565b600081519050919050565b600082825260208201905092915050565b60005b83811015611e0c578082015181840152602081019050611df1565b60008484015250505050565b6000601f19601f8301169050919050565b6000611e3482611dd2565b611e3e8185611ddd565b9350611e4e818560208601611dee565b611e5781611e18565b840191505092915050565b60006020820190508181036000830152611e7c8184611e29565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611eb482611e89565b9050919050565b611ec481611ea9565b8114611ecf57600080fd5b50565b600081359050611ee181611ebb565b92915050565b6000819050919050565b611efa81611ee7565b8114611f0557600080fd5b50565b600081359050611f1781611ef1565b92915050565b60008060408385031215611f3457611f33611e84565b5b6000611f4285828601611ed2565b9250506020611f5385828601611f08565b9150509250929050565b60008115159050919050565b611f7281611f5d565b82525050565b6000602082019050611f8d6000830184611f69565b92915050565b611f9c81611f5d565b8114611fa757600080fd5b50565b600081359050611fb981611f93565b92915050565b60008060408385031215611fd657611fd5611e84565b5b6000611fe485828601611ed2565b9250506020611ff585828601611faa565b9150509250929050565b61200881611ee7565b82525050565b60006020820190506120236000830184611fff565b92915050565b60008060006060848603121561204257612041611e84565b5b600061205086828701611ed2565b935050602061206186828701611ed2565b925050604061207286828701611f08565b9150509250925092565b600060ff82169050919050565b6120928161207c565b82525050565b60006020820190506120ad6000830184612089565b92915050565b6000602082840312156120c9576120c8611e84565b5b60006120d784828501611f08565b91505092915050565b6000602082840312156120f6576120f5611e84565b5b600061210484828501611ed2565b91505092915050565b61211681611ea9565b82525050565b6000602082019050612131600083018461210d565b92915050565b6000806040838503121561214e5761214d611e84565b5b600061215c85828601611ed2565b925050602061216d85828601611ed2565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806121be57607f821691505b6020821081036121d1576121d0612177565b5b50919050565b7f4c696d697420616c72656164792072656d6f7665640000000000000000000000600082015250565b600061220d601583611ddd565b9150612218826121d7565b602082019050919050565b6000602082019050818103600083015261223c81612200565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006122ac82611ee7565b91506122b783611ee7565b9250826122c7576122c6612243565b5b828204905092915050565b7f5f73776170546f6b656e4174206d757374206265206c657373207468616e203260008201527f2e3525206f6620746f74616c20737570706c7900000000000000000000000000602082015250565b600061232e603383611ddd565b9150612339826122d2565b604082019050919050565b6000602082019050818103600083015261235d81612321565b9050919050565b7f54726164696e6720616c7265616479206f70656e000000000000000000000000600082015250565b600061239a601483611ddd565b91506123a582612364565b602082019050919050565b600060208201905081810360008301526123c98161238d565b9050919050565b600081905092915050565b50565b60006123eb6000836123d0565b91506123f6826123db565b600082019050919050565b600061240c826123de565b9150819050919050565b7f73656e6420455448206661696c65640000000000000000000000000000000000600082015250565b600061244c600f83611ddd565b915061245782612416565b602082019050919050565b6000602082019050818103600083015261247b8161243f565b9050919050565b6000606082019050612497600083018661210d565b6124a46020830185611fff565b6124b16040830184611fff565b949350505050565b7f54726164696e67206e6f74206f70656e20796574000000000000000000000000600082015250565b60006124ef601483611ddd565b91506124fa826124b9565b602082019050919050565b6000602082019050818103600083015261251e816124e2565b9050919050565b600061253082611ee7565b915061253b83611ee7565b925082820190508082111561255357612552612272565b5b92915050565b600061256482611ee7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361259657612595612272565b5b600182019050919050565b60006125ac82611ee7565b91506125b783611ee7565b92508282026125c581611ee7565b915082820484148315176125dc576125db612272565b5b5092915050565b60006125ee82611ee7565b91506125f983611ee7565b925082820390508181111561261157612610612272565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061268481611ebb565b92915050565b6000602082840312156126a05761269f611e84565b5b60006126ae84828501612675565b91505092915050565b6000819050919050565b6000819050919050565b60006126e66126e16126dc846126b7565b6126c1565b611ee7565b9050919050565b6126f6816126cb565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61273181611ea9565b82525050565b60006127438383612728565b60208301905092915050565b6000602082019050919050565b6000612767826126fc565b6127718185612707565b935061277c83612718565b8060005b838110156127ad5781516127948882612737565b975061279f8361274f565b925050600181019050612780565b5085935050505092915050565b600060a0820190506127cf6000830188611fff565b6127dc60208301876126ed565b81810360408301526127ee818661275c565b90506127fd606083018561210d565b61280a6080830184611fff565b9695505050505050565b7f5478206661696c65640000000000000000000000000000000000000000000000600082015250565b600061284a600983611ddd565b915061285582612814565b602082019050919050565b600060208201905081810360008301526128798161283d565b905091905056fea264697066735822122046c4e12fc2432d4beba55b06cd7c2ac7a9c8797b0dfbbdec23fb99202e575c7f64736f6c63430008170033

Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.