ETH Price: $3,417.76 (+7.07%)
Gas: 15 Gwei

Token

BlockSpot Network (SPOT)
 

Overview

Max Total Supply

100,000,000 SPOT

Holders

436

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 SPOT

Value
$0.00
0x3f1867f5105c4cf0ad4e91cde4775f2ce4499d17
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:
BlockSpot

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 10 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. 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 {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

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

File 2 of 10 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol)

pragma solidity ^0.8.0;

import "../token/ERC20/IERC20.sol";

File 3 of 10 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.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}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * 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.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the 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 override returns (uint8) {
        return 18;
    }

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 4 of 10 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 5 of 10 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

File 6 of 10 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 7 of 10 : BlockSpot.sol
/*
       ___  __         __    ____          __    _  __    __                  __  
      / _ )/ /__  ____/ /__ / __/__  ___  / /_  / |/ /__ / /__    _____  ____/ /__
     / _  / / _ \/ __/  '_/_\ \/ _ \/ _ \/ __/ /    / -_) __/ |/|/ / _ \/ __/  '_/
    /____/_/\___/\__/_/\_\/___/ .__/\___/\__/ /_/|_/\__/\__/|__,__/\___/_/ /_/\_\ 
                             /_/                                                  

Website   : https://blockspot.tech/    
Telegram  : https://t.me/BlockSpotPortal
Twitter   : https://twitter.com/L2_BlockSpot 
Discord   : https://discord.com/invite/4mVtZrKCeS 
*/

// SPDX-License-Identifier: MIT

pragma solidity =0.8.15;

import "./LPDiv.sol";

contract BlockSpot is ERC20, Ownable {
    IUniswapRouter public router;
    address public pair;

    bool private swapping;
    bool public swapEnabled = true;
    bool public claimEnabled;

    SpotDividendTracker public dividendTracker;

    address public devWallet;

    uint256 public swapTokensAtAmount;
    uint256 public maxBuyAmount;
    uint256 public maxSellAmount;
    uint256 public maxWallet;

    struct Taxes {
        uint256 liquidity;
        uint256 dev;
    }

    Taxes public buyTaxes = Taxes(3, 3);
    Taxes public sellTaxes = Taxes(3, 3);

    uint256 public totalBuyTax = 6;
    uint256 public totalSellTax = 6;

    mapping(address => bool) public _isBot;

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public automatedMarketMakerPairs;
    mapping(address => bool) private _isExcludedFromMaxWallet;

    ///////////////
    //   Events  //
    ///////////////

    event ExcludeFromFees(address indexed account, bool isExcluded);
    event ExcludeMultipleAccountsFromFees(address[] accounts, bool isExcluded);
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
    event GasForProcessingUpdated(
        uint256 indexed newValue,
        uint256 indexed oldValue
    );
    event SendDividends(uint256 tokensSwapped, uint256 amount);
    event ProcessedDividendTracker(
        uint256 iterations,
        uint256 claims,
        uint256 lastProcessedIndex,
        bool indexed automatic,
        uint256 gas,
        address indexed processor
    );

    constructor() ERC20("BlockSpot Network", "SPOT") {
        dividendTracker = new SpotDividendTracker();
        setDevWallet(0x332193c23b9782F2c91d4F5931Afc7C7ca0c641f);

        IUniswapRouter _router = IUniswapRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        address _pair = IFactory(_router.factory()).createPair(
            address(this),
            _router.WETH()
        );

        router = _router;
        pair = _pair;
        setSwapTokensAtAmount(300000); //
        updateMaxWalletAmount(2000000);
        setMaxBuyAndSell(2000000, 2000000);

        _setAutomatedMarketMakerPair(_pair, true);

        dividendTracker.updateLP_Token(pair);

        dividendTracker.excludeFromDividends(address(dividendTracker), true);
        dividendTracker.excludeFromDividends(address(this), true);
        dividendTracker.excludeFromDividends(owner(), true);
        dividendTracker.excludeFromDividends(address(0xdead), true);
        dividendTracker.excludeFromDividends(address(_router), true);

        excludeFromMaxWallet(address(_pair), true);
        excludeFromMaxWallet(address(0xdead), true);
        excludeFromMaxWallet(address(this), true);
        excludeFromMaxWallet(address(_router), true);

        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);

        _mint(owner(), 100000000 * (10**18));
    }

    receive() external payable {}

    function updateDividendTracker(address newAddress) public onlyOwner {
        SpotDividendTracker newDividendTracker = SpotDividendTracker(
            payable(newAddress)
        );
        newDividendTracker.excludeFromDividends(
            address(newDividendTracker),
            true
        );
        newDividendTracker.excludeFromDividends(address(this), true);
        newDividendTracker.excludeFromDividends(owner(), true);
        newDividendTracker.excludeFromDividends(address(router), true);
        dividendTracker = newDividendTracker;
    }

    /// @notice Manual claim the dividends
    function claim() external {
        require(claimEnabled, "Claim not enabled");
        dividendTracker.processAccount(payable(msg.sender));
    }

    function updateMaxWalletAmount(uint256 newNum) public onlyOwner {
        require(newNum >= 1000000, "Cannot set maxWallet lower than 1%");
        maxWallet = newNum * 10**18;
    }

    function setMaxBuyAndSell(uint256 maxBuy, uint256 maxSell)
        public
        onlyOwner
    {
        require(maxBuy >= 1000000, "Cannot set maxbuy lower than 1% ");
        require(maxSell >= 500000, "Cannot set maxsell lower than 0.5% ");
        maxBuyAmount = maxBuy * 10**18;
        maxSellAmount = maxSell * 10**18;
    }

    function setSwapTokensAtAmount(uint256 amount) public onlyOwner {
        swapTokensAtAmount = amount * 10**18;
    }

    function excludeFromMaxWallet(address account, bool excluded)
        public
        onlyOwner
    {
        _isExcludedFromMaxWallet[account] = excluded;
    }

    /// @notice Withdraw tokens sent by mistake.
    /// @param tokenAddress The address of the token to withdraw
    function rescueETH20Tokens(address tokenAddress) external {
        require(msg.sender == devWallet,"Unauthorized!");
        IERC20(tokenAddress).transfer(
            devWallet,
            IERC20(tokenAddress).balanceOf(address(this))
        );
    }

    /// @notice Send remaining ETH to dev
    /// @dev It will send all ETH to dev
    function forceSend() external {
        require(msg.sender == devWallet,"Unauthorized!");
        uint256 ETHbalance = address(this).balance;
        (bool success, ) = payable(devWallet).call{value: ETHbalance}("");
        require(success);
    }

    function trackerRescueETH20Tokens(address tokenAddress) external {
        require(msg.sender == devWallet,"Unauthorized!");
        dividendTracker.trackerRescueETH20Tokens(devWallet, tokenAddress);
    }

    function updateRouter(address newRouter) external onlyOwner {
        router = IUniswapRouter(newRouter);
    }

    /////////////////////////////////
    // Exclude / Include functions //
    /////////////////////////////////

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        require(
            _isExcludedFromFees[account] != excluded,
            "Account is already the value of 'excluded'"
        );
        _isExcludedFromFees[account] = excluded;

        emit ExcludeFromFees(account, excluded);
    }

    /// @dev "true" to exlcude, "false" to include
    function excludeFromDividends(address account, bool value)
        public
        onlyOwner
    {
        dividendTracker.excludeFromDividends(account, value);
    }

    function setDevWallet(address newWallet) public onlyOwner {
        devWallet = newWallet;
    }

    function setBuyTaxes(uint256 _liquidity, uint256 _dev) external onlyOwner {
        require(_liquidity + _dev <= 20, "Fee must be <= 20%");
        buyTaxes = Taxes(_liquidity, _dev);
        totalBuyTax = _liquidity + _dev;
    }

    function setSellTaxes(uint256 _liquidity, uint256 _dev) external onlyOwner {
        require(_liquidity + _dev <= 20, "Fee must be <= 20%");
        sellTaxes = Taxes(_liquidity, _dev);
        totalSellTax = _liquidity + _dev;
    }

    /// @notice Enable or disable internal swaps
    /// @dev Set "true" to enable internal swaps for liquidity, treasury and dividends
    function setSwapEnabled(bool _enabled) external onlyOwner {
        swapEnabled = _enabled;
    }

    function setClaimEnabled(bool state) external onlyOwner {
        claimEnabled = state;
    }

    /// @param bot The bot address
    /// @param value "true" to blacklist, "false" to unblacklist
    function setBot(address bot, bool value) external onlyOwner {
        require(_isBot[bot] != value);
        _isBot[bot] = value;
    }

    function setLP_Token(address _lpToken) external onlyOwner {
        dividendTracker.updateLP_Token(_lpToken);
    }

    /// @dev Set new pairs created due to listing in new DEX
    function setAutomatedMarketMakerPair(address newPair, bool value)
        external
        onlyOwner
    {
        _setAutomatedMarketMakerPair(newPair, value);
    }

    function _setAutomatedMarketMakerPair(address newPair, bool value) private {
        require(
            automatedMarketMakerPairs[newPair] != value,
            "Automated market maker pair is already set to that value"
        );
        automatedMarketMakerPairs[newPair] = value;

        if (value) {
            dividendTracker.excludeFromDividends(newPair, true);
        }

        emit SetAutomatedMarketMakerPair(newPair, value);
    }

    //////////////////////
    // Getter Functions //
    //////////////////////

    function getTotalDividendsDistributed() external view returns (uint256) {
        return dividendTracker.totalDividendsDistributed();
    }

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    function withdrawableDividendOf(address account)
        public
        view
        returns (uint256)
    {
        return dividendTracker.withdrawableDividendOf(account);
    }

    function dividendTokenBalanceOf(address account)
        public
        view
        returns (uint256)
    {
        return dividendTracker.balanceOf(account);
    }

    function getAccountInfo(address account)
        external
        view
        returns (
            address,
            uint256,
            uint256,
            uint256,
            uint256
        )
    {
        return dividendTracker.getAccount(account);
    }

    ////////////////////////
    // Transfer Functions //
    ////////////////////////

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        if (
            !_isExcludedFromFees[from] && !_isExcludedFromFees[to] && !swapping
        ) {
            if (automatedMarketMakerPairs[to]) {
                require(
                    amount <= maxSellAmount,
                    "You are exceeding maxSellAmount"
                );
            } else if (automatedMarketMakerPairs[from])
                require(
                    amount <= maxBuyAmount,
                    "You are exceeding maxBuyAmount"
                );
            if (!_isExcludedFromMaxWallet[to]) {
                require(
                    amount + balanceOf(to) <= maxWallet,
                    "Unable to exceed Max Wallet"
                );
            }
        }

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        uint256 contractTokenBalance = balanceOf(address(this));
        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            !swapping &&
            swapEnabled &&
            automatedMarketMakerPairs[to] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            if (totalSellTax > 0) {
                swapAndLiquify(swapTokensAtAmount);
            }

            swapping = false;
        }

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        if (!automatedMarketMakerPairs[to] && !automatedMarketMakerPairs[from])
            takeFee = false;

        if (takeFee) {
            uint256 feeAmt;
            if (automatedMarketMakerPairs[to])
                feeAmt = (amount * totalSellTax) / 100;
            else if (automatedMarketMakerPairs[from])
                feeAmt = (amount * totalBuyTax) / 100;

            amount = amount - feeAmt;
            super._transfer(from, address(this), feeAmt);
        }
        super._transfer(from, to, amount);

        try dividendTracker.setBalance(from, balanceOf(from)) {} catch {}
        try dividendTracker.setBalance(to, balanceOf(to)) {} catch {}
    }

    function swapAndLiquify(uint256 tokens) private {
        uint256 toSwapForLiq = ((tokens * sellTaxes.liquidity) / totalSellTax) / 2;
        uint256 tokensToAddLiquidityWith = ((tokens * sellTaxes.liquidity) / totalSellTax) / 2;
        uint256 toSwapForDev = (tokens * sellTaxes.dev) / totalSellTax;

        swapTokensForETH(toSwapForLiq);

        uint256 currentbalance = address(this).balance;

        if (currentbalance > 0) {
            // Add liquidity to uni
            addLiquidity(tokensToAddLiquidityWith, currentbalance);
        }

        swapTokensForETH(toSwapForDev);

        uint256 EthTaxBalance = address(this).balance;

        // Send ETH to dev
        uint256 devAmt = EthTaxBalance;

        if (devAmt > 0) {
            (bool success, ) = payable(devWallet).call{value: devAmt}("");
            require(success, "Failed to send ETH to dev wallet");
        }

        uint256 lpBalance = IERC20(pair).balanceOf(address(this));

        //Send LP to dividends
        uint256 dividends = lpBalance;

        if (dividends > 0) {
            bool success = IERC20(pair).transfer(
                address(dividendTracker),
                dividends
            );
            if (success) {
                dividendTracker.distributeLPDividends(dividends);
                emit SendDividends(tokens, dividends);
            }
        }
    }

    // transfers LP from the owners wallet to holders // must approve this contract, on pair contract before calling
    function ManualLiquidityDistribution(uint256 amount) public onlyOwner {
        bool success = IERC20(pair).transferFrom(
            msg.sender,
            address(dividendTracker),
            amount
        );
        if (success) {
            dividendTracker.distributeLPDividends(amount);
        }
    }

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

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

        // make the swap
        router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(router), tokenAmount);

        // add the liquidity
        router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            address(this),
            block.timestamp
        );
    }
}

