ETH Price: $2,602.16 (+1.04%)

Token

Blockwise (WISE)
 

Overview

Max Total Supply

1,000,000 WISE

Holders

189

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000000000000001 WISE

Value
$0.00
0xfdBDF6AEA1bdc4478fA076d68F24F85692EfE006
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:
WISE

Compiler Version
v0.8.25+commit.b61c2a91

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-05-10
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.25;

// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)
/**
 * @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);
}

// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.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);
}

// OpenZeppelin Contracts (last updated v5.0.0) (utils/Context.sol)

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

// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)

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

// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.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 => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.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);
    }
}

interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB)
        external
        returns (address pair);
}

interface IUniswapV2Router {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

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

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

contract WISE is Ownable, ERC20 {
    uint256 public constant MAX_FEE = 5;

    IUniswapV2Router public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public marketingWallet;

    bool public taxEnabled = true;
    bool private isSwappingBack;

    uint256 public swapTokensAtAmount;
    uint256 public buyFee;
    uint256 public sellFee;

    mapping(address => bool) public isExcludedFromFees;
    mapping(address => bool) public automatedMarketMakerPairs;

    event SetMarketingWallet(
        address indexed newWallet,
        address indexed oldWallet
    );
    event ExcludeFromFees(address account, bool isExcluded);
    event SetAutomatedMarketMakerPair(address pair, bool value);

    constructor() Ownable(msg.sender) ERC20("Blockwise", "WISE") {
        address sender = msg.sender;
        address disperseApp = 0xD152f549545093347A162Dce210e7293f1452150;
        _mint(sender, 1_000_000 ether);

        marketingWallet = sender;

        swapTokensAtAmount = totalSupply() / 1000;

        buyFee = 5;

        sellFee = 5;

        uniswapV2Router = IUniswapV2Router(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

        _setAutomatedMarketMakerPair(uniswapV2Pair, true);
        _approve(address(this), address(uniswapV2Router), type(uint256).max);
        _excludeFromFees(address(this), true);
        _excludeFromFees(sender, true);
        _excludeFromFees(marketingWallet, true);
        _excludeFromFees(disperseApp, true);
    }

    function _transferOwnership(address newOwner) internal override {
        if (newOwner == address(0))
            require(!taxEnabled, "WISE: Tax is enabled");

        address oldOwner = owner();
        if (oldOwner != address(0)) {
            _excludeFromFees(oldOwner, false);
        }
        _excludeFromFees(newOwner, true);
        super._transferOwnership(newOwner);
    }

    function setMarketingWallet(address _marketingWallet) public onlyOwner {
        require(_marketingWallet != address(0), "WISE: Address 0");
        address oldWallet = marketingWallet;
        marketingWallet = _marketingWallet;
        emit SetMarketingWallet(marketingWallet, oldWallet);
    }

    function setTaxEnabled(bool value) external onlyOwner {
        taxEnabled = value;
    }

    function setSwapTokensAtAmount(uint256 amount) external onlyOwner {
        uint256 _totalSupply = totalSupply();
        require(
            amount >= (_totalSupply * 1) / 1000000,
            "WISE: Swap amount cannot be lower than 0.0001% total supply."
        );
        require(
            amount <= (_totalSupply * 5) / 1000,
            "WISE: Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = amount;
    }

    function setBuyFees(uint256 _buyFee) external onlyOwner {
        require(
            _buyFee <= MAX_FEE,
            "WISE: Must keep fees below or equal max fee"
        );
        buyFee = _buyFee;
    }

    function setSellFees(uint256 _sellFee) external onlyOwner {
        require(
            _sellFee <= MAX_FEE,
            "WISE: Must keep fees below or equal max fee"
        );
        sellFee = _sellFee;
    }

    function _excludeFromFees(address account, bool value) internal {
        isExcludedFromFees[account] = value;
        emit ExcludeFromFees(account, value);
    }

    function excludeFromFees(address account, bool value) external onlyOwner {
        _excludeFromFees(account, value);
    }

    function bulkExcludeFromFees(address[] calldata accounts, bool value)
        external
        onlyOwner
    {
        for (uint256 i = 0; i < accounts.length; i++) {
            _excludeFromFees(accounts[i], value);
        }
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) internal {
        automatedMarketMakerPairs[pair] = value;
        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function setAutomatedMarketMakerPair(address pair, bool value)
        external
        onlyOwner
    {
        _setAutomatedMarketMakerPair(pair, value);
    }

    function _update(
        address from,
        address to,
        uint256 amount
    ) internal override {
        bool takeFee = taxEnabled &&
            !isSwappingBack &&
            !(isExcludedFromFees[from] || isExcludedFromFees[to]);

        if (takeFee) {
            uint256 fees = 0;
            // on sell
            if (automatedMarketMakerPairs[to]) {
                fees = (amount * sellFee) / 100;
            }
            // on buy
            else if (automatedMarketMakerPairs[from]) {
                fees = (amount * buyFee) / 100;
            }

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

        if (
            takeFee &&
            !automatedMarketMakerPairs[from] &&
            balanceOf(address(this)) >= swapTokensAtAmount
        ) {
            isSwappingBack = true;
            _swapBack();
            isSwappingBack = false;
        }

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

    function _swapBack() internal {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        uint256 maxSwapAmount = swapTokensAtAmount * 10;
        uint256 swapAmount = balanceOf(address(this));

        if (swapAmount > maxSwapAmount) {
            swapAmount = maxSwapAmount;
        }

        uniswapV2Router.swapExactTokensForETH(
            swapAmount,
            0,
            path,
            marketingWallet,
            block.timestamp
        );
    }

    function withdrawStuckTokens(address tkn) external onlyOwner {
        if (tkn == address(0)) {
            (bool success, ) = address(msg.sender).call{
                value: address(this).balance
            }("");
            require(success, "WISE: Transfer failed");
        } else {
            require(
                IERC20(tkn).balanceOf(address(this)) > 0,
                "WISE: No tokens"
            );
            uint256 amount = IERC20(tkn).balanceOf(address(this));
            IERC20(tkn).transfer(msg.sender, amount);
        }
    }
}

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":[{"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":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","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":"address","name":"pair","type":"address"},{"indexed":false,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"SetMarketingWallet","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":"MAX_FEE","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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"bulkExcludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyFee","type":"uint256"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellFee","type":"uint256"}],"name":"setSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setTaxEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","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":"taxEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tkn","type":"address"}],"name":"withdrawStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526001600660146101000a81548160ff02191690831515021790555034801561002a575f80fd5b506040518060400160405280600981526020017f426c6f636b7769736500000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f5749534500000000000000000000000000000000000000000000000000000000815250335f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610108575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016100ff9190611165565b60405180910390fd5b6101178161046560201b60201c565b50816004908161012791906113b8565b50806005908161013791906113b8565b5050505f3390505f73d152f549545093347a162dce210e7293f145215090506101708269d3c21bcecceda100000061056260201b60201c565b8160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506103e86101c16105e760201b60201c565b6101cb91906114e1565b60078190555060056008819055506005600981905550737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505060805173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610274573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610298919061154c565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060805173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156102ff573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610323919061154c565b6040518363ffffffff1660e01b8152600401610340929190611577565b6020604051808303815f875af115801561035c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610380919061154c565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506103c660a05160016105f060201b60201c565b6103f9306080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61068160201b60201c565b61040a30600161069960201b60201c565b61041b82600161069960201b60201c565b61044d60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600161069960201b60201c565b61045e81600161069960201b60201c565b5050611a64565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036104e957600660149054906101000a900460ff16156104e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104df906115f8565b60405180910390fd5b5b5f6104f861072a60201b60201c565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461053e5761053d815f61069960201b60201c565b5b61054f82600161069960201b60201c565b61055e8261075160201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036105d2575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016105c99190611165565b60405180910390fd5b6105e35f838361081260201b60201c565b5050565b5f600354905090565b80600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055507fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab8282604051610675929190611630565b60405180910390a15050565b6106948383836001610ac060201b60201c565b505050565b80600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055507f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7828260405161071e929190611630565b60405180910390a15050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f600660149054906101000a900460ff16801561083c5750600660159054906101000a900460ff16155b80156108e05750600a5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806108de5750600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b155b905080156109f0575f600b5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610959576064600954846109489190611657565b61095291906114e1565b90506109c6565b600b5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156109c5576064600854846109b89190611657565b6109c291906114e1565b90505b5b5f8111156109ee5780836109da9190611698565b92506109ed853083610c8f60201b60201c565b5b505b808015610a445750600b5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015610a605750600754610a5d30610eab60201b60201c565b10155b15610aa9576001600660156101000a81548160ff021916908315150217905550610a8e610ef160201b60201c565b5f600660156101000a81548160ff0219169083151502179055505b610aba848484610c8f60201b60201c565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610b30575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610b279190611165565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ba0575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610b979190611165565b60405180910390fd5b8160025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610c89578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610c8091906116da565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cdf578060035f828254610cd391906116f3565b92505081905550610daf565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610d69578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610d6093929190611726565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610df6578060035f8282540392505081905550610e41565b8060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e9e91906116da565b60405180910390a3505050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f600267ffffffffffffffff811115610f0d57610f0c611188565b5b604051908082528060200260200182016040528015610f3b5781602001602082028036833780820191505090505b50905030815f81518110610f5257610f5161175b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060805173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610fd7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ffb919061154c565b8160018151811061100f5761100e61175b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250505f600a6007546110599190611657565b90505f61106b30610eab60201b60201c565b905081811115611079578190505b60805173ffffffffffffffffffffffffffffffffffffffff166318cbafe5825f8660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b81526004016110dd959493929190611878565b5f604051808303815f875af11580156110f8573d5f803e3d5ffd5b505050506040513d5f823e3d601f19601f820116820180604052508101906111209190611a1d565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61114f82611126565b9050919050565b61115f81611145565b82525050565b5f6020820190506111785f830184611156565b92915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806111f957607f821691505b60208210810361120c5761120b6111b5565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261126e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82611233565b6112788683611233565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6112bc6112b76112b284611290565b611299565b611290565b9050919050565b5f819050919050565b6112d5836112a2565b6112e96112e1826112c3565b84845461123f565b825550505050565b5f90565b6112fd6112f1565b6113088184846112cc565b505050565b5b8181101561132b576113205f826112f5565b60018101905061130e565b5050565b601f8211156113705761134181611212565b61134a84611224565b81016020851015611359578190505b61136d61136585611224565b83018261130d565b50505b505050565b5f82821c905092915050565b5f6113905f1984600802611375565b1980831691505092915050565b5f6113a88383611381565b9150826002028217905092915050565b6113c18261117e565b67ffffffffffffffff8111156113da576113d9611188565b5b6113e482546111e2565b6113ef82828561132f565b5f60209050601f831160018114611420575f841561140e578287015190505b611418858261139d565b86555061147f565b601f19841661142e86611212565b5f5b8281101561145557848901518255600182019150602085019450602081019050611430565b86831015611472578489015161146e601f891682611381565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6114eb82611290565b91506114f683611290565b92508261150657611505611487565b5b828204905092915050565b5f604051905090565b5f80fd5b5f80fd5b61152b81611145565b8114611535575f80fd5b50565b5f8151905061154681611522565b92915050565b5f602082840312156115615761156061151a565b5b5f61156e84828501611538565b91505092915050565b5f60408201905061158a5f830185611156565b6115976020830184611156565b9392505050565b5f82825260208201905092915050565b7f574953453a2054617820697320656e61626c65640000000000000000000000005f82015250565b5f6115e260148361159e565b91506115ed826115ae565b602082019050919050565b5f6020820190508181035f83015261160f816115d6565b9050919050565b5f8115159050919050565b61162a81611616565b82525050565b5f6040820190506116435f830185611156565b6116506020830184611621565b9392505050565b5f61166182611290565b915061166c83611290565b925082820261167a81611290565b91508282048414831517611691576116906114b4565b5b5092915050565b5f6116a282611290565b91506116ad83611290565b92508282039050818111156116c5576116c46114b4565b5b92915050565b6116d481611290565b82525050565b5f6020820190506116ed5f8301846116cb565b92915050565b5f6116fd82611290565b915061170883611290565b92508282019050808211156117205761171f6114b4565b5b92915050565b5f6060820190506117395f830186611156565b61174660208301856116cb565b61175360408301846116cb565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f819050919050565b5f6117ab6117a66117a184611788565b611299565b611290565b9050919050565b6117bb81611791565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6117f381611145565b82525050565b5f61180483836117ea565b60208301905092915050565b5f602082019050919050565b5f611826826117c1565b61183081856117cb565b935061183b836117db565b805f5b8381101561186b57815161185288826117f9565b975061185d83611810565b92505060018101905061183e565b5085935050505092915050565b5f60a08201905061188b5f8301886116cb565b61189860208301876117b2565b81810360408301526118aa818661181c565b90506118b96060830185611156565b6118c660808301846116cb565b9695505050505050565b5f80fd5b5f601f19601f8301169050919050565b6118ed826118d4565b810181811067ffffffffffffffff8211171561190c5761190b611188565b5b80604052505050565b5f61191e611511565b905061192a82826118e4565b919050565b5f67ffffffffffffffff82111561194957611948611188565b5b602082029050602081019050919050565b5f80fd5b61196781611290565b8114611971575f80fd5b50565b5f815190506119828161195e565b92915050565b5f61199a6119958461192f565b611915565b905080838252602082019050602084028301858111156119bd576119bc61195a565b5b835b818110156119e657806119d28882611974565b8452602084019350506020810190506119bf565b5050509392505050565b5f82601f830112611a0457611a036118d0565b5b8151611a14848260208601611988565b91505092915050565b5f60208284031215611a3257611a3161151a565b5b5f82015167ffffffffffffffff811115611a4f57611a4e61151e565b5b611a5b848285016119f0565b91505092915050565b60805160a051612c23611a935f395f61075b01525f81816106ec01528181611c060152611d0b0152612c235ff3fe608060405234801561000f575f80fd5b50600436106101e3575f3560e01c8063870bd30b1161010d578063bc063e1a116100a0578063dcf7aef31161006f578063dcf7aef314610559578063dd62ed3e14610575578063e2f45605146105a5578063f2fde38b146105c3576101e3565b8063bc063e1a146104e7578063c024666814610505578063c6af580b14610521578063cb9637281461053d576101e3565b80639a7a23d6116100dc5780639a7a23d61461044f578063a9059cbb1461046b578063afa4f3b21461049b578063b62496f5146104b7576101e3565b8063870bd30b146103d95780638da5cb5b146103f757806395927c251461041557806395d89b4114610431576101e3565b8063313ce567116101855780635d098b38116101545780635d098b381461036557806370a0823114610381578063715018a6146103b157806375f0a874146103bb576101e3565b8063313ce567146102db57806347062402146102f957806349bd5a5e146103175780634fbee19314610335576101e3565b80631694505e116101c15780631694505e1461025157806318160ddd1461026f57806323b872dd1461028d5780632b14ca56146102bd576101e3565b806306fdde03146101e7578063095ea7b314610205578063155ca7c114610235575b5f80fd5b6101ef6105df565b6040516101fc9190611e44565b60405180910390f35b61021f600480360381019061021a9190611f02565b61066f565b60405161022c9190611f5a565b60405180910390f35b61024f600480360381019061024a9190611ffe565b610691565b005b6102596106ea565b60405161026691906120b6565b60405180910390f35b61027761070e565b60405161028491906120de565b60405180910390f35b6102a760048036038101906102a291906120f7565b610717565b6040516102b49190611f5a565b60405180910390f35b6102c5610745565b6040516102d291906120de565b60405180910390f35b6102e361074b565b6040516102f09190612162565b60405180910390f35b610301610753565b60405161030e91906120de565b60405180910390f35b61031f610759565b60405161032c919061218a565b60405180910390f35b61034f600480360381019061034a91906121a3565b61077d565b60405161035c9190611f5a565b60405180910390f35b61037f600480360381019061037a91906121a3565b61079a565b005b61039b600480360381019061039691906121a3565b6108f4565b6040516103a891906120de565b60405180910390f35b6103b961093a565b005b6103c361094d565b6040516103d0919061218a565b60405180910390f35b6103e1610972565b6040516103ee9190611f5a565b60405180910390f35b6103ff610985565b60405161040c919061218a565b60405180910390f35b61042f600480360381019061042a91906121ce565b6109ac565b005b610439610a02565b6040516104469190611e44565b60405180910390f35b610469600480360381019061046491906121f9565b610a92565b005b61048560048036038101906104809190611f02565b610aa8565b6040516104929190611f5a565b60405180910390f35b6104b560048036038101906104b091906121ce565b610aca565b005b6104d160048036038101906104cc91906121a3565b610ba1565b6040516104de9190611f5a565b60405180910390f35b6104ef610bbe565b6040516104fc91906120de565b60405180910390f35b61051f600480360381019061051a91906121f9565b610bc3565b005b61053b60048036038101906105369190612237565b610bd9565b005b610557600480360381019061055291906121a3565b610bfe565b005b610573600480360381019061056e91906121ce565b610e9c565b005b61058f600480360381019061058a9190612262565b610ef2565b60405161059c91906120de565b60405180910390f35b6105ad610f74565b6040516105ba91906120de565b60405180910390f35b6105dd60048036038101906105d891906121a3565b610f7a565b005b6060600480546105ee906122cd565b80601f016020809104026020016040519081016040528092919081815260200182805461061a906122cd565b80156106655780601f1061063c57610100808354040283529160200191610665565b820191905f5260205f20905b81548152906001019060200180831161064857829003601f168201915b5050505050905090565b5f80610679610ffe565b9050610686818585611005565b600191505092915050565b610699611017565b5f5b838390508110156106e4576106d78484838181106106bc576106bb6122fd565b5b90506020020160208101906106d191906121a3565b8361109e565b808060010191505061069b565b50505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f600354905090565b5f80610721610ffe565b905061072e85828561112f565b6107398585856111c1565b60019150509392505050565b60095481565b5f6012905090565b60085481565b7f000000000000000000000000000000000000000000000000000000000000000081565b600a602052805f5260405f205f915054906101000a900460ff1681565b6107a2611017565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610810576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080790612374565b60405180910390fd5b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f83e9b0264f846c733d721fc222bd1b60d47f257c00f2c8ee812d03d29fa87a6460405160405180910390a35050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610942611017565b61094b5f6112b1565b565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660149054906101000a900460ff1681565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6109b4611017565b60058111156109f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ef90612402565b60405180910390fd5b8060098190555050565b606060058054610a11906122cd565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3d906122cd565b8015610a885780601f10610a5f57610100808354040283529160200191610a88565b820191905f5260205f20905b815481529060010190602001808311610a6b57829003601f168201915b5050505050905090565b610a9a611017565b610aa48282611396565b5050565b5f80610ab2610ffe565b9050610abf8185856111c1565b600191505092915050565b610ad2611017565b5f610adb61070e565b9050620f4240600182610aee919061244d565b610af891906124bb565b821015610b3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b319061255b565b60405180910390fd5b6103e8600582610b4a919061244d565b610b5491906124bb565b821115610b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8d906125e9565b60405180910390fd5b816007819055505050565b600b602052805f5260405f205f915054906101000a900460ff1681565b600581565b610bcb611017565b610bd5828261109e565b5050565b610be1611017565b80600660146101000a81548160ff02191690831515021790555050565b610c06611017565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ce7575f3373ffffffffffffffffffffffffffffffffffffffff1647604051610c5e90612634565b5f6040518083038185875af1925050503d805f8114610c98576040519150601f19603f3d011682016040523d82523d5f602084013e610c9d565b606091505b5050905080610ce1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd890612692565b60405180910390fd5b50610e99565b5f8173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610d21919061218a565b602060405180830381865afa158015610d3c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d6091906126c4565b11610da0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9790612739565b60405180910390fd5b5f8173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610dda919061218a565b602060405180830381865afa158015610df5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e1991906126c4565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610e56929190612757565b6020604051808303815f875af1158015610e72573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e969190612792565b50505b50565b610ea4611017565b6005811115610ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edf90612402565b60405180910390fd5b8060088190555050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60075481565b610f82611017565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ff2575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610fe9919061218a565b60405180910390fd5b610ffb816112b1565b50565b5f33905090565b6110128383836001611427565b505050565b61101f610ffe565b73ffffffffffffffffffffffffffffffffffffffff1661103d610985565b73ffffffffffffffffffffffffffffffffffffffff161461109c57611060610ffe565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401611093919061218a565b60405180910390fd5b565b80600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055507f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782826040516111239291906127bd565b60405180910390a15050565b5f61113a8484610ef2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146111bb57818110156111ac578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016111a3939291906127e4565b60405180910390fd5b6111ba84848484035f611427565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611231575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401611228919061218a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112a1575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401611298919061218a565b60405180910390fd5b6112ac8383836115f6565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361133557600660149054906101000a900460ff1615611334576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132b90612863565b60405180910390fd5b5b5f61133e610985565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461137e5761137d815f61109e565b5b61138982600161109e565b6113928261188c565b5050565b80600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055507fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab828260405161141b9291906127bd565b60405180910390a15050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611497575f6040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161148e919061218a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611507575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016114fe919061218a565b60405180910390fd5b8160025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080156115f0578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516115e791906120de565b60405180910390a35b50505050565b5f600660149054906101000a900460ff1680156116205750600660159054906101000a900460ff16155b80156116c45750600a5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806116c25750600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b155b905080156117ce575f600b5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561173d5760646009548461172c919061244d565b61173691906124bb565b90506117aa565b600b5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156117a95760646008548461179c919061244d565b6117a691906124bb565b90505b5b5f8111156117cc5780836117be9190612881565b92506117cb85308361194d565b5b505b8080156118225750600b5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156118385750600754611835306108f4565b10155b1561187b576001600660156101000a81548160ff021916908315150217905550611860611b69565b5f600660156101000a81548160ff0219169083151502179055505b61188684848461194d565b50505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361199d578060035f82825461199191906128b4565b92505081905550611a6d565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611a27578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401611a1e939291906127e4565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ab4578060035f8282540392505081905550611aff565b8060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611b5c91906120de565b60405180910390a3505050565b5f600267ffffffffffffffff811115611b8557611b846128e7565b5b604051908082528060200260200182016040528015611bb35781602001602082028036833780820191505090505b50905030815f81518110611bca57611bc96122fd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c6d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c919190612928565b81600181518110611ca557611ca46122fd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250505f600a600754611cef919061244d565b90505f611cfb306108f4565b905081811115611d09578190505b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166318cbafe5825f8660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401611d8b959493929190612a43565b5f604051808303815f875af1158015611da6573d5f803e3d5ffd5b505050506040513d5f823e3d601f19601f82011682018060405250810190611dce9190612ba6565b50505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611e1682611dd4565b611e208185611dde565b9350611e30818560208601611dee565b611e3981611dfc565b840191505092915050565b5f6020820190508181035f830152611e5c8184611e0c565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611e9e82611e75565b9050919050565b611eae81611e94565b8114611eb8575f80fd5b50565b5f81359050611ec981611ea5565b92915050565b5f819050919050565b611ee181611ecf565b8114611eeb575f80fd5b50565b5f81359050611efc81611ed8565b92915050565b5f8060408385031215611f1857611f17611e6d565b5b5f611f2585828601611ebb565b9250506020611f3685828601611eee565b9150509250929050565b5f8115159050919050565b611f5481611f40565b82525050565b5f602082019050611f6d5f830184611f4b565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f840112611f9457611f93611f73565b5b8235905067ffffffffffffffff811115611fb157611fb0611f77565b5b602083019150836020820283011115611fcd57611fcc611f7b565b5b9250929050565b611fdd81611f40565b8114611fe7575f80fd5b50565b5f81359050611ff881611fd4565b92915050565b5f805f6040848603121561201557612014611e6d565b5b5f84013567ffffffffffffffff81111561203257612031611e71565b5b61203e86828701611f7f565b9350935050602061205186828701611fea565b9150509250925092565b5f819050919050565b5f61207e61207961207484611e75565b61205b565b611e75565b9050919050565b5f61208f82612064565b9050919050565b5f6120a082612085565b9050919050565b6120b081612096565b82525050565b5f6020820190506120c95f8301846120a7565b92915050565b6120d881611ecf565b82525050565b5f6020820190506120f15f8301846120cf565b92915050565b5f805f6060848603121561210e5761210d611e6d565b5b5f61211b86828701611ebb565b935050602061212c86828701611ebb565b925050604061213d86828701611eee565b9150509250925092565b5f60ff82169050919050565b61215c81612147565b82525050565b5f6020820190506121755f830184612153565b92915050565b61218481611e94565b82525050565b5f60208201905061219d5f83018461217b565b92915050565b5f602082840312156121b8576121b7611e6d565b5b5f6121c584828501611ebb565b91505092915050565b5f602082840312156121e3576121e2611e6d565b5b5f6121f084828501611eee565b91505092915050565b5f806040838503121561220f5761220e611e6d565b5b5f61221c85828601611ebb565b925050602061222d85828601611fea565b9150509250929050565b5f6020828403121561224c5761224b611e6d565b5b5f61225984828501611fea565b91505092915050565b5f806040838503121561227857612277611e6d565b5b5f61228585828601611ebb565b925050602061229685828601611ebb565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806122e457607f821691505b6020821081036122f7576122f66122a0565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f574953453a2041646472657373203000000000000000000000000000000000005f82015250565b5f61235e600f83611dde565b91506123698261232a565b602082019050919050565b5f6020820190508181035f83015261238b81612352565b9050919050565b7f574953453a204d757374206b65657020666565732062656c6f77206f722065715f8201527f75616c206d617820666565000000000000000000000000000000000000000000602082015250565b5f6123ec602b83611dde565b91506123f782612392565b604082019050919050565b5f6020820190508181035f830152612419816123e0565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61245782611ecf565b915061246283611ecf565b925082820261247081611ecf565b9150828204841483151761248757612486612420565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6124c582611ecf565b91506124d083611ecf565b9250826124e0576124df61248e565b5b828204905092915050565b7f574953453a205377617020616d6f756e742063616e6e6f74206265206c6f77655f8201527f72207468616e20302e303030312520746f74616c20737570706c792e00000000602082015250565b5f612545603c83611dde565b9150612550826124eb565b604082019050919050565b5f6020820190508181035f83015261257281612539565b9050919050565b7f574953453a205377617020616d6f756e742063616e6e6f7420626520686967685f8201527f6572207468616e20302e352520746f74616c20737570706c792e000000000000602082015250565b5f6125d3603a83611dde565b91506125de82612579565b604082019050919050565b5f6020820190508181035f830152612600816125c7565b9050919050565b5f81905092915050565b50565b5f61261f5f83612607565b915061262a82612611565b5f82019050919050565b5f61263e82612614565b9150819050919050565b7f574953453a205472616e73666572206661696c656400000000000000000000005f82015250565b5f61267c601583611dde565b915061268782612648565b602082019050919050565b5f6020820190508181035f8301526126a981612670565b9050919050565b5f815190506126be81611ed8565b92915050565b5f602082840312156126d9576126d8611e6d565b5b5f6126e6848285016126b0565b91505092915050565b7f574953453a204e6f20746f6b656e7300000000000000000000000000000000005f82015250565b5f612723600f83611dde565b915061272e826126ef565b602082019050919050565b5f6020820190508181035f83015261275081612717565b9050919050565b5f60408201905061276a5f83018561217b565b61277760208301846120cf565b9392505050565b5f8151905061278c81611fd4565b92915050565b5f602082840312156127a7576127a6611e6d565b5b5f6127b48482850161277e565b91505092915050565b5f6040820190506127d05f83018561217b565b6127dd6020830184611f4b565b9392505050565b5f6060820190506127f75f83018661217b565b61280460208301856120cf565b61281160408301846120cf565b949350505050565b7f574953453a2054617820697320656e61626c65640000000000000000000000005f82015250565b5f61284d601483611dde565b915061285882612819565b602082019050919050565b5f6020820190508181035f83015261287a81612841565b9050919050565b5f61288b82611ecf565b915061289683611ecf565b92508282039050818111156128ae576128ad612420565b5b92915050565b5f6128be82611ecf565b91506128c983611ecf565b92508282019050808211156128e1576128e0612420565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f8151905061292281611ea5565b92915050565b5f6020828403121561293d5761293c611e6d565b5b5f61294a84828501612914565b91505092915050565b5f819050919050565b5f61297661297161296c84612953565b61205b565b611ecf565b9050919050565b6129868161295c565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6129be81611e94565b82525050565b5f6129cf83836129b5565b60208301905092915050565b5f602082019050919050565b5f6129f18261298c565b6129fb8185612996565b9350612a06836129a6565b805f5b83811015612a36578151612a1d88826129c4565b9750612a28836129db565b925050600181019050612a09565b5085935050505092915050565b5f60a082019050612a565f8301886120cf565b612a63602083018761297d565b8181036040830152612a7581866129e7565b9050612a84606083018561217b565b612a9160808301846120cf565b9695505050505050565b612aa482611dfc565b810181811067ffffffffffffffff82111715612ac357612ac26128e7565b5b80604052505050565b5f612ad5611e64565b9050612ae18282612a9b565b919050565b5f67ffffffffffffffff821115612b0057612aff6128e7565b5b602082029050602081019050919050565b5f612b23612b1e84612ae6565b612acc565b90508083825260208201905060208402830185811115612b4657612b45611f7b565b5b835b81811015612b6f5780612b5b88826126b0565b845260208401935050602081019050612b48565b5050509392505050565b5f82601f830112612b8d57612b8c611f73565b5b8151612b9d848260208601612b11565b91505092915050565b5f60208284031215612bbb57612bba611e6d565b5b5f82015167ffffffffffffffff811115612bd857612bd7611e71565b5b612be484828501612b79565b9150509291505056fea26469706673582212209784af28177bc59b941214b54982a137ede3a60d7ebc1c0dc2a8c03a9122819c64736f6c63430008190033

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106101e3575f3560e01c8063870bd30b1161010d578063bc063e1a116100a0578063dcf7aef31161006f578063dcf7aef314610559578063dd62ed3e14610575578063e2f45605146105a5578063f2fde38b146105c3576101e3565b8063bc063e1a146104e7578063c024666814610505578063c6af580b14610521578063cb9637281461053d576101e3565b80639a7a23d6116100dc5780639a7a23d61461044f578063a9059cbb1461046b578063afa4f3b21461049b578063b62496f5146104b7576101e3565b8063870bd30b146103d95780638da5cb5b146103f757806395927c251461041557806395d89b4114610431576101e3565b8063313ce567116101855780635d098b38116101545780635d098b381461036557806370a0823114610381578063715018a6146103b157806375f0a874146103bb576101e3565b8063313ce567146102db57806347062402146102f957806349bd5a5e146103175780634fbee19314610335576101e3565b80631694505e116101c15780631694505e1461025157806318160ddd1461026f57806323b872dd1461028d5780632b14ca56146102bd576101e3565b806306fdde03146101e7578063095ea7b314610205578063155ca7c114610235575b5f80fd5b6101ef6105df565b6040516101fc9190611e44565b60405180910390f35b61021f600480360381019061021a9190611f02565b61066f565b60405161022c9190611f5a565b60405180910390f35b61024f600480360381019061024a9190611ffe565b610691565b005b6102596106ea565b60405161026691906120b6565b60405180910390f35b61027761070e565b60405161028491906120de565b60405180910390f35b6102a760048036038101906102a291906120f7565b610717565b6040516102b49190611f5a565b60405180910390f35b6102c5610745565b6040516102d291906120de565b60405180910390f35b6102e361074b565b6040516102f09190612162565b60405180910390f35b610301610753565b60405161030e91906120de565b60405180910390f35b61031f610759565b60405161032c919061218a565b60405180910390f35b61034f600480360381019061034a91906121a3565b61077d565b60405161035c9190611f5a565b60405180910390f35b61037f600480360381019061037a91906121a3565b61079a565b005b61039b600480360381019061039691906121a3565b6108f4565b6040516103a891906120de565b60405180910390f35b6103b961093a565b005b6103c361094d565b6040516103d0919061218a565b60405180910390f35b6103e1610972565b6040516103ee9190611f5a565b60405180910390f35b6103ff610985565b60405161040c919061218a565b60405180910390f35b61042f600480360381019061042a91906121ce565b6109ac565b005b610439610a02565b6040516104469190611e44565b60405180910390f35b610469600480360381019061046491906121f9565b610a92565b005b61048560048036038101906104809190611f02565b610aa8565b6040516104929190611f5a565b60405180910390f35b6104b560048036038101906104b091906121ce565b610aca565b005b6104d160048036038101906104cc91906121a3565b610ba1565b6040516104de9190611f5a565b60405180910390f35b6104ef610bbe565b6040516104fc91906120de565b60405180910390f35b61051f600480360381019061051a91906121f9565b610bc3565b005b61053b60048036038101906105369190612237565b610bd9565b005b610557600480360381019061055291906121a3565b610bfe565b005b610573600480360381019061056e91906121ce565b610e9c565b005b61058f600480360381019061058a9190612262565b610ef2565b60405161059c91906120de565b60405180910390f35b6105ad610f74565b6040516105ba91906120de565b60405180910390f35b6105dd60048036038101906105d891906121a3565b610f7a565b005b6060600480546105ee906122cd565b80601f016020809104026020016040519081016040528092919081815260200182805461061a906122cd565b80156106655780601f1061063c57610100808354040283529160200191610665565b820191905f5260205f20905b81548152906001019060200180831161064857829003601f168201915b5050505050905090565b5f80610679610ffe565b9050610686818585611005565b600191505092915050565b610699611017565b5f5b838390508110156106e4576106d78484838181106106bc576106bb6122fd565b5b90506020020160208101906106d191906121a3565b8361109e565b808060010191505061069b565b50505050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f600354905090565b5f80610721610ffe565b905061072e85828561112f565b6107398585856111c1565b60019150509392505050565b60095481565b5f6012905090565b60085481565b7f0000000000000000000000009a4fd4210358abd2f18e104fa2475cd73dedb02881565b600a602052805f5260405f205f915054906101000a900460ff1681565b6107a2611017565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610810576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080790612374565b60405180910390fd5b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f83e9b0264f846c733d721fc222bd1b60d47f257c00f2c8ee812d03d29fa87a6460405160405180910390a35050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610942611017565b61094b5f6112b1565b565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660149054906101000a900460ff1681565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6109b4611017565b60058111156109f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ef90612402565b60405180910390fd5b8060098190555050565b606060058054610a11906122cd565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3d906122cd565b8015610a885780601f10610a5f57610100808354040283529160200191610a88565b820191905f5260205f20905b815481529060010190602001808311610a6b57829003601f168201915b5050505050905090565b610a9a611017565b610aa48282611396565b5050565b5f80610ab2610ffe565b9050610abf8185856111c1565b600191505092915050565b610ad2611017565b5f610adb61070e565b9050620f4240600182610aee919061244d565b610af891906124bb565b821015610b3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b319061255b565b60405180910390fd5b6103e8600582610b4a919061244d565b610b5491906124bb565b821115610b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8d906125e9565b60405180910390fd5b816007819055505050565b600b602052805f5260405f205f915054906101000a900460ff1681565b600581565b610bcb611017565b610bd5828261109e565b5050565b610be1611017565b80600660146101000a81548160ff02191690831515021790555050565b610c06611017565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ce7575f3373ffffffffffffffffffffffffffffffffffffffff1647604051610c5e90612634565b5f6040518083038185875af1925050503d805f8114610c98576040519150601f19603f3d011682016040523d82523d5f602084013e610c9d565b606091505b5050905080610ce1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd890612692565b60405180910390fd5b50610e99565b5f8173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610d21919061218a565b602060405180830381865afa158015610d3c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d6091906126c4565b11610da0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9790612739565b60405180910390fd5b5f8173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610dda919061218a565b602060405180830381865afa158015610df5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e1991906126c4565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610e56929190612757565b6020604051808303815f875af1158015610e72573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e969190612792565b50505b50565b610ea4611017565b6005811115610ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edf90612402565b60405180910390fd5b8060088190555050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60075481565b610f82611017565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ff2575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610fe9919061218a565b60405180910390fd5b610ffb816112b1565b50565b5f33905090565b6110128383836001611427565b505050565b61101f610ffe565b73ffffffffffffffffffffffffffffffffffffffff1661103d610985565b73ffffffffffffffffffffffffffffffffffffffff161461109c57611060610ffe565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401611093919061218a565b60405180910390fd5b565b80600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055507f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782826040516111239291906127bd565b60405180910390a15050565b5f61113a8484610ef2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146111bb57818110156111ac578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016111a3939291906127e4565b60405180910390fd5b6111ba84848484035f611427565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611231575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401611228919061218a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112a1575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401611298919061218a565b60405180910390fd5b6112ac8383836115f6565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361133557600660149054906101000a900460ff1615611334576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132b90612863565b60405180910390fd5b5b5f61133e610985565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461137e5761137d815f61109e565b5b61138982600161109e565b6113928261188c565b5050565b80600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055507fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab828260405161141b9291906127bd565b60405180910390a15050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611497575f6040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161148e919061218a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611507575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016114fe919061218a565b60405180910390fd5b8160025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080156115f0578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516115e791906120de565b60405180910390a35b50505050565b5f600660149054906101000a900460ff1680156116205750600660159054906101000a900460ff16155b80156116c45750600a5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806116c25750600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b155b905080156117ce575f600b5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561173d5760646009548461172c919061244d565b61173691906124bb565b90506117aa565b600b5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156117a95760646008548461179c919061244d565b6117a691906124bb565b90505b5b5f8111156117cc5780836117be9190612881565b92506117cb85308361194d565b5b505b8080156118225750600b5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156118385750600754611835306108f4565b10155b1561187b576001600660156101000a81548160ff021916908315150217905550611860611b69565b5f600660156101000a81548160ff0219169083151502179055505b61188684848461194d565b50505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361199d578060035f82825461199191906128b4565b92505081905550611a6d565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611a27578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401611a1e939291906127e4565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ab4578060035f8282540392505081905550611aff565b8060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611b5c91906120de565b60405180910390a3505050565b5f600267ffffffffffffffff811115611b8557611b846128e7565b5b604051908082528060200260200182016040528015611bb35781602001602082028036833780820191505090505b50905030815f81518110611bca57611bc96122fd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c6d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c919190612928565b81600181518110611ca557611ca46122fd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250505f600a600754611cef919061244d565b90505f611cfb306108f4565b905081811115611d09578190505b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff166318cbafe5825f8660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401611d8b959493929190612a43565b5f604051808303815f875af1158015611da6573d5f803e3d5ffd5b505050506040513d5f823e3d601f19601f82011682018060405250810190611dce9190612ba6565b50505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611e1682611dd4565b611e208185611dde565b9350611e30818560208601611dee565b611e3981611dfc565b840191505092915050565b5f6020820190508181035f830152611e5c8184611e0c565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611e9e82611e75565b9050919050565b611eae81611e94565b8114611eb8575f80fd5b50565b5f81359050611ec981611ea5565b92915050565b5f819050919050565b611ee181611ecf565b8114611eeb575f80fd5b50565b5f81359050611efc81611ed8565b92915050565b5f8060408385031215611f1857611f17611e6d565b5b5f611f2585828601611ebb565b9250506020611f3685828601611eee565b9150509250929050565b5f8115159050919050565b611f5481611f40565b82525050565b5f602082019050611f6d5f830184611f4b565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f840112611f9457611f93611f73565b5b8235905067ffffffffffffffff811115611fb157611fb0611f77565b5b602083019150836020820283011115611fcd57611fcc611f7b565b5b9250929050565b611fdd81611f40565b8114611fe7575f80fd5b50565b5f81359050611ff881611fd4565b92915050565b5f805f6040848603121561201557612014611e6d565b5b5f84013567ffffffffffffffff81111561203257612031611e71565b5b61203e86828701611f7f565b9350935050602061205186828701611fea565b9150509250925092565b5f819050919050565b5f61207e61207961207484611e75565b61205b565b611e75565b9050919050565b5f61208f82612064565b9050919050565b5f6120a082612085565b9050919050565b6120b081612096565b82525050565b5f6020820190506120c95f8301846120a7565b92915050565b6120d881611ecf565b82525050565b5f6020820190506120f15f8301846120cf565b92915050565b5f805f6060848603121561210e5761210d611e6d565b5b5f61211b86828701611ebb565b935050602061212c86828701611ebb565b925050604061213d86828701611eee565b9150509250925092565b5f60ff82169050919050565b61215c81612147565b82525050565b5f6020820190506121755f830184612153565b92915050565b61218481611e94565b82525050565b5f60208201905061219d5f83018461217b565b92915050565b5f602082840312156121b8576121b7611e6d565b5b5f6121c584828501611ebb565b91505092915050565b5f602082840312156121e3576121e2611e6d565b5b5f6121f084828501611eee565b91505092915050565b5f806040838503121561220f5761220e611e6d565b5b5f61221c85828601611ebb565b925050602061222d85828601611fea565b9150509250929050565b5f6020828403121561224c5761224b611e6d565b5b5f61225984828501611fea565b91505092915050565b5f806040838503121561227857612277611e6d565b5b5f61228585828601611ebb565b925050602061229685828601611ebb565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806122e457607f821691505b6020821081036122f7576122f66122a0565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f574953453a2041646472657373203000000000000000000000000000000000005f82015250565b5f61235e600f83611dde565b91506123698261232a565b602082019050919050565b5f6020820190508181035f83015261238b81612352565b9050919050565b7f574953453a204d757374206b65657020666565732062656c6f77206f722065715f8201527f75616c206d617820666565000000000000000000000000000000000000000000602082015250565b5f6123ec602b83611dde565b91506123f782612392565b604082019050919050565b5f6020820190508181035f830152612419816123e0565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61245782611ecf565b915061246283611ecf565b925082820261247081611ecf565b9150828204841483151761248757612486612420565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6124c582611ecf565b91506124d083611ecf565b9250826124e0576124df61248e565b5b828204905092915050565b7f574953453a205377617020616d6f756e742063616e6e6f74206265206c6f77655f8201527f72207468616e20302e303030312520746f74616c20737570706c792e00000000602082015250565b5f612545603c83611dde565b9150612550826124eb565b604082019050919050565b5f6020820190508181035f83015261257281612539565b9050919050565b7f574953453a205377617020616d6f756e742063616e6e6f7420626520686967685f8201527f6572207468616e20302e352520746f74616c20737570706c792e000000000000602082015250565b5f6125d3603a83611dde565b91506125de82612579565b604082019050919050565b5f6020820190508181035f830152612600816125c7565b9050919050565b5f81905092915050565b50565b5f61261f5f83612607565b915061262a82612611565b5f82019050919050565b5f61263e82612614565b9150819050919050565b7f574953453a205472616e73666572206661696c656400000000000000000000005f82015250565b5f61267c601583611dde565b915061268782612648565b602082019050919050565b5f6020820190508181035f8301526126a981612670565b9050919050565b5f815190506126be81611ed8565b92915050565b5f602082840312156126d9576126d8611e6d565b5b5f6126e6848285016126b0565b91505092915050565b7f574953453a204e6f20746f6b656e7300000000000000000000000000000000005f82015250565b5f612723600f83611dde565b915061272e826126ef565b602082019050919050565b5f6020820190508181035f83015261275081612717565b9050919050565b5f60408201905061276a5f83018561217b565b61277760208301846120cf565b9392505050565b5f8151905061278c81611fd4565b92915050565b5f602082840312156127a7576127a6611e6d565b5b5f6127b48482850161277e565b91505092915050565b5f6040820190506127d05f83018561217b565b6127dd6020830184611f4b565b9392505050565b5f6060820190506127f75f83018661217b565b61280460208301856120cf565b61281160408301846120cf565b949350505050565b7f574953453a2054617820697320656e61626c65640000000000000000000000005f82015250565b5f61284d601483611dde565b915061285882612819565b602082019050919050565b5f6020820190508181035f83015261287a81612841565b9050919050565b5f61288b82611ecf565b915061289683611ecf565b92508282039050818111156128ae576128ad612420565b5b92915050565b5f6128be82611ecf565b91506128c983611ecf565b92508282019050808211156128e1576128e0612420565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f8151905061292281611ea5565b92915050565b5f6020828403121561293d5761293c611e6d565b5b5f61294a84828501612914565b91505092915050565b5f819050919050565b5f61297661297161296c84612953565b61205b565b611ecf565b9050919050565b6129868161295c565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6129be81611e94565b82525050565b5f6129cf83836129b5565b60208301905092915050565b5f602082019050919050565b5f6129f18261298c565b6129fb8185612996565b9350612a06836129a6565b805f5b83811015612a36578151612a1d88826129c4565b9750612a28836129db565b925050600181019050612a09565b5085935050505092915050565b5f60a082019050612a565f8301886120cf565b612a63602083018761297d565b8181036040830152612a7581866129e7565b9050612a84606083018561217b565b612a9160808301846120cf565b9695505050505050565b612aa482611dfc565b810181811067ffffffffffffffff82111715612ac357612ac26128e7565b5b80604052505050565b5f612ad5611e64565b9050612ae18282612a9b565b919050565b5f67ffffffffffffffff821115612b0057612aff6128e7565b5b602082029050602081019050919050565b5f612b23612b1e84612ae6565b612acc565b90508083825260208201905060208402830185811115612b4657612b45611f7b565b5b835b81811015612b6f5780612b5b88826126b0565b845260208401935050602081019050612b48565b5050509392505050565b5f82601f830112612b8d57612b8c611f73565b5b8151612b9d848260208601612b11565b91505092915050565b5f60208284031215612bbb57612bba611e6d565b5b5f82015167ffffffffffffffff811115612bd857612bd7611e71565b5b612be484828501612b79565b9150509291505056fea26469706673582212209784af28177bc59b941214b54982a137ede3a60d7ebc1c0dc2a8c03a9122819c64736f6c63430008190033

Deployed Bytecode Sourcemap

26673:6591:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12959:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15293:222;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30441:239;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26756:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14061:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16093:283;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27036:22;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13912:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27008:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26812:38;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27067:50;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28801:301;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14223:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24940:103;;;:::i;:::-;;26857:30;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26896:29;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24265:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29910:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13169:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30883:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14546:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29209:472;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27124:57;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26712:35;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30309:124;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29110:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32694:567;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29689:213;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14791:183;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26968:33;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25198:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12959:91;13004:13;13037:5;13030:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12959:91;:::o;15293:222::-;15393:4;15415:13;15431:12;:10;:12::i;:::-;15415:28;;15454:31;15463:5;15470:7;15479:5;15454:8;:31::i;:::-;15503:4;15496:11;;;15293:222;;;;:::o;30441:239::-;24151:13;:11;:13::i;:::-;30569:9:::1;30564:109;30588:8;;:15;;30584:1;:19;30564:109;;;30625:36;30642:8;;30651:1;30642:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;30655:5;30625:16;:36::i;:::-;30605:3;;;;;;;30564:109;;;;30441:239:::0;;;:::o;26756:49::-;;;:::o;14061:99::-;14113:7;14140:12;;14133:19;;14061:99;:::o;16093:283::-;16214:4;16231:15;16249:12;:10;:12::i;:::-;16231:30;;16272:37;16288:4;16294:7;16303:5;16272:15;:37::i;:::-;16320:26;16330:4;16336:2;16340:5;16320:9;:26::i;:::-;16364:4;16357:11;;;16093:283;;;;;:::o;27036:22::-;;;;:::o;13912:84::-;13961:5;13986:2;13979:9;;13912:84;:::o;27008:21::-;;;;:::o;26812:38::-;;;:::o;27067:50::-;;;;;;;;;;;;;;;;;;;;;;:::o;28801:301::-;24151:13;:11;:13::i;:::-;28919:1:::1;28891:30;;:16;:30;;::::0;28883:58:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;28952:17;28972:15;;;;;;;;;;;28952:35;;29016:16;28998:15;;:34;;;;;;;;;;;;;;;;;;29084:9;29048:46;;29067:15;;;;;;;;;;;29048:46;;;;;;;;;;;;28872:230;28801:301:::0;:::o;14223:118::-;14288:7;14315:9;:18;14325:7;14315:18;;;;;;;;;;;;;;;;14308:25;;14223:118;;;:::o;24940:103::-;24151:13;:11;:13::i;:::-;25005:30:::1;25032:1;25005:18;:30::i;:::-;24940:103::o:0;26857:30::-;;;;;;;;;;;;;:::o;26896:29::-;;;;;;;;;;;;;:::o;24265:87::-;24311:7;24338:6;;;;;;;;;;;24331:13;;24265:87;:::o;29910:218::-;24151:13;:11;:13::i;:::-;26746:1:::1;30001:8;:19;;29979:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;30112:8;30102:7;:18;;;;29910:218:::0;:::o;13169:95::-;13216:13;13249:7;13242:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13169:95;:::o;30883:165::-;24151:13;:11;:13::i;:::-;30999:41:::1;31028:4;31034:5;30999:28;:41::i;:::-;30883:165:::0;;:::o;14546:182::-;14615:4;14632:13;14648:12;:10;:12::i;:::-;14632:28;;14671:27;14681:5;14688:2;14692:5;14671:9;:27::i;:::-;14716:4;14709:11;;;14546:182;;;;:::o;29209:472::-;24151:13;:11;:13::i;:::-;29286:20:::1;29309:13;:11;:13::i;:::-;29286:36;;29386:7;29381:1;29366:12;:16;;;;:::i;:::-;29365:28;;;;:::i;:::-;29355:6;:38;;29333:148;;;;;;;;;;;;:::i;:::-;;;;;;;;;29545:4;29540:1;29525:12;:16;;;;:::i;:::-;29524:25;;;;:::i;:::-;29514:6;:35;;29492:143;;;;;;;;;;;;:::i;:::-;;;;;;;;;29667:6;29646:18;:27;;;;29275:406;29209:472:::0;:::o;27124:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;26712:35::-;26746:1;26712:35;:::o;30309:124::-;24151:13;:11;:13::i;:::-;30393:32:::1;30410:7;30419:5;30393:16;:32::i;:::-;30309:124:::0;;:::o;29110:91::-;24151:13;:11;:13::i;:::-;29188:5:::1;29175:10;;:18;;;;;;;;;;;;;;;;;;29110:91:::0;:::o;32694:567::-;24151:13;:11;:13::i;:::-;32785:1:::1;32770:17;;:3;:17;;::::0;32766:488:::1;;32805:12;32831:10;32823:24;;32873:21;32823:90;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32804:109;;;32936:7;32928:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;32789:192;32766:488;;;33067:1;33035:3;33028:21;;;33058:4;33028:36;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:40;33002:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;33134:14;33158:3;33151:21;;;33181:4;33151:36;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33134:53;;33209:3;33202:20;;;33223:10;33235:6;33202:40;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32987:267;32766:488;32694:567:::0;:::o;29689:213::-;24151:13;:11;:13::i;:::-;26746:1:::1;29778:7;:18;;29756:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;29887:7;29878:6;:16;;;;29689:213:::0;:::o;14791:183::-;14907:7;14939:11;:18;14951:5;14939:18;;;;;;;;;;;;;;;:27;14958:7;14939:27;;;;;;;;;;;;;;;;14932:34;;14791:183;;;;:::o;26968:33::-;;;;:::o;25198:220::-;24151:13;:11;:13::i;:::-;25303:1:::1;25283:22;;:8;:22;;::::0;25279:93:::1;;25357:1;25329:31;;;;;;;;;;;:::i;:::-;;;;;;;;25279:93;25382:28;25401:8;25382:18;:28::i;:::-;25198:220:::0;:::o;4174:98::-;4227:7;4254:10;4247:17;;4174:98;:::o;20254:164::-;20373:37;20382:5;20389:7;20398:5;20405:4;20373:8;:37::i;:::-;20254:164;;;:::o;24430:166::-;24501:12;:10;:12::i;:::-;24490:23;;:7;:5;:7::i;:::-;:23;;;24486:103;;24564:12;:10;:12::i;:::-;24537:40;;;;;;;;;;;:::i;:::-;;;;;;;;24486:103;24430:166::o;30136:165::-;30241:5;30211:18;:27;30230:7;30211:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;30262:31;30278:7;30287:5;30262:31;;;;;;;:::i;:::-;;;;;;;;30136:165;;:::o;22047:603::-;22181:24;22208:25;22218:5;22225:7;22208:9;:25::i;:::-;22181:52;;22268:17;22248:16;:37;22244:399;;22325:5;22306:16;:24;22302:214;;;22407:7;22437:16;22476:5;22358:142;;;;;;;;;;;;;:::i;:::-;;;;;;;;22302:214;22559:57;22568:5;22575:7;22603:5;22584:16;:24;22610:5;22559:8;:57::i;:::-;22244:399;22170:480;22047:603;;;:::o;16761:342::-;16895:1;16879:18;;:4;:18;;;16875:88;;16948:1;16921:30;;;;;;;;;;;:::i;:::-;;;;;;;;16875:88;16991:1;16977:16;;:2;:16;;;16973:88;;17046:1;17017:32;;;;;;;;;;;:::i;:::-;;;;;;;;16973:88;17071:24;17079:4;17085:2;17089:5;17071:7;:24::i;:::-;16761:342;;;:::o;28400:393::-;28499:1;28479:22;;:8;:22;;;28475:85;;28525:10;;;;;;;;;;;28524:11;28516:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;28475:85;28573:16;28592:7;:5;:7::i;:::-;28573:26;;28634:1;28614:22;;:8;:22;;;28610:88;;28653:33;28670:8;28680:5;28653:16;:33::i;:::-;28610:88;28708:32;28725:8;28735:4;28708:16;:32::i;:::-;28751:34;28776:8;28751:24;:34::i;:::-;28464:329;28400:393;:::o;30688:187::-;30806:5;30772:25;:31;30798:4;30772:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;30827:40;30855:4;30861:5;30827:40;;;;;;;:::i;:::-;;;;;;;;30688:187;;:::o;21269:486::-;21442:1;21425:19;;:5;:19;;;21421:91;;21497:1;21468:32;;;;;;;;;;;:::i;:::-;;;;;;;;21421:91;21545:1;21526:21;;:7;:21;;;21522:92;;21599:1;21571:31;;;;;;;;;;;:::i;:::-;;;;;;;;21522:92;21654:5;21624:11;:18;21636:5;21624:18;;;;;;;;;;;;;;;:27;21643:7;21624:27;;;;;;;;;;;;;;;:35;;;;21674:9;21670:78;;;21721:7;21705:31;;21714:5;21705:31;;;21730:5;21705:31;;;;;;:::i;:::-;;;;;;;;21670:78;21269:486;;;;:::o;31056:1062::-;31178:12;31193:10;;;;;;;;;;;:42;;;;;31221:14;;;;;;;;;;;31220:15;31193:42;:112;;;;;31254:18;:24;31273:4;31254:24;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;31282:18;:22;31301:2;31282:22;;;;;;;;;;;;;;;;;;;;;;;;;31254:50;31252:53;31193:112;31178:127;;31322:7;31318:477;;;31346:12;31405:25;:29;31431:2;31405:29;;;;;;;;;;;;;;;;;;;;;;;;;31401:245;;;31483:3;31472:7;;31463:6;:16;;;;:::i;:::-;31462:24;;;;:::i;:::-;31455:31;;31401:245;;;31548:25;:31;31574:4;31548:31;;;;;;;;;;;;;;;;;;;;;;;;;31544:102;;;31627:3;31617:6;;31608;:15;;;;:::i;:::-;31607:23;;;;:::i;:::-;31600:30;;31544:102;31401:245;31673:1;31666:4;:8;31662:122;;;31705:4;31695:14;;;;;:::i;:::-;;;31728:40;31742:4;31756;31763;31728:13;:40::i;:::-;31662:122;31331:464;31318:477;31825:7;:56;;;;;31850:25;:31;31876:4;31850:31;;;;;;;;;;;;;;;;;;;;;;;;;31849:32;31825:56;:119;;;;;31926:18;;31898:24;31916:4;31898:9;:24::i;:::-;:46;;31825:119;31807:260;;;31988:4;31971:14;;:21;;;;;;;;;;;;;;;;;;32007:11;:9;:11::i;:::-;32050:5;32033:14;;:22;;;;;;;;;;;;;;;;;;31807:260;32079:31;32093:4;32099:2;32103:6;32079:13;:31::i;:::-;31167:951;31056:1062;;;:::o;25578:191::-;25652:16;25671:6;;;;;;;;;;;25652:25;;25697:8;25688:6;;:17;;;;;;;;;;;;;;;;;;25752:8;25721:40;;25742:8;25721:40;;;;;;;;;;;;25641:128;25578:191;:::o;17427:1169::-;17567:1;17551:18;;:4;:18;;;17547:552;;17705:5;17689:12;;:21;;;;;;;:::i;:::-;;;;;;;;17547:552;;;17743:19;17765:9;:15;17775:4;17765:15;;;;;;;;;;;;;;;;17743:37;;17813:5;17799:11;:19;17795:117;;;17871:4;17877:11;17890:5;17846:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;17795:117;18067:5;18053:11;:19;18035:9;:15;18045:4;18035:15;;;;;;;;;;;;;;;:37;;;;17728:371;17547:552;18129:1;18115:16;;:2;:16;;;18111:435;;18297:5;18281:12;;:21;;;;;;;;;;;18111:435;;;18514:5;18497:9;:13;18507:2;18497:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;18111:435;18578:2;18563:25;;18572:4;18563:25;;;18582:5;18563:25;;;;;;:::i;:::-;;;;;;;;17427:1169;;;:::o;32126:560::-;32167:21;32205:1;32191:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32167:40;;32236:4;32218;32223:1;32218:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;32262:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32252:4;32257:1;32252:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;32297:21;32342:2;32321:18;;:23;;;;:::i;:::-;32297:47;;32355:18;32376:24;32394:4;32376:9;:24::i;:::-;32355:45;;32430:13;32417:10;:26;32413:85;;;32473:13;32460:26;;32413:85;32510:15;:37;;;32562:10;32587:1;32603:4;32622:15;;;;;;;;;;;32652;32510:168;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32156:530;;;32126:560::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:313::-;1036:4;1074:2;1063:9;1059:18;1051:26;;1123:9;1117:4;1113:20;1109:1;1098:9;1094:17;1087:47;1151:78;1224:4;1215:6;1151:78;:::i;:::-;1143:86;;923:313;;;;:::o;1242:75::-;1275:6;1308:2;1302:9;1292:19;;1242:75;:::o;1323:117::-;1432:1;1429;1422:12;1446:117;1555:1;1552;1545:12;1569:126;1606:7;1646:42;1639:5;1635:54;1624:65;;1569:126;;;:::o;1701:96::-;1738:7;1767:24;1785:5;1767:24;:::i;:::-;1756:35;;1701:96;;;:::o;1803:122::-;1876:24;1894:5;1876:24;:::i;:::-;1869:5;1866:35;1856:63;;1915:1;1912;1905:12;1856:63;1803:122;:::o;1931:139::-;1977:5;2015:6;2002:20;1993:29;;2031:33;2058:5;2031:33;:::i;:::-;1931:139;;;;:::o;2076:77::-;2113:7;2142:5;2131:16;;2076:77;;;:::o;2159:122::-;2232:24;2250:5;2232:24;:::i;:::-;2225:5;2222:35;2212:63;;2271:1;2268;2261:12;2212:63;2159:122;:::o;2287:139::-;2333:5;2371:6;2358:20;2349:29;;2387:33;2414:5;2387:33;:::i;:::-;2287:139;;;;:::o;2432:474::-;2500:6;2508;2557:2;2545:9;2536:7;2532:23;2528:32;2525:119;;;2563:79;;:::i;:::-;2525:119;2683:1;2708:53;2753:7;2744:6;2733:9;2729:22;2708:53;:::i;:::-;2698:63;;2654:117;2810:2;2836:53;2881:7;2872:6;2861:9;2857:22;2836:53;:::i;:::-;2826:63;;2781:118;2432:474;;;;;:::o;2912:90::-;2946:7;2989:5;2982:13;2975:21;2964:32;;2912:90;;;:::o;3008:109::-;3089:21;3104:5;3089:21;:::i;:::-;3084:3;3077:34;3008:109;;:::o;3123:210::-;3210:4;3248:2;3237:9;3233:18;3225:26;;3261:65;3323:1;3312:9;3308:17;3299:6;3261:65;:::i;:::-;3123:210;;;;:::o;3339:117::-;3448:1;3445;3438:12;3462:117;3571:1;3568;3561:12;3585:117;3694:1;3691;3684:12;3725:568;3798:8;3808:6;3858:3;3851:4;3843:6;3839:17;3835:27;3825:122;;3866:79;;:::i;:::-;3825:122;3979:6;3966:20;3956:30;;4009:18;4001:6;3998:30;3995:117;;;4031:79;;:::i;:::-;3995:117;4145:4;4137:6;4133:17;4121:29;;4199:3;4191:4;4183:6;4179:17;4169:8;4165:32;4162:41;4159:128;;;4206:79;;:::i;:::-;4159:128;3725:568;;;;;:::o;4299:116::-;4369:21;4384:5;4369:21;:::i;:::-;4362:5;4359:32;4349:60;;4405:1;4402;4395:12;4349:60;4299:116;:::o;4421:133::-;4464:5;4502:6;4489:20;4480:29;;4518:30;4542:5;4518:30;:::i;:::-;4421:133;;;;:::o;4560:698::-;4652:6;4660;4668;4717:2;4705:9;4696:7;4692:23;4688:32;4685:119;;;4723:79;;:::i;:::-;4685:119;4871:1;4860:9;4856:17;4843:31;4901:18;4893:6;4890:30;4887:117;;;4923:79;;:::i;:::-;4887:117;5036:80;5108:7;5099:6;5088:9;5084:22;5036:80;:::i;:::-;5018:98;;;;4814:312;5165:2;5191:50;5233:7;5224:6;5213:9;5209:22;5191:50;:::i;:::-;5181:60;;5136:115;4560:698;;;;;:::o;5264:60::-;5292:3;5313:5;5306:12;;5264:60;;;:::o;5330:142::-;5380:9;5413:53;5431:34;5440:24;5458:5;5440:24;:::i;:::-;5431:34;:::i;:::-;5413:53;:::i;:::-;5400:66;;5330:142;;;:::o;5478:126::-;5528:9;5561:37;5592:5;5561:37;:::i;:::-;5548:50;;5478:126;;;:::o;5610:150::-;5684:9;5717:37;5748:5;5717:37;:::i;:::-;5704:50;;5610:150;;;:::o;5766:179::-;5877:61;5932:5;5877:61;:::i;:::-;5872:3;5865:74;5766:179;;:::o;5951:270::-;6068:4;6106:2;6095:9;6091:18;6083:26;;6119:95;6211:1;6200:9;6196:17;6187:6;6119:95;:::i;:::-;5951:270;;;;:::o;6227:118::-;6314:24;6332:5;6314:24;:::i;:::-;6309:3;6302:37;6227:118;;:::o;6351:222::-;6444:4;6482:2;6471:9;6467:18;6459:26;;6495:71;6563:1;6552:9;6548:17;6539:6;6495:71;:::i;:::-;6351:222;;;;:::o;6579:619::-;6656:6;6664;6672;6721:2;6709:9;6700:7;6696:23;6692:32;6689:119;;;6727:79;;:::i;:::-;6689:119;6847:1;6872:53;6917:7;6908:6;6897:9;6893:22;6872:53;:::i;:::-;6862:63;;6818:117;6974:2;7000:53;7045:7;7036:6;7025:9;7021:22;7000:53;:::i;:::-;6990:63;;6945:118;7102:2;7128:53;7173:7;7164:6;7153:9;7149:22;7128:53;:::i;:::-;7118:63;;7073:118;6579:619;;;;;:::o;7204:86::-;7239:7;7279:4;7272:5;7268:16;7257:27;;7204:86;;;:::o;7296:112::-;7379:22;7395:5;7379:22;:::i;:::-;7374:3;7367:35;7296:112;;:::o;7414:214::-;7503:4;7541:2;7530:9;7526:18;7518:26;;7554:67;7618:1;7607:9;7603:17;7594:6;7554:67;:::i;:::-;7414:214;;;;:::o;7634:118::-;7721:24;7739:5;7721:24;:::i;:::-;7716:3;7709:37;7634:118;;:::o;7758:222::-;7851:4;7889:2;7878:9;7874:18;7866:26;;7902:71;7970:1;7959:9;7955:17;7946:6;7902:71;:::i;:::-;7758:222;;;;:::o;7986:329::-;8045:6;8094:2;8082:9;8073:7;8069:23;8065:32;8062:119;;;8100:79;;:::i;:::-;8062:119;8220:1;8245:53;8290:7;8281:6;8270:9;8266:22;8245:53;:::i;:::-;8235:63;;8191:117;7986:329;;;;:::o;8321:::-;8380:6;8429:2;8417:9;8408:7;8404:23;8400:32;8397:119;;;8435:79;;:::i;:::-;8397:119;8555:1;8580:53;8625:7;8616:6;8605:9;8601:22;8580:53;:::i;:::-;8570:63;;8526:117;8321:329;;;;:::o;8656:468::-;8721:6;8729;8778:2;8766:9;8757:7;8753:23;8749:32;8746:119;;;8784:79;;:::i;:::-;8746:119;8904:1;8929:53;8974:7;8965:6;8954:9;8950:22;8929:53;:::i;:::-;8919:63;;8875:117;9031:2;9057:50;9099:7;9090:6;9079:9;9075:22;9057:50;:::i;:::-;9047:60;;9002:115;8656:468;;;;;:::o;9130:323::-;9186:6;9235:2;9223:9;9214:7;9210:23;9206:32;9203:119;;;9241:79;;:::i;:::-;9203:119;9361:1;9386:50;9428:7;9419:6;9408:9;9404:22;9386:50;:::i;:::-;9376:60;;9332:114;9130:323;;;;:::o;9459:474::-;9527:6;9535;9584:2;9572:9;9563:7;9559:23;9555:32;9552:119;;;9590:79;;:::i;:::-;9552:119;9710:1;9735:53;9780:7;9771:6;9760:9;9756:22;9735:53;:::i;:::-;9725:63;;9681:117;9837:2;9863:53;9908:7;9899:6;9888:9;9884:22;9863:53;:::i;:::-;9853:63;;9808:118;9459:474;;;;;:::o;9939:180::-;9987:77;9984:1;9977:88;10084:4;10081:1;10074:15;10108:4;10105:1;10098:15;10125:320;10169:6;10206:1;10200:4;10196:12;10186:22;;10253:1;10247:4;10243:12;10274:18;10264:81;;10330:4;10322:6;10318:17;10308:27;;10264:81;10392:2;10384:6;10381:14;10361:18;10358:38;10355:84;;10411:18;;:::i;:::-;10355:84;10176:269;10125:320;;;:::o;10451:180::-;10499:77;10496:1;10489:88;10596:4;10593:1;10586:15;10620:4;10617:1;10610:15;10637:165;10777:17;10773:1;10765:6;10761:14;10754:41;10637:165;:::o;10808:366::-;10950:3;10971:67;11035:2;11030:3;10971:67;:::i;:::-;10964:74;;11047:93;11136:3;11047:93;:::i;:::-;11165:2;11160:3;11156:12;11149:19;;10808:366;;;:::o;11180:419::-;11346:4;11384:2;11373:9;11369:18;11361:26;;11433:9;11427:4;11423:20;11419:1;11408:9;11404:17;11397:47;11461:131;11587:4;11461:131;:::i;:::-;11453:139;;11180:419;;;:::o;11605:230::-;11745:34;11741:1;11733:6;11729:14;11722:58;11814:13;11809:2;11801:6;11797:15;11790:38;11605:230;:::o;11841:366::-;11983:3;12004:67;12068:2;12063:3;12004:67;:::i;:::-;11997:74;;12080:93;12169:3;12080:93;:::i;:::-;12198:2;12193:3;12189:12;12182:19;;11841:366;;;:::o;12213:419::-;12379:4;12417:2;12406:9;12402:18;12394:26;;12466:9;12460:4;12456:20;12452:1;12441:9;12437:17;12430:47;12494:131;12620:4;12494:131;:::i;:::-;12486:139;;12213:419;;;:::o;12638:180::-;12686:77;12683:1;12676:88;12783:4;12780:1;12773:15;12807:4;12804:1;12797:15;12824:410;12864:7;12887:20;12905:1;12887:20;:::i;:::-;12882:25;;12921:20;12939:1;12921:20;:::i;:::-;12916:25;;12976:1;12973;12969:9;12998:30;13016:11;12998:30;:::i;:::-;12987:41;;13177:1;13168:7;13164:15;13161:1;13158:22;13138:1;13131:9;13111:83;13088:139;;13207:18;;:::i;:::-;13088:139;12872:362;12824:410;;;;:::o;13240:180::-;13288:77;13285:1;13278:88;13385:4;13382:1;13375:15;13409:4;13406:1;13399:15;13426:185;13466:1;13483:20;13501:1;13483:20;:::i;:::-;13478:25;;13517:20;13535:1;13517:20;:::i;:::-;13512:25;;13556:1;13546:35;;13561:18;;:::i;:::-;13546:35;13603:1;13600;13596:9;13591:14;;13426:185;;;;:::o;13617:247::-;13757:34;13753:1;13745:6;13741:14;13734:58;13826:30;13821:2;13813:6;13809:15;13802:55;13617:247;:::o;13870:366::-;14012:3;14033:67;14097:2;14092:3;14033:67;:::i;:::-;14026:74;;14109:93;14198:3;14109:93;:::i;:::-;14227:2;14222:3;14218:12;14211:19;;13870:366;;;:::o;14242:419::-;14408:4;14446:2;14435:9;14431:18;14423:26;;14495:9;14489:4;14485:20;14481:1;14470:9;14466:17;14459:47;14523:131;14649:4;14523:131;:::i;:::-;14515:139;;14242:419;;;:::o;14667:245::-;14807:34;14803:1;14795:6;14791:14;14784:58;14876:28;14871:2;14863:6;14859:15;14852:53;14667:245;:::o;14918:366::-;15060:3;15081:67;15145:2;15140:3;15081:67;:::i;:::-;15074:74;;15157:93;15246:3;15157:93;:::i;:::-;15275:2;15270:3;15266:12;15259:19;;14918:366;;;:::o;15290:419::-;15456:4;15494:2;15483:9;15479:18;15471:26;;15543:9;15537:4;15533:20;15529:1;15518:9;15514:17;15507:47;15571:131;15697:4;15571:131;:::i;:::-;15563:139;;15290:419;;;:::o;15715:147::-;15816:11;15853:3;15838:18;;15715:147;;;;:::o;15868:114::-;;:::o;15988:398::-;16147:3;16168:83;16249:1;16244:3;16168:83;:::i;:::-;16161:90;;16260:93;16349:3;16260:93;:::i;:::-;16378:1;16373:3;16369:11;16362:18;;15988:398;;;:::o;16392:379::-;16576:3;16598:147;16741:3;16598:147;:::i;:::-;16591:154;;16762:3;16755:10;;16392:379;;;:::o;16777:171::-;16917:23;16913:1;16905:6;16901:14;16894:47;16777:171;:::o;16954:366::-;17096:3;17117:67;17181:2;17176:3;17117:67;:::i;:::-;17110:74;;17193:93;17282:3;17193:93;:::i;:::-;17311:2;17306:3;17302:12;17295:19;;16954:366;;;:::o;17326:419::-;17492:4;17530:2;17519:9;17515:18;17507:26;;17579:9;17573:4;17569:20;17565:1;17554:9;17550:17;17543:47;17607:131;17733:4;17607:131;:::i;:::-;17599:139;;17326:419;;;:::o;17751:143::-;17808:5;17839:6;17833:13;17824:22;;17855:33;17882:5;17855:33;:::i;:::-;17751:143;;;;:::o;17900:351::-;17970:6;18019:2;18007:9;17998:7;17994:23;17990:32;17987:119;;;18025:79;;:::i;:::-;17987:119;18145:1;18170:64;18226:7;18217:6;18206:9;18202:22;18170:64;:::i;:::-;18160:74;;18116:128;17900:351;;;;:::o;18257:165::-;18397:17;18393:1;18385:6;18381:14;18374:41;18257:165;:::o;18428:366::-;18570:3;18591:67;18655:2;18650:3;18591:67;:::i;:::-;18584:74;;18667:93;18756:3;18667:93;:::i;:::-;18785:2;18780:3;18776:12;18769:19;;18428:366;;;:::o;18800:419::-;18966:4;19004:2;18993:9;18989:18;18981:26;;19053:9;19047:4;19043:20;19039:1;19028:9;19024:17;19017:47;19081:131;19207:4;19081:131;:::i;:::-;19073:139;;18800:419;;;:::o;19225:332::-;19346:4;19384:2;19373:9;19369:18;19361:26;;19397:71;19465:1;19454:9;19450:17;19441:6;19397:71;:::i;:::-;19478:72;19546:2;19535:9;19531:18;19522:6;19478:72;:::i;:::-;19225:332;;;;;:::o;19563:137::-;19617:5;19648:6;19642:13;19633:22;;19664:30;19688:5;19664:30;:::i;:::-;19563:137;;;;:::o;19706:345::-;19773:6;19822:2;19810:9;19801:7;19797:23;19793:32;19790:119;;;19828:79;;:::i;:::-;19790:119;19948:1;19973:61;20026:7;20017:6;20006:9;20002:22;19973:61;:::i;:::-;19963:71;;19919:125;19706:345;;;;:::o;20057:320::-;20172:4;20210:2;20199:9;20195:18;20187:26;;20223:71;20291:1;20280:9;20276:17;20267:6;20223:71;:::i;:::-;20304:66;20366:2;20355:9;20351:18;20342:6;20304:66;:::i;:::-;20057:320;;;;;:::o;20383:442::-;20532:4;20570:2;20559:9;20555:18;20547:26;;20583:71;20651:1;20640:9;20636:17;20627:6;20583:71;:::i;:::-;20664:72;20732:2;20721:9;20717:18;20708:6;20664:72;:::i;:::-;20746;20814:2;20803:9;20799:18;20790:6;20746:72;:::i;:::-;20383:442;;;;;;:::o;20831:170::-;20971:22;20967:1;20959:6;20955:14;20948:46;20831:170;:::o;21007:366::-;21149:3;21170:67;21234:2;21229:3;21170:67;:::i;:::-;21163:74;;21246:93;21335:3;21246:93;:::i;:::-;21364:2;21359:3;21355:12;21348:19;;21007:366;;;:::o;21379:419::-;21545:4;21583:2;21572:9;21568:18;21560:26;;21632:9;21626:4;21622:20;21618:1;21607:9;21603:17;21596:47;21660:131;21786:4;21660:131;:::i;:::-;21652:139;;21379:419;;;:::o;21804:194::-;21844:4;21864:20;21882:1;21864:20;:::i;:::-;21859:25;;21898:20;21916:1;21898:20;:::i;:::-;21893:25;;21942:1;21939;21935:9;21927:17;;21966:1;21960:4;21957:11;21954:37;;;21971:18;;:::i;:::-;21954:37;21804:194;;;;:::o;22004:191::-;22044:3;22063:20;22081:1;22063:20;:::i;:::-;22058:25;;22097:20;22115:1;22097:20;:::i;:::-;22092:25;;22140:1;22137;22133:9;22126:16;;22161:3;22158:1;22155:10;22152:36;;;22168:18;;:::i;:::-;22152:36;22004:191;;;;:::o;22201:180::-;22249:77;22246:1;22239:88;22346:4;22343:1;22336:15;22370:4;22367:1;22360:15;22387:143;22444:5;22475:6;22469:13;22460:22;;22491:33;22518:5;22491:33;:::i;:::-;22387:143;;;;:::o;22536:351::-;22606:6;22655:2;22643:9;22634:7;22630:23;22626:32;22623:119;;;22661:79;;:::i;:::-;22623:119;22781:1;22806:64;22862:7;22853:6;22842:9;22838:22;22806:64;:::i;:::-;22796:74;;22752:128;22536:351;;;;:::o;22893:85::-;22938:7;22967:5;22956:16;;22893:85;;;:::o;22984:158::-;23042:9;23075:61;23093:42;23102:32;23128:5;23102:32;:::i;:::-;23093:42;:::i;:::-;23075:61;:::i;:::-;23062:74;;22984:158;;;:::o;23148:147::-;23243:45;23282:5;23243:45;:::i;:::-;23238:3;23231:58;23148:147;;:::o;23301:114::-;23368:6;23402:5;23396:12;23386:22;;23301:114;;;:::o;23421:184::-;23520:11;23554:6;23549:3;23542:19;23594:4;23589:3;23585:14;23570:29;;23421:184;;;;:::o;23611:132::-;23678:4;23701:3;23693:11;;23731:4;23726:3;23722:14;23714:22;;23611:132;;;:::o;23749:108::-;23826:24;23844:5;23826:24;:::i;:::-;23821:3;23814:37;23749:108;;:::o;23863:179::-;23932:10;23953:46;23995:3;23987:6;23953:46;:::i;:::-;24031:4;24026:3;24022:14;24008:28;;23863:179;;;;:::o;24048:113::-;24118:4;24150;24145:3;24141:14;24133:22;;24048:113;;;:::o;24197:732::-;24316:3;24345:54;24393:5;24345:54;:::i;:::-;24415:86;24494:6;24489:3;24415:86;:::i;:::-;24408:93;;24525:56;24575:5;24525:56;:::i;:::-;24604:7;24635:1;24620:284;24645:6;24642:1;24639:13;24620:284;;;24721:6;24715:13;24748:63;24807:3;24792:13;24748:63;:::i;:::-;24741:70;;24834:60;24887:6;24834:60;:::i;:::-;24824:70;;24680:224;24667:1;24664;24660:9;24655:14;;24620:284;;;24624:14;24920:3;24913:10;;24321:608;;;24197:732;;;;:::o;24935:831::-;25198:4;25236:3;25225:9;25221:19;25213:27;;25250:71;25318:1;25307:9;25303:17;25294:6;25250:71;:::i;:::-;25331:80;25407:2;25396:9;25392:18;25383:6;25331:80;:::i;:::-;25458:9;25452:4;25448:20;25443:2;25432:9;25428:18;25421:48;25486:108;25589:4;25580:6;25486:108;:::i;:::-;25478:116;;25604:72;25672:2;25661:9;25657:18;25648:6;25604:72;:::i;:::-;25686:73;25754:3;25743:9;25739:19;25730:6;25686:73;:::i;:::-;24935:831;;;;;;;;:::o;25772:281::-;25855:27;25877:4;25855:27;:::i;:::-;25847:6;25843:40;25985:6;25973:10;25970:22;25949:18;25937:10;25934:34;25931:62;25928:88;;;25996:18;;:::i;:::-;25928:88;26036:10;26032:2;26025:22;25815:238;25772:281;;:::o;26059:129::-;26093:6;26120:20;;:::i;:::-;26110:30;;26149:33;26177:4;26169:6;26149:33;:::i;:::-;26059:129;;;:::o;26194:311::-;26271:4;26361:18;26353:6;26350:30;26347:56;;;26383:18;;:::i;:::-;26347:56;26433:4;26425:6;26421:17;26413:25;;26493:4;26487;26483:15;26475:23;;26194:311;;;:::o;26528:732::-;26635:5;26660:81;26676:64;26733:6;26676:64;:::i;:::-;26660:81;:::i;:::-;26651:90;;26761:5;26790:6;26783:5;26776:21;26824:4;26817:5;26813:16;26806:23;;26877:4;26869:6;26865:17;26857:6;26853:30;26906:3;26898:6;26895:15;26892:122;;;26925:79;;:::i;:::-;26892:122;27040:6;27023:231;27057:6;27052:3;27049:15;27023:231;;;27132:3;27161:48;27205:3;27193:10;27161:48;:::i;:::-;27156:3;27149:61;27239:4;27234:3;27230:14;27223:21;;27099:155;27083:4;27078:3;27074:14;27067:21;;27023:231;;;27027:21;26641:619;;26528:732;;;;;:::o;27283:385::-;27365:5;27414:3;27407:4;27399:6;27395:17;27391:27;27381:122;;27422:79;;:::i;:::-;27381:122;27532:6;27526:13;27557:105;27658:3;27650:6;27643:4;27635:6;27631:17;27557:105;:::i;:::-;27548:114;;27371:297;27283:385;;;;:::o;27674:554::-;27769:6;27818:2;27806:9;27797:7;27793:23;27789:32;27786:119;;;27824:79;;:::i;:::-;27786:119;27965:1;27954:9;27950:17;27944:24;27995:18;27987:6;27984:30;27981:117;;;28017:79;;:::i;:::-;27981:117;28122:89;28203:7;28194:6;28183:9;28179:22;28122:89;:::i;:::-;28112:99;;27915:306;27674:554;;;;:::o

Swarm Source

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