contract SpotDividendTracker is Ownable, DividendPayingToken {
    struct AccountInfo {
        address account;
        uint256 withdrawableDividends;
        uint256 totalDividends;
        uint256 lastClaimTime;
    }

    mapping(address => bool) public excludedFromDividends;

    mapping(address => uint256) public lastClaimTimes;

    event ExcludeFromDividends(address indexed account, bool value);
    event Claim(address indexed account, uint256 amount);

    constructor()
        DividendPayingToken("Spot_Dividend_Tracker", "Spot_Dividend_Tracker")
    {}

    function trackerRescueETH20Tokens(address recipient, address tokenAddress)
        external
        onlyOwner
    {
        IERC20(tokenAddress).transfer(
            recipient,
            IERC20(tokenAddress).balanceOf(address(this))
        );
    }
    

    function updateLP_Token(address _lpToken) external onlyOwner {
        LP_Token = _lpToken;
    }

    function _transfer(
        address,
        address,
        uint256
    ) internal pure override {
        require(false, "Spot_Dividend_Tracker: No transfers allowed");
    }

    function excludeFromDividends(address account, bool value)
        external
        onlyOwner
    {
        require(excludedFromDividends[account] != value);
        excludedFromDividends[account] = value;
        if (value == true) {
            _setBalance(account, 0);
        } else {
            _setBalance(account, balanceOf(account));
        }
        emit ExcludeFromDividends(account, value);
    }

    function getAccount(address account)
        public
        view
        returns (
            address,
            uint256,
            uint256,
            uint256,
            uint256
        )
    {
        AccountInfo memory info;
        info.account = account;
        info.withdrawableDividends = withdrawableDividendOf(account);
        info.totalDividends = accumulativeDividendOf(account);
        info.lastClaimTime = lastClaimTimes[account];
        return (
            info.account,
            info.withdrawableDividends,
            info.totalDividends,
            info.lastClaimTime,
            totalDividendsWithdrawn
        );
    }

    function setBalance(address account, uint256 newBalance)
        external
        onlyOwner
    {
        if (excludedFromDividends[account]) {
            return;
        }
        _setBalance(account, newBalance);
    }

    function processAccount(address payable account)
        external
        onlyOwner
        returns (bool)
    {
        uint256 amount = _withdrawDividendOfUser(account);

        if (amount > 0) {
            lastClaimTimes[account] = block.timestamp;
            emit Claim(account, amount);
            return true;
        }
        return false;
    }
}

File 8 of 10 : ILPDiv.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.6;



interface DividendPayingTokenInterface {
  /// @notice View the amount of dividend in wei that an address can withdraw.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` can withdraw.
  function dividendOf(address _owner) external view returns(uint256);

  /// @notice Withdraws the ether distributed to the sender.
  /// @dev SHOULD transfer `dividendOf(msg.sender)` wei to `msg.sender`, and `dividendOf(msg.sender)` SHOULD be 0 after the transfer.
  ///  MUST emit a `DividendWithdrawn` event if the amount of ether transferred is greater than 0.
  function withdrawDividend() external;
  
  /// @notice View the amount of dividend in wei that an address can withdraw.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` can withdraw.
  function withdrawableDividendOf(address _owner) external view returns(uint256);

  /// @notice View the amount of dividend in wei that an address has withdrawn.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` has withdrawn.
  function withdrawnDividendOf(address _owner) external view returns(uint256);

  /// @notice View the amount of dividend in wei that an address has earned in total.
  /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner)
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` has earned in total.
  function accumulativeDividendOf(address _owner) external view returns(uint256);


  /// @dev This event MUST emit when ether is distributed to token holders.
  /// @param from The address which sends ether to this contract.
  /// @param weiAmount The amount of distributed ether in wei.
  event DividendsDistributed(
    address indexed from,
    uint256 weiAmount
  );

  /// @dev This event MUST emit when an address withdraws their dividend.
  /// @param to The address which withdraws ether from this contract.
  /// @param weiAmount The amount of withdrawn ether in wei.
  event DividendWithdrawn(
    address indexed to,
    uint256 weiAmount
  );
  
}

File 9 of 10 : LPDiv.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.10;
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "./SafeMath.sol";
import "./ILPDiv.sol";
import "@openzeppelin/contracts/interfaces/IERC20.sol";


interface IPair {
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function token0() external view returns (address);

}

interface IFactory{
        function createPair(address tokenA, address tokenB) external returns (address pair);
        function getPair(address tokenA, address tokenB) external view returns (address pair);
}

interface IUniswapRouter {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    
    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline) external;
}

contract DividendPayingToken is ERC20, DividendPayingTokenInterface, Ownable {

  using SafeMath for uint256;
  using SafeMathUint for uint256;
  using SafeMathInt for int256;

  address public LP_Token;


  // With `magnitude`, we can properly distribute dividends even if the amount of received ether is small.
  // For more discussion about choosing the value of `magnitude`,
  //  see https://github.com/ethereum/EIPs/issues/1726#issuecomment-472352728
  uint256 constant internal magnitude = 2**128;

  uint256 internal magnifiedDividendPerShare;

  // About dividendCorrection:
  // If the token balance of a `_user` is never changed, the dividend of `_user` can be computed with:
  //   `dividendOf(_user) = dividendPerShare * balanceOf(_user)`.
  // When `balanceOf(_user)` is changed (via minting/burning/transferring tokens),
  //   `dividendOf(_user)` should not be changed,
  //   but the computed value of `dividendPerShare * balanceOf(_user)` is changed.
  // To keep the `dividendOf(_user)` unchanged, we add a correction term:
  //   `dividendOf(_user) = dividendPerShare * balanceOf(_user) + dividendCorrectionOf(_user)`,
  //   where `dividendCorrectionOf(_user)` is updated whenever `balanceOf(_user)` is changed:
  //   `dividendCorrectionOf(_user) = dividendPerShare * (old balanceOf(_user)) - (new balanceOf(_user))`.
  // So now `dividendOf(_user)` returns the same value before and after `balanceOf(_user)` is changed.
  mapping(address => int256) internal magnifiedDividendCorrections;
  mapping(address => uint256) internal withdrawnDividends;

  uint256 public totalDividendsDistributed;
  uint256 public totalDividendsWithdrawn;

  constructor(string memory _name, string memory _symbol) ERC20(_name, _symbol) {}

  function distributeLPDividends(uint256 amount) public onlyOwner{
    require(totalSupply() > 0);

    if (amount > 0) {
      magnifiedDividendPerShare = magnifiedDividendPerShare.add(
        (amount).mul(magnitude) / totalSupply()
      );
      emit DividendsDistributed(msg.sender, amount);

      totalDividendsDistributed = totalDividendsDistributed.add(amount);
    }
  }

  /// @notice Withdraws the ether distributed to the sender.
  /// @dev It emits a `DividendWithdrawn` event if the amount of withdrawn ether is greater than 0.
  function withdrawDividend() public virtual override {
    _withdrawDividendOfUser(payable(msg.sender));
  }

  /// @notice Withdraws the ether distributed to the sender.
  /// @dev It emits a `DividendWithdrawn` event if the amount of withdrawn ether is greater than 0.
 function _withdrawDividendOfUser(address payable user) internal returns (uint256) {
    uint256 _withdrawableDividend = withdrawableDividendOf(user);
    if (_withdrawableDividend > 0) {
      withdrawnDividends[user] = withdrawnDividends[user].add(_withdrawableDividend);
      totalDividendsWithdrawn += _withdrawableDividend;
      emit DividendWithdrawn(user, _withdrawableDividend);
      bool success = IERC20(LP_Token).transfer(user, _withdrawableDividend);

      if(!success) {
        withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend);
        totalDividendsWithdrawn -= _withdrawableDividend;
        return 0;
      }

      return _withdrawableDividend;
    }

    return 0;
  }


  /// @notice View the amount of dividend in wei that an address can withdraw.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` can withdraw.
  function dividendOf(address _owner) public view override returns(uint256) {
    return withdrawableDividendOf(_owner);
  }

  /// @notice View the amount of dividend in wei that an address can withdraw.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` can withdraw.
  function withdrawableDividendOf(address _owner) public view override returns(uint256) {
    return accumulativeDividendOf(_owner).sub(withdrawnDividends[_owner]);
  }

  /// @notice View the amount of dividend in wei that an address has withdrawn.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` has withdrawn.
  function withdrawnDividendOf(address _owner) public view override returns(uint256) {
    return withdrawnDividends[_owner];
  }


  /// @notice View the amount of dividend in wei that an address has earned in total.
  /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner)
  /// = (magnifiedDividendPerShare * balanceOf(_owner) + magnifiedDividendCorrections[_owner]) / magnitude
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` has earned in total.
  function accumulativeDividendOf(address _owner) public view override returns(uint256) {
    return magnifiedDividendPerShare.mul(balanceOf(_owner)).toInt256Safe()
      .add(magnifiedDividendCorrections[_owner]).toUint256Safe() / magnitude;
  }

  /// @dev Internal function that transfer tokens from one address to another.
  /// Update magnifiedDividendCorrections to keep dividends unchanged.
  /// @param from The address to transfer from.
  /// @param to The address to transfer to.
  /// @param value The amount to be transferred.
  function _transfer(address from, address to, uint256 value) internal virtual override {
    require(false);

    int256 _magCorrection = magnifiedDividendPerShare.mul(value).toInt256Safe();
    magnifiedDividendCorrections[from] = magnifiedDividendCorrections[from].add(_magCorrection);
    magnifiedDividendCorrections[to] = magnifiedDividendCorrections[to].sub(_magCorrection);
  }

  /// @dev Internal function that mints tokens to an account.
  /// Update magnifiedDividendCorrections to keep dividends unchanged.
  /// @param account The account that will receive the created tokens.
  /// @param value The amount that will be created.
  function _mint(address account, uint256 value) internal override {
    super._mint(account, value);

    magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account]
      .sub( (magnifiedDividendPerShare.mul(value)).toInt256Safe() );
  }

  /// @dev Internal function that burns an amount of the token of a given account.
  /// Update magnifiedDividendCorrections to keep dividends unchanged.
  /// @param account The account whose tokens will be burnt.
  /// @param value The amount that will be burnt.
  function _burn(address account, uint256 value) internal override {
    super._burn(account, value);

    magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account]
      .add( (magnifiedDividendPerShare.mul(value)).toInt256Safe() );
  }

  function _setBalance(address account, uint256 newBalance) internal {
    uint256 currentBalance = balanceOf(account);

    if(newBalance > currentBalance) {
      uint256 mintAmount = newBalance.sub(currentBalance);
      _mint(account, mintAmount);
    } else if(newBalance < currentBalance) {
      uint256 burnAmount = currentBalance.sub(newBalance);
      _burn(account, burnAmount);
    }
  }
}

File 10 of 10 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.6;

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

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

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

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

/**
 * @title SafeMathInt
 * @dev Math operations for int256 with overflow safety checks.
 */
library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);

    /**
     * @dev Multiplies two int256 variables and fails on overflow.
     */
    function mul(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a * b;

        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }

    /**
     * @dev Division of two int256 variables and fails on overflow.
     */
    function div(int256 a, int256 b) internal pure returns (int256) {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256);

        // Solidity already throws when dividing by 0.
        return a / b;
    }

    /**
     * @dev Subtracts two int256 variables and fails on overflow.
     */
    function sub(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }

    /**
     * @dev Adds two int256 variables and fails on overflow.
     */
    function add(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }

    /**
     * @dev Converts to absolute value, and fails on overflow.
     */
    function abs(int256 a) internal pure returns (int256) {
        require(a != MIN_INT256);
        return a < 0 ? -a : a;
    }


    function toUint256Safe(int256 a) internal pure returns (uint256) {
        require(a >= 0);
        return uint256(a);
    }
}

/**
 * @title SafeMathUint
 * @dev Math operations with safety checks that revert on error
 */
library SafeMathUint {
  function toInt256Safe(uint256 a) internal pure returns (int256) {
    int256 b = int256(a);
    require(b >= 0);
    return b;
  }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"accounts","type":"address[]"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeMultipleAccountsFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"GasForProcessingUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"iterations","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"claims","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"lastProcessedIndex","type":"uint256"},{"indexed":true,"internalType":"bool","name":"automatic","type":"bool"},{"indexed":false,"internalType":"uint256","name":"gas","type":"uint256"},{"indexed":true,"internalType":"address","name":"processor","type":"address"}],"name":"ProcessedDividendTracker","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SendDividends","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ManualLiquidityDistribution","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","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":[],"name":"buyTaxes","outputs":[{"internalType":"uint256","name":"liquidity","type":"uint256"},{"internalType":"uint256","name":"dev","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"dividendTokenBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dividendTracker","outputs":[{"internalType":"contract SpotDividendTracker","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromDividends","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"forceSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getAccountInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalDividendsDistributed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"rescueETH20Tokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTaxes","outputs":[{"internalType":"uint256","name":"liquidity","type":"uint256"},{"internalType":"uint256","name":"dev","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newPair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"bot","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_liquidity","type":"uint256"},{"internalType":"uint256","name":"_dev","type":"uint256"}],"name":"setBuyTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"setClaimEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_lpToken","type":"address"}],"name":"setLP_Token","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxBuy","type":"uint256"},{"internalType":"uint256","name":"maxSell","type":"uint256"}],"name":"setMaxBuyAndSell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_liquidity","type":"uint256"},{"internalType":"uint256","name":"_dev","type":"uint256"}],"name":"setSellTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"totalBuyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"trackerRescueETH20Tokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateDividendTracker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRouter","type":"address"}],"name":"updateRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"withdrawableDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526001600760156101000a81548160ff0219169083151502179055506040518060400160405280600381526020016003815250600e600082015181600001556020820151816001015550506040518060400160405280600381526020016003815250601060008201518160000155602082015181600101555050600660125560066013553480156200009457600080fd5b506040518060400160405280601181526020017f426c6f636b53706f74204e6574776f726b0000000000000000000000000000008152506040518060400160405280600481526020017f53504f540000000000000000000000000000000000000000000000000000000081525081600390816200011291906200139b565b5080600490816200012491906200139b565b505050620001476200013b620008ad60201b60201c565b620008b560201b60201c565b604051620001559062001113565b604051809103906000f08015801562000172573d6000803e3d6000fd5b50600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001d873332193c23b9782f2c91d4f5931afc7c7ca0c641f6200097b60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200023f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002659190620014ec565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002cd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002f39190620014ec565b6040518363ffffffff1660e01b8152600401620003129291906200152f565b6020604051808303816000875af115801562000332573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003589190620014ec565b905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620003f0620493e0620009cf60201b60201c565b62000404621e8480620009fe60201b60201c565b62000419621e84808062000a7660201b60201c565b6200042c81600162000b5460201b60201c565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166344b6bd9e600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b8152600401620004ab91906200155c565b600060405180830381600087803b158015620004c657600080fd5b505af1158015620004db573d6000803e3d6000fd5b50505050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a0600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016040518363ffffffff1660e01b81526004016200056192919062001596565b600060405180830381600087803b1580156200057c57600080fd5b505af115801562000591573d6000803e3d6000fd5b50505050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a03060016040518363ffffffff1660e01b8152600401620005f592919062001596565b600060405180830381600087803b1580156200061057600080fd5b505af115801562000625573d6000803e3d6000fd5b50505050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a06200067762000d2660201b60201c565b60016040518363ffffffff1660e01b81526004016200069892919062001596565b600060405180830381600087803b158015620006b357600080fd5b505af1158015620006c8573d6000803e3d6000fd5b50505050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a061dead60016040518363ffffffff1660e01b81526004016200072e92919062001596565b600060405180830381600087803b1580156200074957600080fd5b505af11580156200075e573d6000803e3d6000fd5b50505050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a08360016040518363ffffffff1660e01b8152600401620007c292919062001596565b600060405180830381600087803b158015620007dd57600080fd5b505af1158015620007f2573d6000803e3d6000fd5b505050506200080981600162000d5060201b60201c565b6200081e61dead600162000d5060201b60201c565b6200083130600162000d5060201b60201c565b6200084482600162000d5060201b60201c565b620008666200085862000d2660201b60201c565b600162000dbb60201b60201c565b6200087930600162000dbb60201b60201c565b620008a56200088d62000d2660201b60201c565b6a52b7d2dcc80cd2e400000062000f0b60201b60201c565b505062001ac2565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200098b6200107860201b60201c565b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b620009df6200107860201b60201c565b670de0b6b3a764000081620009f59190620015f2565b600a8190555050565b62000a0e6200107860201b60201c565b620f424081101562000a57576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a4e90620016da565b60405180910390fd5b670de0b6b3a76400008162000a6d9190620015f2565b600d8190555050565b62000a866200107860201b60201c565b620f424082101562000acf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ac6906200174c565b60405180910390fd5b6207a12081101562000b18576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b0f90620017e4565b60405180910390fd5b670de0b6b3a76400008262000b2e9190620015f2565b600b81905550670de0b6b3a76400008162000b4a9190620015f2565b600c819055505050565b801515601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615150362000be9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000be0906200187c565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550801562000cdc57600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a08360016040518363ffffffff1660e01b815260040162000ca792919062001596565b600060405180830381600087803b15801562000cc257600080fd5b505af115801562000cd7573d6000803e3d6000fd5b505050505b8015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000d606200107860201b60201c565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b62000dcb6200107860201b60201c565b801515601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615150362000e60576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000e579062001914565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000eff919062001936565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000f7d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000f7490620019a3565b60405180910390fd5b62000f91600083836200110960201b60201c565b806002600082825462000fa59190620019c5565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162001058919062001a33565b60405180910390a362001074600083836200110e60201b60201c565b5050565b62001088620008ad60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620010ae62000d2660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462001107576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620010fe9062001aa0565b60405180910390fd5b565b505050565b505050565b6133e88062006ea383390190565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620011a357607f821691505b602082108103620011b957620011b86200115b565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620012237fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620011e4565b6200122f8683620011e4565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200127c62001276620012708462001247565b62001251565b62001247565b9050919050565b6000819050919050565b62001298836200125b565b620012b0620012a78262001283565b848454620011f1565b825550505050565b600090565b620012c7620012b8565b620012d48184846200128d565b505050565b5b81811015620012fc57620012f0600082620012bd565b600181019050620012da565b5050565b601f8211156200134b576200131581620011bf565b6200132084620011d4565b8101602085101562001330578190505b620013486200133f85620011d4565b830182620012d9565b50505b505050565b600082821c905092915050565b6000620013706000198460080262001350565b1980831691505092915050565b60006200138b83836200135d565b9150826002028217905092915050565b620013a68262001121565b67ffffffffffffffff811115620013c257620013c16200112c565b5b620013ce82546200118a565b620013db82828562001300565b600060209050601f831160018114620014135760008415620013fe578287015190505b6200140a85826200137d565b8655506200147a565b601f1984166200142386620011bf565b60005b828110156200144d5784890151825560018201915060208501945060208101905062001426565b868310156200146d578489015162001469601f8916826200135d565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620014b48262001487565b9050919050565b620014c681620014a7565b8114620014d257600080fd5b50565b600081519050620014e681620014bb565b92915050565b60006020828403121562001505576200150462001482565b5b60006200151584828501620014d5565b91505092915050565b6200152981620014a7565b82525050565b60006040820190506200154660008301856200151e565b6200155560208301846200151e565b9392505050565b60006020820190506200157360008301846200151e565b92915050565b60008115159050919050565b620015908162001579565b82525050565b6000604082019050620015ad60008301856200151e565b620015bc602083018462001585565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620015ff8262001247565b91506200160c8362001247565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620016485762001647620015c3565b5b828202905092915050565b600082825260208201905092915050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f3125000000000000000000000000000000000000000000000000000000000000602082015250565b6000620016c260228362001653565b9150620016cf8262001664565b604082019050919050565b60006020820190508181036000830152620016f581620016b3565b9050919050565b7f43616e6e6f7420736574206d6178627579206c6f776572207468616e20312520600082015250565b60006200173460208362001653565b91506200174182620016fc565b602082019050919050565b60006020820190508181036000830152620017678162001725565b9050919050565b7f43616e6e6f7420736574206d617873656c6c206c6f776572207468616e20302e60008201527f3525200000000000000000000000000000000000000000000000000000000000602082015250565b6000620017cc60238362001653565b9150620017d9826200176e565b604082019050919050565b60006020820190508181036000830152620017ff81620017bd565b9050919050565b7f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160008201527f6c72656164792073657420746f20746861742076616c75650000000000000000602082015250565b60006200186460388362001653565b9150620018718262001806565b604082019050919050565b60006020820190508181036000830152620018978162001855565b9050919050565b7f4163636f756e7420697320616c7265616479207468652076616c7565206f662060008201527f276578636c756465642700000000000000000000000000000000000000000000602082015250565b6000620018fc602a8362001653565b915062001909826200189e565b604082019050919050565b600060208201905081810360008301526200192f81620018ed565b9050919050565b60006020820190506200194d600083018462001585565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200198b601f8362001653565b9150620019988262001953565b602082019050919050565b60006020820190508181036000830152620019be816200197c565b9050919050565b6000620019d28262001247565b9150620019df8362001247565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562001a175762001a16620015c3565b5b828201905092915050565b62001a2d8162001247565b82525050565b600060208201905062001a4a600083018462001a22565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062001a8860208362001653565b915062001a958262001a50565b602082019050919050565b6000602082019050818103600083015262001abb8162001a79565b9050919050565b6153d18062001ad26000396000f3fe60806040526004361061036f5760003560e01c806388e765ff116101c6578063afa4f3b2116100f7578063dd62ed3e11610095578063f2fde38b1161006f578063f2fde38b14610cc4578063f66895a314610ced578063f887ea4014610d19578063f8b45b0514610d4457610376565b8063dd62ed3e14610c33578063e01af92c14610c70578063e2f4560514610c9957610376565b8063c0246668116100d1578063c024666814610b8f578063c18bc19514610bb8578063c851cc3214610be1578063d2fcc00114610c0a57610376565b8063afa4f3b214610b00578063b62496f514610b29578063bdf1436d14610b6657610376565b8063a11a168211610164578063a8b9d2401161013e578063a8b9d24014610a20578063a9059cbb14610a5d578063aa35822c14610a9a578063abb8105214610ac357610376565b8063a11a16821461098f578063a457c2d7146109b8578063a8aa1b31146109f557610376565b80638ea5220f116101a05780638ea5220f146108e757806392929a091461091257806395d89b411461093b5780639a7a23d61461096657610376565b806388e765ff146108685780638c9684f9146108935780638da5cb5b146108bc57610376565b8063342aa8b5116102a05780636ddd17131161023e57806379b447bd1161021857806379b447bd146107a95780637b510fe8146107d2578063864701a51461081357806388bdd9be1461083f57610376565b80636ddd17131461072a57806370a0823114610755578063715018a61461079257610376565b80634e71d92d1161027a5780634e71d92d1461066e5780634fbee1931461068557806366d602ae146106c25780636843cd84146106ed57610376565b8063342aa8b5146105dd578063395093511461060657806346469afb1461064357610376565b80631f53ac021161030d5780632c1f5216116102e75780632c1f5216146105335780632e1ab9041461055e57806330bb4cff14610587578063313ce567146105b257610376565b80631f53ac02146104a257806323b872dd146104cb5780632866ed211461050857610376565b80630a78097d116103495780630a78097d1461040c57806312b77e8a1461043557806318160ddd1461044c5780631bff78981461047757610376565b80630483f7a01461037b57806306fdde03146103a4578063095ea7b3146103cf57610376565b3661037657005b600080fd5b34801561038757600080fd5b506103a2600480360381019061039d9190613dbe565b610d6f565b005b3480156103b057600080fd5b506103b9610e0a565b6040516103c69190613e97565b60405180910390f35b3480156103db57600080fd5b506103f660048036038101906103f19190613eef565b610e9c565b6040516104039190613f3e565b60405180910390f35b34801561041857600080fd5b50610433600480360381019061042e9190613f59565b610ebf565b005b34801561044157600080fd5b5061044a61106c565b005b34801561045857600080fd5b5061046161119d565b60405161046e9190613f95565b60405180910390f35b34801561048357600080fd5b5061048c6111a7565b6040516104999190613f95565b60405180910390f35b3480156104ae57600080fd5b506104c960048036038101906104c49190613f59565b6111ad565b005b3480156104d757600080fd5b506104f260048036038101906104ed9190613fb0565b6111f9565b6040516104ff9190613f3e565b60405180910390f35b34801561051457600080fd5b5061051d611228565b60405161052a9190613f3e565b60405180910390f35b34801561053f57600080fd5b5061054861123b565b6040516105559190614062565b60405180910390f35b34801561056a57600080fd5b5061058560048036038101906105809190613f59565b611261565b005b34801561059357600080fd5b5061059c6112f9565b6040516105a99190613f95565b60405180910390f35b3480156105be57600080fd5b506105c7611391565b6040516105d49190614099565b60405180910390f35b3480156105e957600080fd5b5061060460048036038101906105ff9190613dbe565b61139a565b005b34801561061257600080fd5b5061062d60048036038101906106289190613eef565b611459565b60405161063a9190613f3e565b60405180910390f35b34801561064f57600080fd5b50610658611490565b6040516106659190613f95565b60405180910390f35b34801561067a57600080fd5b50610683611496565b005b34801561069157600080fd5b506106ac60048036038101906106a79190613f59565b611586565b6040516106b99190613f3e565b60405180910390f35b3480156106ce57600080fd5b506106d76115dc565b6040516106e49190613f95565b60405180910390f35b3480156106f957600080fd5b50610714600480360381019061070f9190613f59565b6115e2565b6040516107219190613f95565b60405180910390f35b34801561073657600080fd5b5061073f611687565b60405161074c9190613f3e565b60405180910390f35b34801561076157600080fd5b5061077c60048036038101906107779190613f59565b61169a565b6040516107899190613f95565b60405180910390f35b34801561079e57600080fd5b506107a76116e2565b005b3480156107b557600080fd5b506107d060048036038101906107cb91906140b4565b6116f6565b005b3480156107de57600080fd5b506107f960048036038101906107f49190613f59565b6117c2565b60405161080a959493929190614103565b60405180910390f35b34801561081f57600080fd5b50610828611879565b604051610836929190614156565b60405180910390f35b34801561084b57600080fd5b5061086660048036038101906108619190613f59565b61188b565b005b34801561087457600080fd5b5061087d611abe565b60405161088a9190613f95565b60405180910390f35b34801561089f57600080fd5b506108ba60048036038101906108b59190613f59565b611ac4565b005b3480156108c857600080fd5b506108d1611c08565b6040516108de919061417f565b60405180910390f35b3480156108f357600080fd5b506108fc611c32565b604051610909919061417f565b60405180910390f35b34801561091e57600080fd5b506109396004803603810190610934919061419a565b611c58565b005b34801561094757600080fd5b50610950611c7d565b60405161095d9190613e97565b60405180910390f35b34801561097257600080fd5b5061098d60048036038101906109889190613dbe565b611d0f565b005b34801561099b57600080fd5b506109b660048036038101906109b191906140b4565b611d25565b005b3480156109c457600080fd5b506109df60048036038101906109da9190613eef565b611dc0565b6040516109ec9190613f3e565b60405180910390f35b348015610a0157600080fd5b50610a0a611e37565b604051610a17919061417f565b60405180910390f35b348015610a2c57600080fd5b50610a476004803603810190610a429190613f59565b611e5d565b604051610a549190613f95565b60405180910390f35b348015610a6957600080fd5b50610a846004803603810190610a7f9190613eef565b611f02565b604051610a919190613f3e565b60405180910390f35b348015610aa657600080fd5b50610ac16004803603810190610abc91906140b4565b611f25565b005b348015610acf57600080fd5b50610aea6004803603810190610ae59190613f59565b611fc0565b604051610af79190613f3e565b60405180910390f35b348015610b0c57600080fd5b50610b276004803603810190610b2291906141c7565b611fe0565b005b348015610b3557600080fd5b50610b506004803603810190610b4b9190613f59565b612005565b604051610b5d9190613f3e565b60405180910390f35b348015610b7257600080fd5b50610b8d6004803603810190610b8891906141c7565b612025565b005b348015610b9b57600080fd5b50610bb66004803603810190610bb19190613dbe565b61218d565b005b348015610bc457600080fd5b50610bdf6004803603810190610bda91906141c7565b6122d0565b005b348015610bed57600080fd5b50610c086004803603810190610c039190613f59565b61233b565b005b348015610c1657600080fd5b50610c316004803603810190610c2c9190613dbe565b612387565b005b348015610c3f57600080fd5b50610c5a6004803603810190610c5591906141f4565b6123ea565b604051610c679190613f95565b60405180910390f35b348015610c7c57600080fd5b50610c976004803603810190610c92919061419a565b612471565b005b348015610ca557600080fd5b50610cae612496565b604051610cbb9190613f95565b60405180910390f35b348015610cd057600080fd5b50610ceb6004803603810190610ce69190613f59565b61249c565b005b348015610cf957600080fd5b50610d0261251f565b604051610d10929190614156565b60405180910390f35b348015610d2557600080fd5b50610d2e612531565b604051610d3b9190614255565b60405180910390f35b348015610d5057600080fd5b50610d59612557565b604051610d669190613f95565b60405180910390f35b610d7761255d565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a083836040518363ffffffff1660e01b8152600401610dd4929190614270565b600060405180830381600087803b158015610dee57600080fd5b505af1158015610e02573d6000803e3d6000fd5b505050505050565b606060038054610e19906142c8565b80601f0160208091040260200160405190810160405280929190818152602001828054610e45906142c8565b8015610e925780601f10610e6757610100808354040283529160200191610e92565b820191906000526020600020905b815481529060010190602001808311610e7557829003601f168201915b5050505050905090565b600080610ea76125db565b9050610eb48185856125e3565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4690614345565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610fc7919061417f565b602060405180830381865afa158015610fe4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611008919061437a565b6040518363ffffffff1660e01b81526004016110259291906143a7565b6020604051808303816000875af1158015611044573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061106891906143e5565b5050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146110fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f390614345565b60405180910390fd5b60004790506000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161114990614443565b60006040518083038185875af1925050503d8060008114611186576040519150601f19603f3d011682016040523d82523d6000602084013e61118b565b606091505b505090508061119957600080fd5b5050565b6000600254905090565b60135481565b6111b561255d565b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000806112046125db565b90506112118582856127ac565b61121c858585612838565b60019150509392505050565b600760169054906101000a900460ff1681565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61126961255d565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166344b6bd9e826040518263ffffffff1660e01b81526004016112c4919061417f565b600060405180830381600087803b1580156112de57600080fd5b505af11580156112f2573d6000803e3d6000fd5b5050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166385a6b3ae6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611368573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061138c919061437a565b905090565b60006012905090565b6113a261255d565b801515601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515036113fe57600080fd5b80601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000806114646125db565b905061148581858561147685896123ea565b6114809190614487565b6125e3565b600191505092915050565b60125481565b600760169054906101000a900460ff166114e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114dc90614529565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663807ab4f7336040518263ffffffff1660e01b8152600401611540919061456a565b6020604051808303816000875af115801561155f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061158391906143e5565b50565b6000601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600c5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231836040518263ffffffff1660e01b815260040161163f919061417f565b602060405180830381865afa15801561165c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611680919061437a565b9050919050565b600760159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116ea61255d565b6116f46000613118565b565b6116fe61255d565b620f4240821015611744576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173b906145d1565b60405180910390fd5b6207a12081101561178a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178190614663565b60405180910390fd5b670de0b6b3a76400008261179e9190614683565b600b81905550670de0b6b3a7640000816117b89190614683565b600c819055505050565b6000806000806000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fbcbc0f1876040518263ffffffff1660e01b8152600401611825919061417f565b60a060405180830381865afa158015611842573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061186691906146f2565b9450945094509450945091939590929450565b600e8060000154908060010154905082565b61189361255d565b60008190508073ffffffffffffffffffffffffffffffffffffffff16630483f7a08260016040518363ffffffff1660e01b81526004016118d4929190614270565b600060405180830381600087803b1580156118ee57600080fd5b505af1158015611902573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff16630483f7a03060016040518363ffffffff1660e01b8152600401611942929190614270565b600060405180830381600087803b15801561195c57600080fd5b505af1158015611970573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff16630483f7a0611998611c08565b60016040518363ffffffff1660e01b81526004016119b7929190614270565b600060405180830381600087803b1580156119d157600080fd5b505af11580156119e5573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff16630483f7a0600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016040518363ffffffff1660e01b8152600401611a47929190614270565b600060405180830381600087803b158015611a6157600080fd5b505af1158015611a75573d6000803e3d6000fd5b5050505080600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b600b5481565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4b90614345565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663497ec823600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401611bd392919061476d565b600060405180830381600087803b158015611bed57600080fd5b505af1158015611c01573d6000803e3d6000fd5b5050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611c6061255d565b80600760166101000a81548160ff02191690831515021790555050565b606060048054611c8c906142c8565b80601f0160208091040260200160405190810160405280929190818152602001828054611cb8906142c8565b8015611d055780601f10611cda57610100808354040283529160200191611d05565b820191906000526020600020905b815481529060010190602001808311611ce857829003601f168201915b5050505050905090565b611d1761255d565b611d2182826131de565b5050565b611d2d61255d565b60148183611d3b9190614487565b1115611d7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d73906147e2565b60405180910390fd5b604051806040016040528083815260200182815250601060008201518160000155602082015181600101559050508082611db69190614487565b6013819055505050565b600080611dcb6125db565b90506000611dd982866123ea565b905083811015611e1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1590614874565b60405180910390fd5b611e2b82868684036125e3565b60019250505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a8b9d240836040518263ffffffff1660e01b8152600401611eba919061417f565b602060405180830381865afa158015611ed7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611efb919061437a565b9050919050565b600080611f0d6125db565b9050611f1a818585612838565b600191505092915050565b611f2d61255d565b60148183611f3b9190614487565b1115611f7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f73906147e2565b60405180910390fd5b604051806040016040528083815260200182815250600e60008201518160000155602082015181600101559050508082611fb69190614487565b6012819055505050565b60146020528060005260406000206000915054906101000a900460ff1681565b611fe861255d565b670de0b6b3a764000081611ffc9190614683565b600a8190555050565b60166020528060005260406000206000915054906101000a900460ff1681565b61202d61255d565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd33600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856040518463ffffffff1660e01b81526004016120b093929190614894565b6020604051808303816000875af11580156120cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120f391906143e5565b9050801561218957600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ede6ad9c836040518263ffffffff1660e01b81526004016121569190613f95565b600060405180830381600087803b15801561217057600080fd5b505af1158015612184573d6000803e3d6000fd5b505050505b5050565b61219561255d565b801515601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503612227576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221e9061493d565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516122c49190613f3e565b60405180910390a25050565b6122d861255d565b620f424081101561231e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612315906149cf565b60405180910390fd5b670de0b6b3a7640000816123329190614683565b600d8190555050565b61234361255d565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61238f61255d565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61247961255d565b80600760156101000a81548160ff02191690831515021790555050565b600a5481565b6124a461255d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612513576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250a90614a61565b60405180910390fd5b61251c81613118565b50565b60108060000154908060010154905082565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d5481565b6125656125db565b73ffffffffffffffffffffffffffffffffffffffff16612583611c08565b73ffffffffffffffffffffffffffffffffffffffff16146125d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d090614acd565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612652576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264990614b5f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036126c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b890614bf1565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161279f9190613f95565b60405180910390a3505050565b60006127b884846123ea565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146128325781811015612824576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281b90614c5d565b60405180910390fd5b61283184848484036125e3565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036128a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289e90614cef565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612916576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290d90614d81565b60405180910390fd5b601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156129ba5750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156129d35750600760149054906101000a900460ff16155b15612bb857601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612a7457600c54811115612a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6690614ded565b60405180910390fd5b612b0d565b601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612b0c57600b54811115612b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0290614e59565b60405180910390fd5b5b5b601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612bb757600d54612b6a8361169a565b82612b759190614487565b1115612bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bad90614ec5565b60405180910390fd5b5b5b60008103612bd157612bcc838360006133a8565b613113565b6000612bdc3061169a565b90506000600a548210159050808015612c025750600760149054906101000a900460ff16155b8015612c1a5750600760159054906101000a900460ff165b8015612c6f5750601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015612cc55750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612d1b5750601560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d6e576001600760146101000a81548160ff02191690831515021790555060006013541115612d5257612d51600a5461361e565b5b6000600760146101000a81548160ff0219169083151502179055505b6000600760149054906101000a900460ff16159050601560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612e245750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612e2e57600090505b601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612ed25750601660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612edc57600090505b8015612fe2576000601660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612f5757606460135486612f469190614683565b612f509190614f14565b9050612fc7565b601660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612fc657606460125486612fb99190614683565b612fc39190614f14565b90505b5b8085612fd39190614f45565b9450612fe08730836133a8565b505b612fed8686866133a8565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc876130358961169a565b6040518363ffffffff1660e01b81526004016130529291906143a7565b600060405180830381600087803b15801561306c57600080fd5b505af192505050801561307d575060015b50600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc866130c68861169a565b6040518363ffffffff1660e01b81526004016130e39291906143a7565b600060405180830381600087803b1580156130fd57600080fd5b505af192505050801561310e575060015b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503613270576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161326790614feb565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550801561335e57600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a08360016040518363ffffffff1660e01b815260040161332b929190614270565b600060405180830381600087803b15801561334557600080fd5b505af1158015613359573d6000803e3d6000fd5b505050505b8015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613417576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161340e90614cef565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613486576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161347d90614d81565b60405180910390fd5b6134918383836139f8565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613517576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161350e9061507d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516136059190613f95565b60405180910390a36136188484846139fd565b50505050565b60006002601354601060000154846136369190614683565b6136409190614f14565b61364a9190614f14565b905060006002601354601060000154856136649190614683565b61366e9190614f14565b6136789190614f14565b90506000601354601060010154856136909190614683565b61369a9190614f14565b90506136a583613a02565b600047905060008111156136be576136bd8382613c45565b5b6136c782613a02565b6000479050600081905060008111156137aa576000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161372290614443565b60006040518083038185875af1925050503d806000811461375f576040519150601f19603f3d011682016040523d82523d6000602084013e613764565b606091505b50509050806137a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161379f906150e9565b60405180910390fd5b505b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401613807919061417f565b602060405180830381865afa158015613824573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613848919061437a565b9050600081905060008111156139ed576000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff1660e01b81526004016138d99291906143a7565b6020604051808303816000875af11580156138f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061391c91906143e5565b905080156139eb57600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ede6ad9c836040518263ffffffff1660e01b815260040161397f9190613f95565b600060405180830381600087803b15801561399957600080fd5b505af11580156139ad573d6000803e3d6000fd5b505050507f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc38a836040516139e2929190614156565b60405180910390a15b505b505050505050505050565b505050565b505050565b6000600267ffffffffffffffff811115613a1f57613a1e615109565b5b604051908082528060200260200182016040528015613a4d5781602001602082028036833780820191505090505b5090503081600081518110613a6557613a64615138565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613b0c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613b309190615167565b81600181518110613b4457613b43615138565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613bab30600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846125e3565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613c0f95949392919061528d565b600060405180830381600087803b158015613c2957600080fd5b505af1158015613c3d573d6000803e3d6000fd5b505050505050565b613c7230600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846125e3565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b8152600401613cd9969594939291906152e7565b60606040518083038185885af1158015613cf7573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613d1c9190615348565b5050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613d5382613d28565b9050919050565b613d6381613d48565b8114613d6e57600080fd5b50565b600081359050613d8081613d5a565b92915050565b60008115159050919050565b613d9b81613d86565b8114613da657600080fd5b50565b600081359050613db881613d92565b92915050565b60008060408385031215613dd557613dd4613d23565b5b6000613de385828601613d71565b9250506020613df485828601613da9565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613e38578082015181840152602081019050613e1d565b83811115613e47576000848401525b50505050565b6000601f19601f8301169050919050565b6000613e6982613dfe565b613e738185613e09565b9350613e83818560208601613e1a565b613e8c81613e4d565b840191505092915050565b60006020820190508181036000830152613eb18184613e5e565b905092915050565b6000819050919050565b613ecc81613eb9565b8114613ed757600080fd5b50565b600081359050613ee981613ec3565b92915050565b60008060408385031215613f0657613f05613d23565b5b6000613f1485828601613d71565b9250506020613f2585828601613eda565b9150509250929050565b613f3881613d86565b82525050565b6000602082019050613f536000830184613f2f565b92915050565b600060208284031215613f6f57613f6e613d23565b5b6000613f7d84828501613d71565b91505092915050565b613f8f81613eb9565b82525050565b6000602082019050613faa6000830184613f86565b92915050565b600080600060608486031215613fc957613fc8613d23565b5b6000613fd786828701613d71565b9350506020613fe886828701613d71565b9250506040613ff986828701613eda565b9150509250925092565b6000819050919050565b600061402861402361401e84613d28565b614003565b613d28565b9050919050565b600061403a8261400d565b9050919050565b600061404c8261402f565b9050919050565b61405c81614041565b82525050565b60006020820190506140776000830184614053565b92915050565b600060ff82169050919050565b6140938161407d565b82525050565b60006020820190506140ae600083018461408a565b92915050565b600080604083850312156140cb576140ca613d23565b5b60006140d985828601613eda565b92505060206140ea85828601613eda565b9150509250929050565b6140fd81613d48565b82525050565b600060a08201905061411860008301886140f4565b6141256020830187613f86565b6141326040830186613f86565b61413f6060830185613f86565b61414c6080830184613f86565b9695505050505050565b600060408201905061416b6000830185613f86565b6141786020830184613f86565b9392505050565b600060208201905061419460008301846140f4565b92915050565b6000602082840312156141b0576141af613d23565b5b60006141be84828501613da9565b91505092915050565b6000602082840312156141dd576141dc613d23565b5b60006141eb84828501613eda565b91505092915050565b6000806040838503121561420b5761420a613d23565b5b600061421985828601613d71565b925050602061422a85828601613d71565b9150509250929050565b600061423f8261402f565b9050919050565b61424f81614234565b82525050565b600060208201905061426a6000830184614246565b92915050565b600060408201905061428560008301856140f4565b6142926020830184613f2f565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806142e057607f821691505b6020821081036142f3576142f2614299565b5b50919050565b7f556e617574686f72697a65642100000000000000000000000000000000000000600082015250565b600061432f600d83613e09565b915061433a826142f9565b602082019050919050565b6000602082019050818103600083015261435e81614322565b9050919050565b60008151905061437481613ec3565b92915050565b6000602082840312156143905761438f613d23565b5b600061439e84828501614365565b91505092915050565b60006040820190506143bc60008301856140f4565b6143c96020830184613f86565b9392505050565b6000815190506143df81613d92565b92915050565b6000602082840312156143fb576143fa613d23565b5b6000614409848285016143d0565b91505092915050565b600081905092915050565b50565b600061442d600083614412565b91506144388261441d565b600082019050919050565b600061444e82614420565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061449282613eb9565b915061449d83613eb9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144d2576144d1614458565b5b828201905092915050565b7f436c61696d206e6f7420656e61626c6564000000000000000000000000000000600082015250565b6000614513601183613e09565b915061451e826144dd565b602082019050919050565b6000602082019050818103600083015261454281614506565b9050919050565b600061455482613d28565b9050919050565b61456481614549565b82525050565b600060208201905061457f600083018461455b565b92915050565b7f43616e6e6f7420736574206d6178627579206c6f776572207468616e20312520600082015250565b60006145bb602083613e09565b91506145c682614585565b602082019050919050565b600060208201905081810360008301526145ea816145ae565b9050919050565b7f43616e6e6f7420736574206d617873656c6c206c6f776572207468616e20302e60008201527f3525200000000000000000000000000000000000000000000000000000000000602082015250565b600061464d602383613e09565b9150614658826145f1565b604082019050919050565b6000602082019050818103600083015261467c81614640565b9050919050565b600061468e82613eb9565b915061469983613eb9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156146d2576146d1614458565b5b828202905092915050565b6000815190506146ec81613d5a565b92915050565b600080600080600060a0868803121561470e5761470d613d23565b5b600061471c888289016146dd565b955050602061472d88828901614365565b945050604061473e88828901614365565b935050606061474f88828901614365565b925050608061476088828901614365565b9150509295509295909350565b600060408201905061478260008301856140f4565b61478f60208301846140f4565b9392505050565b7f466565206d757374206265203c3d203230250000000000000000000000000000600082015250565b60006147cc601283613e09565b91506147d782614796565b602082019050919050565b600060208201905081810360008301526147fb816147bf565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061485e602583613e09565b915061486982614802565b604082019050919050565b6000602082019050818103600083015261488d81614851565b9050919050565b60006060820190506148a960008301866140f4565b6148b660208301856140f4565b6148c36040830184613f86565b949350505050565b7f4163636f756e7420697320616c7265616479207468652076616c7565206f662060008201527f276578636c756465642700000000000000000000000000000000000000000000602082015250565b6000614927602a83613e09565b9150614932826148cb565b604082019050919050565b600060208201905081810360008301526149568161491a565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f3125000000000000000000000000000000000000000000000000000000000000602082015250565b60006149b9602283613e09565b91506149c48261495d565b604082019050919050565b600060208201905081810360008301526149e8816149ac565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614a4b602683613e09565b9150614a56826149ef565b604082019050919050565b60006020820190508181036000830152614a7a81614a3e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614ab7602083613e09565b9150614ac282614a81565b602082019050919050565b60006020820190508181036000830152614ae681614aaa565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614b49602483613e09565b9150614b5482614aed565b604082019050919050565b60006020820190508181036000830152614b7881614b3c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614bdb602283613e09565b9150614be682614b7f565b604082019050919050565b60006020820190508181036000830152614c0a81614bce565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000614c47601d83613e09565b9150614c5282614c11565b602082019050919050565b60006020820190508181036000830152614c7681614c3a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614cd9602583613e09565b9150614ce482614c7d565b604082019050919050565b60006020820190508181036000830152614d0881614ccc565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614d6b602383613e09565b9150614d7682614d0f565b604082019050919050565b60006020820190508181036000830152614d9a81614d5e565b9050919050565b7f596f752061726520657863656564696e67206d617853656c6c416d6f756e7400600082015250565b6000614dd7601f83613e09565b9150614de282614da1565b602082019050919050565b60006020820190508181036000830152614e0681614dca565b9050919050565b7f596f752061726520657863656564696e67206d6178427579416d6f756e740000600082015250565b6000614e43601e83613e09565b9150614e4e82614e0d565b602082019050919050565b60006020820190508181036000830152614e7281614e36565b9050919050565b7f556e61626c6520746f20657863656564204d61782057616c6c65740000000000600082015250565b6000614eaf601b83613e09565b9150614eba82614e79565b602082019050919050565b60006020820190508181036000830152614ede81614ea2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614f1f82613eb9565b9150614f2a83613eb9565b925082614f3a57614f39614ee5565b5b828204905092915050565b6000614f5082613eb9565b9150614f5b83613eb9565b925082821015614f6e57614f6d614458565b5b828203905092915050565b7f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160008201527f6c72656164792073657420746f20746861742076616c75650000000000000000602082015250565b6000614fd5603883613e09565b9150614fe082614f79565b604082019050919050565b6000602082019050818103600083015261500481614fc8565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000615067602683613e09565b91506150728261500b565b604082019050919050565b600060208201905081810360008301526150968161505a565b9050919050565b7f4661696c656420746f2073656e642045544820746f206465762077616c6c6574600082015250565b60006150d3602083613e09565b91506150de8261509d565b602082019050919050565b60006020820190508181036000830152615102816150c6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006020828403121561517d5761517c613d23565b5b600061518b848285016146dd565b91505092915050565b6000819050919050565b60006151b96151b46151af84615194565b614003565b613eb9565b9050919050565b6151c98161519e565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61520481613d48565b82525050565b600061521683836151fb565b60208301905092915050565b6000602082019050919050565b600061523a826151cf565b61524481856151da565b935061524f836151eb565b8060005b83811015615280578151615267888261520a565b975061527283615222565b925050600181019050615253565b5085935050505092915050565b600060a0820190506152a26000830188613f86565b6152af60208301876151c0565b81810360408301526152c1818661522f565b90506152d060608301856140f4565b6152dd6080830184613f86565b9695505050505050565b600060c0820190506152fc60008301896140f4565b6153096020830188613f86565b61531660408301876151c0565b61532360608301866151c0565b61533060808301856140f4565b61533d60a0830184613f86565b979650505050505050565b60008060006060848603121561536157615360613d23565b5b600061536f86828701614365565b935050602061538086828701614365565b925050604061539186828701614365565b915050925092509256fea2646970667358221220007d4137bb1d4acb7c334d0a564b9ba232a4e121d6e34a08f74668fddb93d82464736f6c634300080f003360806040523480156200001157600080fd5b506040518060400160405280601581526020017f53706f745f4469766964656e645f547261636b657200000000000000000000008152506040518060400160405280601581526020017f53706f745f4469766964656e645f547261636b657200000000000000000000008152508181816003908162000091919062000416565b508060049081620000a3919062000416565b505050620000c6620000ba620000ce60201b60201c565b620000d660201b60201c565b5050620004fd565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200021e57607f821691505b602082108103620002345762000233620001d6565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200029e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200025f565b620002aa86836200025f565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620002f7620002f1620002eb84620002c2565b620002cc565b620002c2565b9050919050565b6000819050919050565b6200031383620002d6565b6200032b6200032282620002fe565b8484546200026c565b825550505050565b600090565b6200034262000333565b6200034f81848462000308565b505050565b5b8181101562000377576200036b60008262000338565b60018101905062000355565b5050565b601f821115620003c65762000390816200023a565b6200039b846200024f565b81016020851015620003ab578190505b620003c3620003ba856200024f565b83018262000354565b50505b505050565b600082821c905092915050565b6000620003eb60001984600802620003cb565b1980831691505092915050565b6000620004068383620003d8565b9150826002028217905092915050565b62000421826200019c565b67ffffffffffffffff8111156200043d576200043c620001a7565b5b62000449825462000205565b620004568282856200037b565b600060209050601f8311600181146200048e576000841562000479578287015190505b620004858582620003f8565b865550620004f5565b601f1984166200049e866200023a565b60005b82811015620004c857848901518255600182019150602085019450602081019050620004a1565b86831015620004e85784890151620004e4601f891682620003d8565b8355505b6001600288020188555050505b505050505050565b612edb806200050d6000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c8063715018a61161010f578063a8b9d240116100a2578063e30443bc11610071578063e30443bc146105e2578063ede6ad9c146105fe578063f2fde38b1461061a578063fbcbc0f114610636576101e5565b8063a8b9d24014610522578063a9059cbb14610552578063aafd847a14610582578063dd62ed3e146105b2576101e5565b806391b89fba116100de57806391b89fba1461048657806395d89b41146104b65780639e1e0661146104d4578063a457c2d7146104f2576101e5565b8063715018a614610410578063807ab4f71461041a57806385a6b3ae1461044a5780638da5cb5b14610468576101e5565b806327ce014711610187578063497ec82311610156578063497ec8231461038a5780634e7b827f146103a65780636a474002146103d657806370a08231146103e0576101e5565b806327ce0147146102f0578063313ce56714610320578063395093511461033e57806344b6bd9e1461036e576101e5565b80631162c4b6116101c35780631162c4b61461025457806318160ddd14610272578063226cfa3d1461029057806323b872dd146102c0576101e5565b80630483f7a0146101ea57806306fdde0314610206578063095ea7b314610224575b600080fd5b61020460048036038101906101ff919061205a565b61066a565b005b61020e6107a6565b60405161021b9190612133565b60405180910390f35b61023e6004803603810190610239919061218b565b610838565b60405161024b91906121da565b60405180910390f35b61025c61085b565b6040516102699190612204565b60405180910390f35b61027a610881565b604051610287919061222e565b60405180910390f35b6102aa60048036038101906102a59190612249565b61088b565b6040516102b7919061222e565b60405180910390f35b6102da60048036038101906102d59190612276565b6108a3565b6040516102e791906121da565b60405180910390f35b61030a60048036038101906103059190612249565b6108d2565b604051610317919061222e565b60405180910390f35b610328610975565b60405161033591906122e5565b60405180910390f35b6103586004803603810190610353919061218b565b61097e565b60405161036591906121da565b60405180910390f35b61038860048036038101906103839190612249565b6109b5565b005b6103a4600480360381019061039f9190612300565b610a01565b005b6103c060048036038101906103bb9190612249565b610b05565b6040516103cd91906121da565b60405180910390f35b6103de610b25565b005b6103fa60048036038101906103f59190612249565b610b31565b604051610407919061222e565b60405180910390f35b610418610b79565b005b610434600480360381019061042f919061237e565b610b8d565b60405161044191906121da565b60405180910390f35b610452610c54565b60405161045f919061222e565b60405180910390f35b610470610c5a565b60405161047d9190612204565b60405180910390f35b6104a0600480360381019061049b9190612249565b610c84565b6040516104ad919061222e565b60405180910390f35b6104be610c96565b6040516104cb9190612133565b60405180910390f35b6104dc610d28565b6040516104e9919061222e565b60405180910390f35b61050c6004803603810190610507919061218b565b610d2e565b60405161051991906121da565b60405180910390f35b61053c60048036038101906105379190612249565b610da5565b604051610549919061222e565b60405180910390f35b61056c6004803603810190610567919061218b565b610e08565b60405161057991906121da565b60405180910390f35b61059c60048036038101906105979190612249565b610e2b565b6040516105a9919061222e565b60405180910390f35b6105cc60048036038101906105c79190612300565b610e74565b6040516105d9919061222e565b60405180910390f35b6105fc60048036038101906105f7919061218b565b610efb565b005b610618600480360381019061061391906123ab565b610f63565b005b610634600480360381019061062f9190612249565b611045565b005b610650600480360381019061064b9190612249565b6110c8565b6040516106619594939291906123d8565b60405180910390f35b6106726111a8565b801515600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515036106ce57600080fd5b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060011515811515036107415761073c826000611226565b610754565b6107538261074e84610b31565b611226565b5b8173ffffffffffffffffffffffffffffffffffffffff167fa3c7c11b2e12c4144b09a7813f3393ba646392788638998c97be8da908cf04be8260405161079a91906121da565b60405180910390a25050565b6060600380546107b59061245a565b80601f01602080910402602001604051908101604052809291908181526020018280546107e19061245a565b801561082e5780601f106108035761010080835404028352916020019161082e565b820191906000526020600020905b81548152906001019060200180831161081157829003601f168201915b5050505050905090565b600080610843611293565b905061085081858561129b565b600191505092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b600d6020528060005260406000206000915090505481565b6000806108ae611293565b90506108bb858285611464565b6108c68585856114f0565b60019150509392505050565b600070010000000000000000000000000000000061096461095f600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461095161094c61093b88610b31565b60075461153690919063ffffffff16565b6115b0565b6115cd90919063ffffffff16565b611618565b61096e91906124e9565b9050919050565b60006012905090565b600080610989611293565b90506109aa81858561099b8589610e74565b6109a5919061251a565b61129b565b600191505092915050565b6109bd6111a8565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610a096111a8565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb838373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610a5f9190612204565b602060405180830381865afa158015610a7c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aa09190612585565b6040518363ffffffff1660e01b8152600401610abd9291906125b2565b6020604051808303816000875af1158015610adc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b0091906125f0565b505050565b600c6020528060005260406000206000915054906101000a900460ff1681565b610b2e3361162f565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b816111a8565b610b8b60006118b9565b565b6000610b976111a8565b6000610ba28361162f565b90506000811115610c495742600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff167f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d482604051610c37919061222e565b60405180910390a26001915050610c4f565b60009150505b919050565b600a5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000610c8f82610da5565b9050919050565b606060048054610ca59061245a565b80601f0160208091040260200160405190810160405280929190818152602001828054610cd19061245a565b8015610d1e5780601f10610cf357610100808354040283529160200191610d1e565b820191906000526020600020905b815481529060010190602001808311610d0157829003601f168201915b5050505050905090565b600b5481565b600080610d39611293565b90506000610d478286610e74565b905083811015610d8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d839061268f565b60405180910390fd5b610d99828686840361129b565b60019250505092915050565b6000610e01600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610df3846108d2565b61197f90919063ffffffff16565b9050919050565b600080610e13611293565b9050610e208185856114f0565b600191505092915050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610f036111a8565b600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610f5f57610f5e8282611226565b5b5050565b610f6b6111a8565b6000610f75610881565b11610f7f57600080fd5b600081111561104257610fd2610f93610881565b610fb77001000000000000000000000000000000008461153690919063ffffffff16565b610fc191906124e9565b6007546119c990919063ffffffff16565b6007819055503373ffffffffffffffffffffffffffffffffffffffff167fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d784541165118260405161101e919061222e565b60405180910390a261103b81600a546119c990919063ffffffff16565b600a819055505b50565b61104d6111a8565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b390612721565b60405180910390fd5b6110c5816118b9565b50565b60008060008060006110d8611f81565b86816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061111987610da5565b81602001818152505061112b876108d2565b816040018181525050600d60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548160600181815250508060000151816020015182604001518360600151600b54955095509550955095505091939590929450565b6111b0611293565b73ffffffffffffffffffffffffffffffffffffffff166111ce610c5a565b73ffffffffffffffffffffffffffffffffffffffff1614611224576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121b9061278d565b60405180910390fd5b565b600061123183610b31565b905080821115611262576000611250828461197f90919063ffffffff16565b905061125c8482611a27565b5061128e565b8082101561128d57600061127f838361197f90919063ffffffff16565b905061128b8482611ae6565b505b5b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361130a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113019061281f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611379576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611370906128b1565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611457919061222e565b60405180910390a3505050565b60006114708484610e74565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146114ea57818110156114dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d39061291d565b60405180910390fd5b6114e9848484840361129b565b5b50505050565b6000611531576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611528906129af565b60405180910390fd5b505050565b600080830361154857600090506115aa565b6000828461155691906129cf565b905082848261156591906124e9565b146115a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159c90612a9b565b60405180910390fd5b809150505b92915050565b60008082905060008112156115c457600080fd5b80915050919050565b60008082846115dc9190612ac5565b9050600083121580156115ef5750838112155b80611605575060008312801561160457508381125b5b61160e57600080fd5b8091505092915050565b60008082121561162757600080fd5b819050919050565b60008061163b83610da5565b905060008111156118ae5761169881600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119c990919063ffffffff16565b600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600b60008282546116ed919061251a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff167fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d8260405161173a919061222e565b60405180910390a26000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb85846040518363ffffffff1660e01b81526004016117a1929190612bb8565b6020604051808303816000875af11580156117c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117e491906125f0565b9050806118a45761183d82600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461197f90919063ffffffff16565b600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600b60008282546118929190612be1565b925050819055506000925050506118b4565b81925050506118b4565b60009150505b919050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006119c183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611ba5565b905092915050565b60008082846119d8919061251a565b905083811015611a1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1490612c61565b60405180910390fd5b8091505092915050565b611a318282611c09565b611a9f611a51611a4c8360075461153690919063ffffffff16565b6115b0565b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d5f90919063ffffffff16565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b611af08282611daa565b611b5e611b10611b0b8360075461153690919063ffffffff16565b6115b0565b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115cd90919063ffffffff16565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b6000838311158290611bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be49190612133565b60405180910390fd5b5060008385611bfc9190612be1565b9050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6f90612ccd565b60405180910390fd5b611c8460008383611f77565b8060026000828254611c96919061251a565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611d47919061222e565b60405180910390a3611d5b60008383611f7c565b5050565b6000808284611d6e9190612ced565b905060008312158015611d815750838113155b80611d975750600083128015611d9657508381135b5b611da057600080fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1090612df3565b60405180910390fd5b611e2582600083611f77565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611eab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea290612e85565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611f5e919061222e565b60405180910390a3611f7283600084611f7c565b505050565b505050565b505050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff1681526020016000815260200160008152602001600081525090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611fef82611fc4565b9050919050565b611fff81611fe4565b811461200a57600080fd5b50565b60008135905061201c81611ff6565b92915050565b60008115159050919050565b61203781612022565b811461204257600080fd5b50565b6000813590506120548161202e565b92915050565b6000806040838503121561207157612070611fbf565b5b600061207f8582860161200d565b925050602061209085828601612045565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156120d45780820151818401526020810190506120b9565b838111156120e3576000848401525b50505050565b6000601f19601f8301169050919050565b60006121058261209a565b61210f81856120a5565b935061211f8185602086016120b6565b612128816120e9565b840191505092915050565b6000602082019050818103600083015261214d81846120fa565b905092915050565b6000819050919050565b61216881612155565b811461217357600080fd5b50565b6000813590506121858161215f565b92915050565b600080604083850312156121a2576121a1611fbf565b5b60006121b08582860161200d565b92505060206121c185828601612176565b9150509250929050565b6121d481612022565b82525050565b60006020820190506121ef60008301846121cb565b92915050565b6121fe81611fe4565b82525050565b600060208201905061221960008301846121f5565b92915050565b61222881612155565b82525050565b6000602082019050612243600083018461221f565b92915050565b60006020828403121561225f5761225e611fbf565b5b600061226d8482850161200d565b91505092915050565b60008060006060848603121561228f5761228e611fbf565b5b600061229d8682870161200d565b93505060206122ae8682870161200d565b92505060406122bf86828701612176565b9150509250925092565b600060ff82169050919050565b6122df816122c9565b82525050565b60006020820190506122fa60008301846122d6565b92915050565b6000806040838503121561231757612316611fbf565b5b60006123258582860161200d565b92505060206123368582860161200d565b9150509250929050565b600061234b82611fc4565b9050919050565b61235b81612340565b811461236657600080fd5b50565b60008135905061237881612352565b92915050565b60006020828403121561239457612393611fbf565b5b60006123a284828501612369565b91505092915050565b6000602082840312156123c1576123c0611fbf565b5b60006123cf84828501612176565b91505092915050565b600060a0820190506123ed60008301886121f5565b6123fa602083018761221f565b612407604083018661221f565b612414606083018561221f565b612421608083018461221f565b9695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061247257607f821691505b6020821081036124855761248461242b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006124f482612155565b91506124ff83612155565b92508261250f5761250e61248b565b5b828204905092915050565b600061252582612155565b915061253083612155565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612565576125646124ba565b5b828201905092915050565b60008151905061257f8161215f565b92915050565b60006020828403121561259b5761259a611fbf565b5b60006125a984828501612570565b91505092915050565b60006040820190506125c760008301856121f5565b6125d4602083018461221f565b9392505050565b6000815190506125ea8161202e565b92915050565b60006020828403121561260657612605611fbf565b5b6000612614848285016125db565b91505092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006126796025836120a5565b91506126848261261d565b604082019050919050565b600060208201905081810360008301526126a88161266c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061270b6026836120a5565b9150612716826126af565b604082019050919050565b6000602082019050818103600083015261273a816126fe565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006127776020836120a5565b915061278282612741565b602082019050919050565b600060208201905081810360008301526127a68161276a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006128096024836120a5565b9150612814826127ad565b604082019050919050565b60006020820190508181036000830152612838816127fc565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061289b6022836120a5565b91506128a68261283f565b604082019050919050565b600060208201905081810360008301526128ca8161288e565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612907601d836120a5565b9150612912826128d1565b602082019050919050565b60006020820190508181036000830152612936816128fa565b9050919050565b7f53706f745f4469766964656e645f547261636b65723a204e6f207472616e736660008201527f65727320616c6c6f776564000000000000000000000000000000000000000000602082015250565b6000612999602b836120a5565b91506129a48261293d565b604082019050919050565b600060208201905081810360008301526129c88161298c565b9050919050565b60006129da82612155565b91506129e583612155565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612a1e57612a1d6124ba565b5b828202905092915050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000612a856021836120a5565b9150612a9082612a29565b604082019050919050565b60006020820190508181036000830152612ab481612a78565b9050919050565b6000819050919050565b6000612ad082612abb565b9150612adb83612abb565b9250817f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03831360008312151615612b1657612b156124ba565b5b817f8000000000000000000000000000000000000000000000000000000000000000038312600083121615612b4e57612b4d6124ba565b5b828201905092915050565b6000819050919050565b6000612b7e612b79612b7484611fc4565b612b59565b611fc4565b9050919050565b6000612b9082612b63565b9050919050565b6000612ba282612b85565b9050919050565b612bb281612b97565b82525050565b6000604082019050612bcd6000830185612ba9565b612bda602083018461221f565b9392505050565b6000612bec82612155565b9150612bf783612155565b925082821015612c0a57612c096124ba565b5b828203905092915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000612c4b601b836120a5565b9150612c5682612c15565b602082019050919050565b60006020820190508181036000830152612c7a81612c3e565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000612cb7601f836120a5565b9150612cc282612c81565b602082019050919050565b60006020820190508181036000830152612ce681612caa565b9050919050565b6000612cf882612abb565b9150612d0383612abb565b9250827f800000000000000000000000000000000000000000000000000000000000000001821260008412151615612d3e57612d3d6124ba565b5b827f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff018213600084121615612d7657612d756124ba565b5b828203905092915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612ddd6021836120a5565b9150612de882612d81565b604082019050919050565b60006020820190508181036000830152612e0c81612dd0565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612e6f6022836120a5565b9150612e7a82612e13565b604082019050919050565b60006020820190508181036000830152612e9e81612e62565b905091905056fea26469706673582212207b8c5ab6c8060744f50a7960dbbe87db54a9f42840a460afbb1e0b3421f420ad64736f6c634300080f0033

Deployed Bytecode

0x60806040526004361061036f5760003560e01c806388e765ff116101c6578063afa4f3b2116100f7578063dd62ed3e11610095578063f2fde38b1161006f578063f2fde38b14610cc4578063f66895a314610ced578063f887ea4014610d19578063f8b45b0514610d4457610376565b8063dd62ed3e14610c33578063e01af92c14610c70578063e2f4560514610c9957610376565b8063c0246668116100d1578063c024666814610b8f578063c18bc19514610bb8578063c851cc3214610be1578063d2fcc00114610c0a57610376565b8063afa4f3b214610b00578063b62496f514610b29578063bdf1436d14610b6657610376565b8063a11a168211610164578063a8b9d2401161013e578063a8b9d24014610a20578063a9059cbb14610a5d578063aa35822c14610a9a578063abb8105214610ac357610376565b8063a11a16821461098f578063a457c2d7146109b8578063a8aa1b31146109f557610376565b80638ea5220f116101a05780638ea5220f146108e757806392929a091461091257806395d89b411461093b5780639a7a23d61461096657610376565b806388e765ff146108685780638c9684f9146108935780638da5cb5b146108bc57610376565b8063342aa8b5116102a05780636ddd17131161023e57806379b447bd1161021857806379b447bd146107a95780637b510fe8146107d2578063864701a51461081357806388bdd9be1461083f57610376565b80636ddd17131461072a57806370a0823114610755578063715018a61461079257610376565b80634e71d92d1161027a5780634e71d92d1461066e5780634fbee1931461068557806366d602ae146106c25780636843cd84146106ed57610376565b8063342aa8b5146105dd578063395093511461060657806346469afb1461064357610376565b80631f53ac021161030d5780632c1f5216116102e75780632c1f5216146105335780632e1ab9041461055e57806330bb4cff14610587578063313ce567146105b257610376565b80631f53ac02146104a257806323b872dd146104cb5780632866ed211461050857610376565b80630a78097d116103495780630a78097d1461040c57806312b77e8a1461043557806318160ddd1461044c5780631bff78981461047757610376565b80630483f7a01461037b57806306fdde03146103a4578063095ea7b3146103cf57610376565b3661037657005b600080fd5b34801561038757600080fd5b506103a2600480360381019061039d9190613dbe565b610d6f565b005b3480156103b057600080fd5b506103b9610e0a565b6040516103c69190613e97565b60405180910390f35b3480156103db57600080fd5b506103f660048036038101906103f19190613eef565b610e9c565b6040516104039190613f3e565b60405180910390f35b34801561041857600080fd5b50610433600480360381019061042e9190613f59565b610ebf565b005b34801561044157600080fd5b5061044a61106c565b005b34801561045857600080fd5b5061046161119d565b60405161046e9190613f95565b60405180910390f35b34801561048357600080fd5b5061048c6111a7565b6040516104999190613f95565b60405180910390f35b3480156104ae57600080fd5b506104c960048036038101906104c49190613f59565b6111ad565b005b3480156104d757600080fd5b506104f260048036038101906104ed9190613fb0565b6111f9565b6040516104ff9190613f3e565b60405180910390f35b34801561051457600080fd5b5061051d611228565b60405161052a9190613f3e565b60405180910390f35b34801561053f57600080fd5b5061054861123b565b6040516105559190614062565b60405180910390f35b34801561056a57600080fd5b5061058560048036038101906105809190613f59565b611261565b005b34801561059357600080fd5b5061059c6112f9565b6040516105a99190613f95565b60405180910390f35b3480156105be57600080fd5b506105c7611391565b6040516105d49190614099565b60405180910390f35b3480156105e957600080fd5b5061060460048036038101906105ff9190613dbe565b61139a565b005b34801561061257600080fd5b5061062d60048036038101906106289190613eef565b611459565b60405161063a9190613f3e565b60405180910390f35b34801561064f57600080fd5b50610658611490565b6040516106659190613f95565b60405180910390f35b34801561067a57600080fd5b50610683611496565b005b34801561069157600080fd5b506106ac60048036038101906106a79190613f59565b611586565b6040516106b99190613f3e565b60405180910390f35b3480156106ce57600080fd5b506106d76115dc565b6040516106e49190613f95565b60405180910390f35b3480156106f957600080fd5b50610714600480360381019061070f9190613f59565b6115e2565b6040516107219190613f95565b60405180910390f35b34801561073657600080fd5b5061073f611687565b60405161074c9190613f3e565b60405180910390f35b34801561076157600080fd5b5061077c60048036038101906107779190613f59565b61169a565b6040516107899190613f95565b60405180910390f35b34801561079e57600080fd5b506107a76116e2565b005b3480156107b557600080fd5b506107d060048036038101906107cb91906140b4565b6116f6565b005b3480156107de57600080fd5b506107f960048036038101906107f49190613f59565b6117c2565b60405161080a959493929190614103565b60405180910390f35b34801561081f57600080fd5b50610828611879565b604051610836929190614156565b60405180910390f35b34801561084b57600080fd5b5061086660048036038101906108619190613f59565b61188b565b005b34801561087457600080fd5b5061087d611abe565b60405161088a9190613f95565b60405180910390f35b34801561089f57600080fd5b506108ba60048036038101906108b59190613f59565b611ac4565b005b3480156108c857600080fd5b506108d1611c08565b6040516108de919061417f565b60405180910390f35b3480156108f357600080fd5b506108fc611c32565b604051610909919061417f565b60405180910390f35b34801561091e57600080fd5b506109396004803603810190610934919061419a565b611c58565b005b34801561094757600080fd5b50610950611c7d565b60405161095d9190613e97565b60405180910390f35b34801561097257600080fd5b5061098d60048036038101906109889190613dbe565b611d0f565b005b34801561099b57600080fd5b506109b660048036038101906109b191906140b4565b611d25565b005b3480156109c457600080fd5b506109df60048036038101906109da9190613eef565b611dc0565b6040516109ec9190613f3e565b60405180910390f35b348015610a0157600080fd5b50610a0a611e37565b604051610a17919061417f565b60405180910390f35b348015610a2c57600080fd5b50610a476004803603810190610a429190613f59565b611e5d565b604051610a549190613f95565b60405180910390f35b348015610a6957600080fd5b50610a846004803603810190610a7f9190613eef565b611f02565b604051610a919190613f3e565b60405180910390f35b348015610aa657600080fd5b50610ac16004803603810190610abc91906140b4565b611f25565b005b348015610acf57600080fd5b50610aea6004803603810190610ae59190613f59565b611fc0565b604051610af79190613f3e565b60405180910390f35b348015610b0c57600080fd5b50610b276004803603810190610b2291906141c7565b611fe0565b005b348015610b3557600080fd5b50610b506004803603810190610b4b9190613f59565b612005565b604051610b5d9190613f3e565b60405180910390f35b348015610b7257600080fd5b50610b8d6004803603810190610b8891906141c7565b612025565b005b348015610b9b57600080fd5b50610bb66004803603810190610bb19190613dbe565b61218d565b005b348015610bc457600080fd5b50610bdf6004803603810190610bda91906141c7565b6122d0565b005b348015610bed57600080fd5b50610c086004803603810190610c039190613f59565b61233b565b005b348015610c1657600080fd5b50610c316004803603810190610c2c9190613dbe565b612387565b005b348015610c3f57600080fd5b50610c5a6004803603810190610c5591906141f4565b6123ea565b604051610c679190613f95565b60405180910390f35b348015610c7c57600080fd5b50610c976004803603810190610c92919061419a565b612471565b005b348015610ca557600080fd5b50610cae612496565b604051610cbb9190613f95565b60405180910390f35b348015610cd057600080fd5b50610ceb6004803603810190610ce69190613f59565b61249c565b005b348015610cf957600080fd5b50610d0261251f565b604051610d10929190614156565b60405180910390f35b348015610d2557600080fd5b50610d2e612531565b604051610d3b9190614255565b60405180910390f35b348015610d5057600080fd5b50610d59612557565b604051610d669190613f95565b60405180910390f35b610d7761255d565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a083836040518363ffffffff1660e01b8152600401610dd4929190614270565b600060405180830381600087803b158015610dee57600080fd5b505af1158015610e02573d6000803e3d6000fd5b505050505050565b606060038054610e19906142c8565b80601f0160208091040260200160405190810160405280929190818152602001828054610e45906142c8565b8015610e925780601f10610e6757610100808354040283529160200191610e92565b820191906000526020600020905b815481529060010190602001808311610e7557829003601f168201915b5050505050905090565b600080610ea76125db565b9050610eb48185856125e3565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4690614345565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610fc7919061417f565b602060405180830381865afa158015610fe4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611008919061437a565b6040518363ffffffff1660e01b81526004016110259291906143a7565b6020604051808303816000875af1158015611044573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061106891906143e5565b5050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146110fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f390614345565b60405180910390fd5b60004790506000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161114990614443565b60006040518083038185875af1925050503d8060008114611186576040519150601f19603f3d011682016040523d82523d6000602084013e61118b565b606091505b505090508061119957600080fd5b5050565b6000600254905090565b60135481565b6111b561255d565b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000806112046125db565b90506112118582856127ac565b61121c858585612838565b60019150509392505050565b600760169054906101000a900460ff1681565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61126961255d565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166344b6bd9e826040518263ffffffff1660e01b81526004016112c4919061417f565b600060405180830381600087803b1580156112de57600080fd5b505af11580156112f2573d6000803e3d6000fd5b5050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166385a6b3ae6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611368573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061138c919061437a565b905090565b60006012905090565b6113a261255d565b801515601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515036113fe57600080fd5b80601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000806114646125db565b905061148581858561147685896123ea565b6114809190614487565b6125e3565b600191505092915050565b60125481565b600760169054906101000a900460ff166114e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114dc90614529565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663807ab4f7336040518263ffffffff1660e01b8152600401611540919061456a565b6020604051808303816000875af115801561155f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061158391906143e5565b50565b6000601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600c5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231836040518263ffffffff1660e01b815260040161163f919061417f565b602060405180830381865afa15801561165c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611680919061437a565b9050919050565b600760159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116ea61255d565b6116f46000613118565b565b6116fe61255d565b620f4240821015611744576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173b906145d1565b60405180910390fd5b6207a12081101561178a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178190614663565b60405180910390fd5b670de0b6b3a76400008261179e9190614683565b600b81905550670de0b6b3a7640000816117b89190614683565b600c819055505050565b6000806000806000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fbcbc0f1876040518263ffffffff1660e01b8152600401611825919061417f565b60a060405180830381865afa158015611842573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061186691906146f2565b9450945094509450945091939590929450565b600e8060000154908060010154905082565b61189361255d565b60008190508073ffffffffffffffffffffffffffffffffffffffff16630483f7a08260016040518363ffffffff1660e01b81526004016118d4929190614270565b600060405180830381600087803b1580156118ee57600080fd5b505af1158015611902573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff16630483f7a03060016040518363ffffffff1660e01b8152600401611942929190614270565b600060405180830381600087803b15801561195c57600080fd5b505af1158015611970573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff16630483f7a0611998611c08565b60016040518363ffffffff1660e01b81526004016119b7929190614270565b600060405180830381600087803b1580156119d157600080fd5b505af11580156119e5573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff16630483f7a0600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016040518363ffffffff1660e01b8152600401611a47929190614270565b600060405180830381600087803b158015611a6157600080fd5b505af1158015611a75573d6000803e3d6000fd5b5050505080600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b600b5481565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4b90614345565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663497ec823600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401611bd392919061476d565b600060405180830381600087803b158015611bed57600080fd5b505af1158015611c01573d6000803e3d6000fd5b5050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611c6061255d565b80600760166101000a81548160ff02191690831515021790555050565b606060048054611c8c906142c8565b80601f0160208091040260200160405190810160405280929190818152602001828054611cb8906142c8565b8015611d055780601f10611cda57610100808354040283529160200191611d05565b820191906000526020600020905b815481529060010190602001808311611ce857829003601f168201915b5050505050905090565b611d1761255d565b611d2182826131de565b5050565b611d2d61255d565b60148183611d3b9190614487565b1115611d7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d73906147e2565b60405180910390fd5b604051806040016040528083815260200182815250601060008201518160000155602082015181600101559050508082611db69190614487565b6013819055505050565b600080611dcb6125db565b90506000611dd982866123ea565b905083811015611e1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1590614874565b60405180910390fd5b611e2b82868684036125e3565b60019250505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a8b9d240836040518263ffffffff1660e01b8152600401611eba919061417f565b602060405180830381865afa158015611ed7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611efb919061437a565b9050919050565b600080611f0d6125db565b9050611f1a818585612838565b600191505092915050565b611f2d61255d565b60148183611f3b9190614487565b1115611f7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f73906147e2565b60405180910390fd5b604051806040016040528083815260200182815250600e60008201518160000155602082015181600101559050508082611fb69190614487565b6012819055505050565b60146020528060005260406000206000915054906101000a900460ff1681565b611fe861255d565b670de0b6b3a764000081611ffc9190614683565b600a8190555050565b60166020528060005260406000206000915054906101000a900460ff1681565b61202d61255d565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd33600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856040518463ffffffff1660e01b81526004016120b093929190614894565b6020604051808303816000875af11580156120cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120f391906143e5565b9050801561218957600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ede6ad9c836040518263ffffffff1660e01b81526004016121569190613f95565b600060405180830381600087803b15801561217057600080fd5b505af1158015612184573d6000803e3d6000fd5b505050505b5050565b61219561255d565b801515601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503612227576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221e9061493d565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516122c49190613f3e565b60405180910390a25050565b6122d861255d565b620f424081101561231e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612315906149cf565b60405180910390fd5b670de0b6b3a7640000816123329190614683565b600d8190555050565b61234361255d565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61238f61255d565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61247961255d565b80600760156101000a81548160ff02191690831515021790555050565b600a5481565b6124a461255d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612513576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250a90614a61565b60405180910390fd5b61251c81613118565b50565b60108060000154908060010154905082565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d5481565b6125656125db565b73ffffffffffffffffffffffffffffffffffffffff16612583611c08565b73ffffffffffffffffffffffffffffffffffffffff16146125d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d090614acd565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612652576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264990614b5f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036126c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b890614bf1565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161279f9190613f95565b60405180910390a3505050565b60006127b884846123ea565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146128325781811015612824576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281b90614c5d565b60405180910390fd5b61283184848484036125e3565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036128a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289e90614cef565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612916576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290d90614d81565b60405180910390fd5b601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156129ba5750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156129d35750600760149054906101000a900460ff16155b15612bb857601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612a7457600c54811115612a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6690614ded565b60405180910390fd5b612b0d565b601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612b0c57600b54811115612b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0290614e59565b60405180910390fd5b5b5b601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612bb757600d54612b6a8361169a565b82612b759190614487565b1115612bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bad90614ec5565b60405180910390fd5b5b5b60008103612bd157612bcc838360006133a8565b613113565b6000612bdc3061169a565b90506000600a548210159050808015612c025750600760149054906101000a900460ff16155b8015612c1a5750600760159054906101000a900460ff165b8015612c6f5750601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015612cc55750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612d1b5750601560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d6e576001600760146101000a81548160ff02191690831515021790555060006013541115612d5257612d51600a5461361e565b5b6000600760146101000a81548160ff0219169083151502179055505b6000600760149054906101000a900460ff16159050601560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612e245750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612e2e57600090505b601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612ed25750601660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612edc57600090505b8015612fe2576000601660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612f5757606460135486612f469190614683565b612f509190614f14565b9050612fc7565b601660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612fc657606460125486612fb99190614683565b612fc39190614f14565b90505b5b8085612fd39190614f45565b9450612fe08730836133a8565b505b612fed8686866133a8565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc876130358961169a565b6040518363ffffffff1660e01b81526004016130529291906143a7565b600060405180830381600087803b15801561306c57600080fd5b505af192505050801561307d575060015b50600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc866130c68861169a565b6040518363ffffffff1660e01b81526004016130e39291906143a7565b600060405180830381600087803b1580156130fd57600080fd5b505af192505050801561310e575060015b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503613270576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161326790614feb565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550801561335e57600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630483f7a08360016040518363ffffffff1660e01b815260040161332b929190614270565b600060405180830381600087803b15801561334557600080fd5b505af1158015613359573d6000803e3d6000fd5b505050505b8015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613417576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161340e90614cef565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613486576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161347d90614d81565b60405180910390fd5b6134918383836139f8565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613517576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161350e9061507d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516136059190613f95565b60405180910390a36136188484846139fd565b50505050565b60006002601354601060000154846136369190614683565b6136409190614f14565b61364a9190614f14565b905060006002601354601060000154856136649190614683565b61366e9190614f14565b6136789190614f14565b90506000601354601060010154856136909190614683565b61369a9190614f14565b90506136a583613a02565b600047905060008111156136be576136bd8382613c45565b5b6136c782613a02565b6000479050600081905060008111156137aa576000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161372290614443565b60006040518083038185875af1925050503d806000811461375f576040519150601f19603f3d011682016040523d82523d6000602084013e613764565b606091505b50509050806137a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161379f906150e9565b60405180910390fd5b505b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401613807919061417f565b602060405180830381865afa158015613824573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613848919061437a565b9050600081905060008111156139ed576000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff1660e01b81526004016138d99291906143a7565b6020604051808303816000875af11580156138f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061391c91906143e5565b905080156139eb57600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ede6ad9c836040518263ffffffff1660e01b815260040161397f9190613f95565b600060405180830381600087803b15801561399957600080fd5b505af11580156139ad573d6000803e3d6000fd5b505050507f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc38a836040516139e2929190614156565b60405180910390a15b505b505050505050505050565b505050565b505050565b6000600267ffffffffffffffff811115613a1f57613a1e615109565b5b604051908082528060200260200182016040528015613a4d5781602001602082028036833780820191505090505b5090503081600081518110613a6557613a64615138565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613b0c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613b309190615167565b81600181518110613b4457613b43615138565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613bab30600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846125e3565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613c0f95949392919061528d565b600060405180830381600087803b158015613c2957600080fd5b505af1158015613c3d573d6000803e3d6000fd5b505050505050565b613c7230600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846125e3565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b8152600401613cd9969594939291906152e7565b60606040518083038185885af1158015613cf7573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613d1c9190615348565b5050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613d5382613d28565b9050919050565b613d6381613d48565b8114613d6e57600080fd5b50565b600081359050613d8081613d5a565b92915050565b60008115159050919050565b613d9b81613d86565b8114613da657600080fd5b50565b600081359050613db881613d92565b92915050565b60008060408385031215613dd557613dd4613d23565b5b6000613de385828601613d71565b9250506020613df485828601613da9565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613e38578082015181840152602081019050613e1d565b83811115613e47576000848401525b50505050565b6000601f19601f8301169050919050565b6000613e6982613dfe565b613e738185613e09565b9350613e83818560208601613e1a565b613e8c81613e4d565b840191505092915050565b60006020820190508181036000830152613eb18184613e5e565b905092915050565b6000819050919050565b613ecc81613eb9565b8114613ed757600080fd5b50565b600081359050613ee981613ec3565b92915050565b60008060408385031215613f0657613f05613d23565b5b6000613f1485828601613d71565b9250506020613f2585828601613eda565b9150509250929050565b613f3881613d86565b82525050565b6000602082019050613f536000830184613f2f565b92915050565b600060208284031215613f6f57613f6e613d23565b5b6000613f7d84828501613d71565b91505092915050565b613f8f81613eb9565b82525050565b6000602082019050613faa6000830184613f86565b92915050565b600080600060608486031215613fc957613fc8613d23565b5b6000613fd786828701613d71565b9350506020613fe886828701613d71565b9250506040613ff986828701613eda565b9150509250925092565b6000819050919050565b600061402861402361401e84613d28565b614003565b613d28565b9050919050565b600061403a8261400d565b9050919050565b600061404c8261402f565b9050919050565b61405c81614041565b82525050565b60006020820190506140776000830184614053565b92915050565b600060ff82169050919050565b6140938161407d565b82525050565b60006020820190506140ae600083018461408a565b92915050565b600080604083850312156140cb576140ca613d23565b5b60006140d985828601613eda565b92505060206140ea85828601613eda565b9150509250929050565b6140fd81613d48565b82525050565b600060a08201905061411860008301886140f4565b6141256020830187613f86565b6141326040830186613f86565b61413f6060830185613f86565b61414c6080830184613f86565b9695505050505050565b600060408201905061416b6000830185613f86565b6141786020830184613f86565b9392505050565b600060208201905061419460008301846140f4565b92915050565b6000602082840312156141b0576141af613d23565b5b60006141be84828501613da9565b91505092915050565b6000602082840312156141dd576141dc613d23565b5b60006141eb84828501613eda565b91505092915050565b6000806040838503121561420b5761420a613d23565b5b600061421985828601613d71565b925050602061422a85828601613d71565b9150509250929050565b600061423f8261402f565b9050919050565b61424f81614234565b82525050565b600060208201905061426a6000830184614246565b92915050565b600060408201905061428560008301856140f4565b6142926020830184613f2f565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806142e057607f821691505b6020821081036142f3576142f2614299565b5b50919050565b7f556e617574686f72697a65642100000000000000000000000000000000000000600082015250565b600061432f600d83613e09565b915061433a826142f9565b602082019050919050565b6000602082019050818103600083015261435e81614322565b9050919050565b60008151905061437481613ec3565b92915050565b6000602082840312156143905761438f613d23565b5b600061439e84828501614365565b91505092915050565b60006040820190506143bc60008301856140f4565b6143c96020830184613f86565b9392505050565b6000815190506143df81613d92565b92915050565b6000602082840312156143fb576143fa613d23565b5b6000614409848285016143d0565b91505092915050565b600081905092915050565b50565b600061442d600083614412565b91506144388261441d565b600082019050919050565b600061444e82614420565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061449282613eb9565b915061449d83613eb9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144d2576144d1614458565b5b828201905092915050565b7f436c61696d206e6f7420656e61626c6564000000000000000000000000000000600082015250565b6000614513601183613e09565b915061451e826144dd565b602082019050919050565b6000602082019050818103600083015261454281614506565b9050919050565b600061455482613d28565b9050919050565b61456481614549565b82525050565b600060208201905061457f600083018461455b565b92915050565b7f43616e6e6f7420736574206d6178627579206c6f776572207468616e20312520600082015250565b60006145bb602083613e09565b91506145c682614585565b602082019050919050565b600060208201905081810360008301526145ea816145ae565b9050919050565b7f43616e6e6f7420736574206d617873656c6c206c6f776572207468616e20302e60008201527f3525200000000000000000000000000000000000000000000000000000000000602082015250565b600061464d602383613e09565b9150614658826145f1565b604082019050919050565b6000602082019050818103600083015261467c81614640565b9050919050565b600061468e82613eb9565b915061469983613eb9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156146d2576146d1614458565b5b828202905092915050565b6000815190506146ec81613d5a565b92915050565b600080600080600060a0868803121561470e5761470d613d23565b5b600061471c888289016146dd565b955050602061472d88828901614365565b945050604061473e88828901614365565b935050606061474f88828901614365565b925050608061476088828901614365565b9150509295509295909350565b600060408201905061478260008301856140f4565b61478f60208301846140f4565b9392505050565b7f466565206d757374206265203c3d203230250000000000000000000000000000600082015250565b60006147cc601283613e09565b91506147d782614796565b602082019050919050565b600060208201905081810360008301526147fb816147bf565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061485e602583613e09565b915061486982614802565b604082019050919050565b6000602082019050818103600083015261488d81614851565b9050919050565b60006060820190506148a960008301866140f4565b6148b660208301856140f4565b6148c36040830184613f86565b949350505050565b7f4163636f756e7420697320616c7265616479207468652076616c7565206f662060008201527f276578636c756465642700000000000000000000000000000000000000000000602082015250565b6000614927602a83613e09565b9150614932826148cb565b604082019050919050565b600060208201905081810360008301526149568161491a565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f3125000000000000000000000000000000000000000000000000000000000000602082015250565b60006149b9602283613e09565b91506149c48261495d565b604082019050919050565b600060208201905081810360008301526149e8816149ac565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614a4b602683613e09565b9150614a56826149ef565b604082019050919050565b60006020820190508181036000830152614a7a81614a3e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614ab7602083613e09565b9150614ac282614a81565b602082019050919050565b60006020820190508181036000830152614ae681614aaa565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614b49602483613e09565b9150614b5482614aed565b604082019050919050565b60006020820190508181036000830152614b7881614b3c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614bdb602283613e09565b9150614be682614b7f565b604082019050919050565b60006020820190508181036000830152614c0a81614bce565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000614c47601d83613e09565b9150614c5282614c11565b602082019050919050565b60006020820190508181036000830152614c7681614c3a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614cd9602583613e09565b9150614ce482614c7d565b604082019050919050565b60006020820190508181036000830152614d0881614ccc565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614d6b602383613e09565b9150614d7682614d0f565b604082019050919050565b60006020820190508181036000830152614d9a81614d5e565b9050919050565b7f596f752061726520657863656564696e67206d617853656c6c416d6f756e7400600082015250565b6000614dd7601f83613e09565b9150614de282614da1565b602082019050919050565b60006020820190508181036000830152614e0681614dca565b9050919050565b7f596f752061726520657863656564696e67206d6178427579416d6f756e740000600082015250565b6000614e43601e83613e09565b9150614e4e82614e0d565b602082019050919050565b60006020820190508181036000830152614e7281614e36565b9050919050565b7f556e61626c6520746f20657863656564204d61782057616c6c65740000000000600082015250565b6000614eaf601b83613e09565b9150614eba82614e79565b602082019050919050565b60006020820190508181036000830152614ede81614ea2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614f1f82613eb9565b9150614f2a83613eb9565b925082614f3a57614f39614ee5565b5b828204905092915050565b6000614f5082613eb9565b9150614f5b83613eb9565b925082821015614f6e57614f6d614458565b5b828203905092915050565b7f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160008201527f6c72656164792073657420746f20746861742076616c75650000000000000000602082015250565b6000614fd5603883613e09565b9150614fe082614f79565b604082019050919050565b6000602082019050818103600083015261500481614fc8565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000615067602683613e09565b91506150728261500b565b604082019050919050565b600060208201905081810360008301526150968161505a565b9050919050565b7f4661696c656420746f2073656e642045544820746f206465762077616c6c6574600082015250565b60006150d3602083613e09565b91506150de8261509d565b602082019050919050565b60006020820190508181036000830152615102816150c6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006020828403121561517d5761517c613d23565b5b600061518b848285016146dd565b91505092915050565b6000819050919050565b60006151b96151b46151af84615194565b614003565b613eb9565b9050919050565b6151c98161519e565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61520481613d48565b82525050565b600061521683836151fb565b60208301905092915050565b6000602082019050919050565b600061523a826151cf565b61524481856151da565b935061524f836151eb565b8060005b83811015615280578151615267888261520a565b975061527283615222565b925050600181019050615253565b5085935050505092915050565b600060a0820190506152a26000830188613f86565b6152af60208301876151c0565b81810360408301526152c1818661522f565b90506152d060608301856140f4565b6152dd6080830184613f86565b9695505050505050565b600060c0820190506152fc60008301896140f4565b6153096020830188613f86565b61531660408301876151c0565b61532360608301866151c0565b61533060808301856140f4565b61533d60a0830184613f86565b979650505050505050565b60008060006060848603121561536157615360613d23565b5b600061536f86828701614365565b935050602061538086828701614365565b925050604061539186828701614365565b915050925092509256fea2646970667358221220007d4137bb1d4acb7c334d0a564b9ba232a4e121d6e34a08f74668fddb93d82464736f6c634300080f0033

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.