ETH Price: $2,879.11 (-10.64%)
Gas: 13 Gwei

Token

Aibot (AIBOT)
 

Overview

Max Total Supply

1,000,000 AIBOT

Holders

361 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.283654532288229532 AIBOT

Value
$0.00
0x5fc9678643004992e120fe8e4903b9052d455950
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Telegram bot, Ultra-Fast Frontrun Sniper, Optimize listening speed for different geographies, Multi-way node submission, maximizing the frontrun snipe win-rate.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Aibot

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : aibot.sol
/**
    AiBot
    AI-powered trading bot with a focus on speed!
    
    Website: aibot.app
    Telegram Chat: t.me/AibotSniper
    Telegram Bot: t.me/aibotsniper_bot
    Tutorials: docs.aibot.app
    Twitter: twitter.com/Aibot_App
**/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;
pragma experimental ABIEncoderV2;

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

/**
 * @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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _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);
    }
}

////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

/* pragma solidity ^0.8.0; */

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.0 (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);
}

/**
 * @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
 * 
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, 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;
        _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;
        }
        _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 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 {}
}



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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

////// src/IUniswapV2Pair.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint256);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (
            uint112 reserve0,
            uint112 reserve1,
            uint32 blockTimestampLast
        );

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

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

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

contract Aibot is ERC20, Ownable {

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    bool private swapping;
    
    address public communityWallet = 0xb2603E4d77Cd1712459Ed1e732667Ec78d4CF531;
    address public teamWallet = 0xBEc87305733dee1BCeA6aac8F5A634Fa3E576f13;
    address public useByHolderrWallet = 0x9432C5Fe2138f55A3C76A01B3C6f14940d5c489A;

    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    bool public limitsInEffect = true;
    
    bool public swapEnabled = true;

    bool public blacklistRenounced = false;

    // Anti-bot and anti-whale mappings and variables
    mapping(address => bool) blacklisted;

    uint256 public buyTotalFees = 5;
    uint256 public buyCommunityFee = 0;

    uint256 public buyUseByHolderFee = 3;
    uint256 public buyTeamFee = 2;


    uint256 public sellTotalFees = 5;
    uint256 public sellCommunityFee = 0;

    uint256 public sellUseByHolderFee = 3;
    uint256 public sellTeamFee = 2;


    uint256 public tokensForUseByHolder;
    uint256 public tokensForCommunity;
    uint256 public tokensForTeam;


    // exclude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public automatedMarketMakerPairs;


    mapping(address => bool) public preMigrationTransferrable;

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    constructor() ERC20("Aibot", "AIBOT") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 totalSupply = 1_000_000 * 1e18;

        maxTransactionAmount = 10_000 * 1e18; // 1%
        maxWallet = 10_000 * 1e18; // 1% 
        swapTokensAtAmount = (totalSupply * 20) / 10000; // 0.02% 
        
        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);

        preMigrationTransferrable[owner()] = true;

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}



    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.5%"
        );
        maxTransactionAmount = newNum * (10**18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 10) / 1000) / 1e18,
            "Cannot set maxWallet lower than 1.0%"
        );
        maxWallet = newNum * (10**18);
    }

    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function updateBuyFees(
        uint256 _CommunityFee,

        uint256 _teamFee,
        uint256 _userFee
    ) external onlyOwner {
        buyCommunityFee = _CommunityFee;

        buyTeamFee = _teamFee;
        buyUseByHolderFee = _userFee;
        buyTotalFees = buyCommunityFee  + buyTeamFee+buyUseByHolderFee;
        require(buyTotalFees <= 5, "Buy fees must be <= 5.");
    }

    function updateSellFees(
        uint256 _CommunityFee,
     
        uint256 _teamFee,
        uint256 _userFee
    ) external onlyOwner {
        sellCommunityFee = _CommunityFee;
     
        sellTeamFee = _teamFee;
        sellUseByHolderFee = _userFee;
        sellTotalFees = sellCommunityFee  + sellTeamFee + sellUseByHolderFee;
        require(sellTotalFees <= 5, "Sell fees must be <= 5.");
    }
  

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;

    }

    function setAutomatedMarketMakerPair(address pair, bool value)
        public
        onlyOwner
    {
        require(
            pair != uniswapV2Pair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

    }

    function updatecommunityWallet(address newcommunityWallet) external onlyOwner {
        communityWallet = newcommunityWallet;
    }

    function updateTeamWallet(address newWallet) external onlyOwner {
        teamWallet = newWallet;
    }


    function updateuseByHolderrWallet(address newWallet) external onlyOwner {
        useByHolderrWallet = newWallet;
    }

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

    function isBlacklisted(address account) public view returns (bool) {
        return blacklisted[account];
    }

    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");
        require(!blacklisted[from],"Sender blacklisted");
        require(!blacklisted[to],"Receiver blacklisted");


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

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {


                //when buy
                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                //when sell
                else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Sell transfer amount exceeds the maxTransactionAmount."
                    );
                } else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }
        uint256 contractTokenBalance = balanceOf(address(this));
        bool canSwap = contractTokenBalance >= swapTokensAtAmount;
        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;
            swapBack();
            swapping = false;
        }
        bool takeFee = !swapping;
        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }
        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount*sellTotalFees/100;
                tokensForTeam += (fees * sellTeamFee) / sellTotalFees;
                tokensForCommunity += (fees * sellCommunityFee) / sellTotalFees;
                tokensForUseByHolder += (fees * buyUseByHolderFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount*buyTotalFees/100;
                tokensForTeam += (fees * buyTeamFee) / buyTotalFees;
                tokensForCommunity += (fees * buyCommunityFee) / buyTotalFees;
                tokensForUseByHolder += (fees * sellUseByHolderFee) / buyTotalFees;
            }

            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }

            amount -= fees;
        }

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

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

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


    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForCommunity +
            tokensForTeam +
            tokensForUseByHolder;
        bool success;

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }

        uint256 amountToSwapForETH = contractBalance;

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance-initialETHBalance;

        uint256 ethForGroup= ethBalance*tokensForCommunity/totalTokensToSwap;
        uint256 ethForTeam = ethBalance*tokensForTeam/totalTokensToSwap;


        tokensForCommunity = 0;
        tokensForTeam = 0;
        tokensForUseByHolder = 0;

        if(ethForTeam > 0){
            (success, ) = address(teamWallet).call{value: ethForTeam}("");
        }
        if(ethForGroup> 0){
            (success, ) = address(communityWallet).call{value: ethForGroup}("");
        }
        if(address(this).balance > 0){
            (success, ) = address(useByHolderrWallet).call{value: address(this).balance}("");
        }
    }


    function withdrawStuckToken(address _token, address _to) external onlyOwner {
        require(_token != address(0), "_token address cannot be 0");
        uint256 _contractBalance = IERC20(_token).balanceOf(address(this));
        IERC20(_token).transfer(_to, _contractBalance);
    }

    function withdrawStuckEth(address toAddr) external onlyOwner {
        (bool success, ) = toAddr.call{
            value: address(this).balance
        } ("");
        require(success);
    }

    // @dev team renounce blacklist commands
    function renounceBlacklist() public onlyOwner {
        blacklistRenounced = true;
    }

    function blacklist(address _addr) public onlyOwner {
        require(!blacklistRenounced, "Team has revoked blacklist rights");
        require(
            _addr != address(uniswapV2Pair) && _addr != owner(), 
            "Cannot blacklist token's v2 router or v2 pool."
        );
        blacklisted[_addr] = true;
    }

    // @dev blacklist v3 pools; can unblacklist() down the road to suit project and community
    function blacklistLiquidityPool(address lpAddress) public onlyOwner {
        require(!blacklistRenounced, "Team has revoked blacklist rights");
        require(
            lpAddress != address(uniswapV2Pair) && lpAddress != owner(), 
            "Cannot blacklist token's v2 router or v2 pool."
        );
        blacklisted[lpAddress] = true;
    }

    // @dev unblacklist address; not affected by blacklistRenounced incase team wants to unblacklist v3 pools down the road
    function unblacklist(address _addr) public onlyOwner {
        blacklisted[_addr] = false;
    }
}

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

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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","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":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","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":[{"internalType":"address","name":"_addr","type":"address"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"lpAddress","type":"address"}],"name":"blacklistLiquidityPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"blacklistRenounced","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyCommunityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyUseByHolderFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"communityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","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":[{"internalType":"address","name":"","type":"address"}],"name":"preMigrationTransferrable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellCommunityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellUseByHolderFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForCommunity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTeam","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForUseByHolder","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"unblacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_CommunityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"},{"internalType":"uint256","name":"_userFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_CommunityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"},{"internalType":"uint256","name":"_userFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newcommunityWallet","type":"address"}],"name":"updatecommunityWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateuseByHolderrWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"useByHolderrWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c060405273b2603e4d77cd1712459ed1e732667ec78d4cf53160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073bec87305733dee1bcea6aac8f5a634fa3e576f1360075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550739432c5fe2138f55a3c76a01b3c6f14940d5c489a60085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600c5f6101000a81548160ff0219169083151502179055506001600c60016101000a81548160ff0219169083151502179055505f600c60026101000a81548160ff0219169083151502179055506005600e555f600f556003601055600260115560056012555f6013556003601455600260155534801562000181575f80fd5b506040518060400160405280600581526020017f4169626f740000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4149424f540000000000000000000000000000000000000000000000000000008152508160039081620001ff919062000caa565b50806004908162000211919062000caa565b5050506200023462000228620005b460201b60201c565b620005bb60201b60201c565b5f737a250d5630b4cf539739df2c5dacb4c659f2488d90506200025f8160016200067e60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002dd573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000303919062000df3565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000369573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200038f919062000df3565b6040518363ffffffff1660e01b8152600401620003ae92919062000e34565b6020604051808303815f875af1158015620003cb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620003f1919062000df3565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200043960a05160016200067e60201b60201c565b6200044e60a05160016200076560201b60201c565b5f69d3c21bcecceda1000000905069021e19e0c9bab240000060098190555069021e19e0c9bab2400000600b8190555061271060148262000490919062000e8c565b6200049c919062000f03565b600a81905550620004c4620004b6620007bd60201b60201c565b6001620007e560201b60201c565b620004d7306001620007e560201b60201c565b620004ec61dead6001620007e560201b60201c565b6200050e62000500620007bd60201b60201c565b60016200067e60201b60201c565b620005213060016200067e60201b60201c565b6200053661dead60016200067e60201b60201c565b6001601c5f6200054b620007bd60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550620005ac3382620008cc60201b60201c565b50506200108c565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200068e620005b460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006b4620007bd60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200070d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007049062000f98565b60405180910390fd5b80601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b80601b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620007f5620005b460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200081b620007bd60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000874576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200086b9062000f98565b60405180910390fd5b8060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200093d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009349062001006565b60405180910390fd5b620009505f838362000a3c60201b60201c565b8060025f82825462000963919062001026565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254620009b7919062001026565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a1d919062001071565b60405180910390a362000a385f838362000a4160201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000ac257607f821691505b60208210810362000ad85762000ad762000a7d565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000b3c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000aff565b62000b48868362000aff565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000b9262000b8c62000b868462000b60565b62000b69565b62000b60565b9050919050565b5f819050919050565b62000bad8362000b72565b62000bc562000bbc8262000b99565b84845462000b0b565b825550505050565b5f90565b62000bdb62000bcd565b62000be881848462000ba2565b505050565b5b8181101562000c0f5762000c035f8262000bd1565b60018101905062000bee565b5050565b601f82111562000c5e5762000c288162000ade565b62000c338462000af0565b8101602085101562000c43578190505b62000c5b62000c528562000af0565b83018262000bed565b50505b505050565b5f82821c905092915050565b5f62000c805f198460080262000c63565b1980831691505092915050565b5f62000c9a838362000c6f565b9150826002028217905092915050565b62000cb58262000a46565b67ffffffffffffffff81111562000cd15762000cd062000a50565b5b62000cdd825462000aaa565b62000cea82828562000c13565b5f60209050601f83116001811462000d20575f841562000d0b578287015190505b62000d17858262000c8d565b86555062000d86565b601f19841662000d308662000ade565b5f5b8281101562000d595784890151825560018201915060208501945060208101905062000d32565b8683101562000d79578489015162000d75601f89168262000c6f565b8355505b6001600288020188555050505b505050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000dbd8262000d92565b9050919050565b62000dcf8162000db1565b811462000dda575f80fd5b50565b5f8151905062000ded8162000dc4565b92915050565b5f6020828403121562000e0b5762000e0a62000d8e565b5b5f62000e1a8482850162000ddd565b91505092915050565b62000e2e8162000db1565b82525050565b5f60408201905062000e495f83018562000e23565b62000e58602083018462000e23565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000e988262000b60565b915062000ea58362000b60565b925082820262000eb58162000b60565b9150828204841483151762000ecf5762000ece62000e5f565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000f0f8262000b60565b915062000f1c8362000b60565b92508262000f2f5762000f2e62000ed6565b5b828204905092915050565b5f82825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f62000f8060208362000f3a565b915062000f8d8262000f4a565b602082019050919050565b5f6020820190508181035f83015262000fb18162000f72565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000fee601f8362000f3a565b915062000ffb8262000fb8565b602082019050919050565b5f6020820190508181035f8301526200101f8162000fe0565b9050919050565b5f620010328262000b60565b91506200103f8362000b60565b92508282019050808211156200105a576200105962000e5f565b5b92915050565b6200106b8162000b60565b82525050565b5f602082019050620010865f83018462001060565b92915050565b60805160a051615487620010d85f395f818161129e01528181611bd10152818161260b01526128ff01525f8181610eef01528181613db501528181613e940152613ebb01526154875ff3fe60806040526004361061039a575f3560e01c80638da5cb5b116101db578063c18bc19511610101578063dd62ed3e1161009f578063f8b45b051161006e578063f8b45b0514610d65578063f9f92be414610d8f578063fde83a3414610db7578063fe575a8714610de1576103a1565b8063dd62ed3e14610caf578063e19b282314610ceb578063e2f4560514610d13578063f2fde38b14610d3d576103a1565b8063d257b34f116100db578063d257b34f14610bf5578063d729715f14610c31578063d85ba06314610c5b578063db133f3414610c85576103a1565b8063c18bc19514610b79578063c757483914610ba1578063c8c8ebe414610bcb576103a1565b8063af15517211610179578063bc205ad311610148578063bc205ad314610ad7578063bf6146cd14610aff578063c024666814610b29578063c17b5b8c14610b51576103a1565b8063af15517214610a1f578063b53aee9714610a47578063b62496f514610a71578063b8fad14714610aad576103a1565b80639a7a23d6116101b55780639a7a23d6146109555780639c2e4ac61461097d578063a457c2d7146109a7578063a9059cbb146109e3576103a1565b80638da5cb5b146108d9578063924de9b71461090357806395d89b411461092b576103a1565b80634fbee193116102c0578063751039fc1161025e5780637cb332bb1161022d5780637cb332bb146108355780638095d5641461085d57806382e1170c14610885578063858f15d7146108af576103a1565b8063751039fc146107935780637571336a146107bd57806375e3661e146107e55780637ca8448a1461080d576103a1565b80636a486a8e1161029a5780636a486a8e146106ed5780636ddd17131461071757806370a0823114610741578063715018a61461077d576103a1565b80634fbee1931461067157806359927044146106ad5780635f189361146106d7576103a1565b806323b872dd116103385780633dc599ff116103075780633dc599ff146105b757806349bd5a5e146105e15780634a62bb651461060b5780634e29e52314610635576103a1565b806323b872dd146104ed57806328d7718114610529578063313ce56714610551578063395093511461057b576103a1565b806310d5de531161037457806310d5de53146104355780631694505e1461047157806318160ddd1461049b578063203e727e146104c5576103a1565b806305b9e960146103a557806306fdde03146103cf578063095ea7b3146103f9576103a1565b366103a157005b5f80fd5b3480156103b0575f80fd5b506103b9610e1d565b6040516103c69190613f63565b60405180910390f35b3480156103da575f80fd5b506103e3610e23565b6040516103f09190614006565b60405180910390f35b348015610404575f80fd5b5061041f600480360381019061041a91906140ae565b610eb3565b60405161042c9190614106565b60405180910390f35b348015610440575f80fd5b5061045b6004803603810190610456919061411f565b610ed0565b6040516104689190614106565b60405180910390f35b34801561047c575f80fd5b50610485610eed565b60405161049291906141a5565b60405180910390f35b3480156104a6575f80fd5b506104af610f11565b6040516104bc9190613f63565b60405180910390f35b3480156104d0575f80fd5b506104eb60048036038101906104e691906141be565b610f1a565b005b3480156104f8575f80fd5b50610513600480360381019061050e91906141e9565b611029565b6040516105209190614106565b60405180910390f35b348015610534575f80fd5b5061054f600480360381019061054a919061411f565b61111b565b005b34801561055c575f80fd5b506105656111da565b6040516105729190614254565b60405180910390f35b348015610586575f80fd5b506105a1600480360381019061059c91906140ae565b6111e2565b6040516105ae9190614106565b60405180910390f35b3480156105c2575f80fd5b506105cb611289565b6040516105d89190614106565b60405180910390f35b3480156105ec575f80fd5b506105f561129c565b604051610602919061427c565b60405180910390f35b348015610616575f80fd5b5061061f6112c0565b60405161062c9190614106565b60405180910390f35b348015610640575f80fd5b5061065b6004803603810190610656919061411f565b6112d2565b6040516106689190614106565b60405180910390f35b34801561067c575f80fd5b506106976004803603810190610692919061411f565b6112ef565b6040516106a49190614106565b60405180910390f35b3480156106b8575f80fd5b506106c1611341565b6040516106ce919061427c565b60405180910390f35b3480156106e2575f80fd5b506106eb611366565b005b3480156106f8575f80fd5b506107016113ff565b60405161070e9190613f63565b60405180910390f35b348015610722575f80fd5b5061072b611405565b6040516107389190614106565b60405180910390f35b34801561074c575f80fd5b506107676004803603810190610762919061411f565b611418565b6040516107749190613f63565b60405180910390f35b348015610788575f80fd5b5061079161145d565b005b34801561079e575f80fd5b506107a76114e4565b6040516107b49190614106565b60405180910390f35b3480156107c8575f80fd5b506107e360048036038101906107de91906142bf565b611581565b005b3480156107f0575f80fd5b5061080b6004803603810190610806919061411f565b611655565b005b348015610818575f80fd5b50610833600480360381019061082e919061411f565b611728565b005b348015610840575f80fd5b5061085b6004803603810190610856919061411f565b611819565b005b348015610868575f80fd5b50610883600480360381019061087e91906142fd565b6118d8565b005b348015610890575f80fd5b506108996119d7565b6040516108a6919061427c565b60405180910390f35b3480156108ba575f80fd5b506108c36119fc565b6040516108d09190613f63565b60405180910390f35b3480156108e4575f80fd5b506108ed611a02565b6040516108fa919061427c565b60405180910390f35b34801561090e575f80fd5b506109296004803603810190610924919061434d565b611a2a565b005b348015610936575f80fd5b5061093f611ac3565b60405161094c9190614006565b60405180910390f35b348015610960575f80fd5b5061097b600480360381019061097691906142bf565b611b53565b005b348015610988575f80fd5b50610991611c6b565b60405161099e9190613f63565b60405180910390f35b3480156109b2575f80fd5b506109cd60048036038101906109c891906140ae565b611c71565b6040516109da9190614106565b60405180910390f35b3480156109ee575f80fd5b50610a096004803603810190610a0491906140ae565b611d57565b604051610a169190614106565b60405180910390f35b348015610a2a575f80fd5b50610a456004803603810190610a40919061411f565b611d74565b005b348015610a52575f80fd5b50610a5b611e33565b604051610a689190613f63565b60405180910390f35b348015610a7c575f80fd5b50610a976004803603810190610a92919061411f565b611e39565b604051610aa49190614106565b60405180910390f35b348015610ab8575f80fd5b50610ac1611e56565b604051610ace9190613f63565b60405180910390f35b348015610ae2575f80fd5b50610afd6004803603810190610af89190614378565b611e5c565b005b348015610b0a575f80fd5b50610b13612042565b604051610b209190613f63565b60405180910390f35b348015610b34575f80fd5b50610b4f6004803603810190610b4a91906142bf565b612048565b005b348015610b5c575f80fd5b50610b776004803603810190610b7291906142fd565b61211c565b005b348015610b84575f80fd5b50610b9f6004803603810190610b9a91906141be565b61221b565b005b348015610bac575f80fd5b50610bb561232a565b604051610bc2919061427c565b60405180910390f35b348015610bd6575f80fd5b50610bdf61234f565b604051610bec9190613f63565b60405180910390f35b348015610c00575f80fd5b50610c1b6004803603810190610c1691906141be565b612355565b604051610c289190614106565b60405180910390f35b348015610c3c575f80fd5b50610c456124a9565b604051610c529190613f63565b60405180910390f35b348015610c66575f80fd5b50610c6f6124af565b604051610c7c9190613f63565b60405180910390f35b348015610c90575f80fd5b50610c996124b5565b604051610ca69190613f63565b60405180910390f35b348015610cba575f80fd5b50610cd56004803603810190610cd09190614378565b6124bb565b604051610ce29190613f63565b60405180910390f35b348015610cf6575f80fd5b50610d116004803603810190610d0c919061411f565b61253d565b005b348015610d1e575f80fd5b50610d2761272f565b604051610d349190613f63565b60405180910390f35b348015610d48575f80fd5b50610d636004803603810190610d5e919061411f565b612735565b005b348015610d70575f80fd5b50610d7961282b565b604051610d869190613f63565b60405180910390f35b348015610d9a575f80fd5b50610db56004803603810190610db0919061411f565b612831565b005b348015610dc2575f80fd5b50610dcb612a23565b604051610dd89190613f63565b60405180910390f35b348015610dec575f80fd5b50610e076004803603810190610e02919061411f565b612a29565b604051610e149190614106565b60405180910390f35b60145481565b606060038054610e32906143e3565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5e906143e3565b8015610ea95780601f10610e8057610100808354040283529160200191610ea9565b820191905f5260205f20905b815481529060010190602001808311610e8c57829003601f168201915b5050505050905090565b5f610ec6610ebf612a7b565b8484612a82565b6001905092915050565b601a602052805f5260405f205f915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f600254905090565b610f22612a7b565b73ffffffffffffffffffffffffffffffffffffffff16610f40611a02565b73ffffffffffffffffffffffffffffffffffffffff1614610f96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8d9061445d565b60405180910390fd5b670de0b6b3a76400006103e86005610fac610f11565b610fb691906144a8565b610fc09190614516565b610fca9190614516565b81101561100c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611003906145b6565b60405180910390fd5b670de0b6b3a76400008161102091906144a8565b60098190555050565b5f611035848484612c45565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f61107c612a7b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156110fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f290614644565b60405180910390fd5b61110f85611107612a7b565b858403612a82565b60019150509392505050565b611123612a7b565b73ffffffffffffffffffffffffffffffffffffffff16611141611a02565b73ffffffffffffffffffffffffffffffffffffffff1614611197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118e9061445d565b60405180910390fd5b8060085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f6012905090565b5f61127f6111ee612a7b565b848460015f6111fb612a7b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461127a9190614662565b612a82565b6001905092915050565b600c60029054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b600c5f9054906101000a900460ff1681565b601c602052805f5260405f205f915054906101000a900460ff1681565b5f60195f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61136e612a7b565b73ffffffffffffffffffffffffffffffffffffffff1661138c611a02565b73ffffffffffffffffffffffffffffffffffffffff16146113e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d99061445d565b60405180910390fd5b6001600c60026101000a81548160ff021916908315150217905550565b60125481565b600c60019054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b611465612a7b565b73ffffffffffffffffffffffffffffffffffffffff16611483611a02565b73ffffffffffffffffffffffffffffffffffffffff16146114d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d09061445d565b60405180910390fd5b6114e25f6136de565b565b5f6114ed612a7b565b73ffffffffffffffffffffffffffffffffffffffff1661150b611a02565b73ffffffffffffffffffffffffffffffffffffffff1614611561576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115589061445d565b60405180910390fd5b5f600c5f6101000a81548160ff0219169083151502179055506001905090565b611589612a7b565b73ffffffffffffffffffffffffffffffffffffffff166115a7611a02565b73ffffffffffffffffffffffffffffffffffffffff16146115fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f49061445d565b60405180910390fd5b80601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b61165d612a7b565b73ffffffffffffffffffffffffffffffffffffffff1661167b611a02565b73ffffffffffffffffffffffffffffffffffffffff16146116d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c89061445d565b60405180910390fd5b5f600d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b611730612a7b565b73ffffffffffffffffffffffffffffffffffffffff1661174e611a02565b73ffffffffffffffffffffffffffffffffffffffff16146117a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179b9061445d565b60405180910390fd5b5f8173ffffffffffffffffffffffffffffffffffffffff16476040516117c9906146c2565b5f6040518083038185875af1925050503d805f8114611803576040519150601f19603f3d011682016040523d82523d5f602084013e611808565b606091505b5050905080611815575f80fd5b5050565b611821612a7b565b73ffffffffffffffffffffffffffffffffffffffff1661183f611a02565b73ffffffffffffffffffffffffffffffffffffffff1614611895576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188c9061445d565b60405180910390fd5b8060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6118e0612a7b565b73ffffffffffffffffffffffffffffffffffffffff166118fe611a02565b73ffffffffffffffffffffffffffffffffffffffff1614611954576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194b9061445d565b60405180910390fd5b82600f819055508160118190555080601081905550601054601154600f5461197c9190614662565b6119869190614662565b600e819055506005600e5411156119d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c990614720565b60405180910390fd5b505050565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60165481565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611a32612a7b565b73ffffffffffffffffffffffffffffffffffffffff16611a50611a02565b73ffffffffffffffffffffffffffffffffffffffff1614611aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9d9061445d565b60405180910390fd5b80600c60016101000a81548160ff02191690831515021790555050565b606060048054611ad2906143e3565b80601f0160208091040260200160405190810160405280929190818152602001828054611afe906143e3565b8015611b495780601f10611b2057610100808354040283529160200191611b49565b820191905f5260205f20905b815481529060010190602001808311611b2c57829003601f168201915b5050505050905090565b611b5b612a7b565b73ffffffffffffffffffffffffffffffffffffffff16611b79611a02565b73ffffffffffffffffffffffffffffffffffffffff1614611bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc69061445d565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c54906147ae565b60405180910390fd5b611c6782826137a1565b5050565b60115481565b5f8060015f611c7e612a7b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015611d38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2f9061483c565b60405180910390fd5b611d4c611d43612a7b565b85858403612a82565b600191505092915050565b5f611d6a611d63612a7b565b8484612c45565b6001905092915050565b611d7c612a7b565b73ffffffffffffffffffffffffffffffffffffffff16611d9a611a02565b73ffffffffffffffffffffffffffffffffffffffff1614611df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de79061445d565b60405180910390fd5b8060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60135481565b601b602052805f5260405f205f915054906101000a900460ff1681565b600f5481565b611e64612a7b565b73ffffffffffffffffffffffffffffffffffffffff16611e82611a02565b73ffffffffffffffffffffffffffffffffffffffff1614611ed8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecf9061445d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3d906148a4565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611f80919061427c565b602060405180830381865afa158015611f9b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fbf91906148d6565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401611ffc929190614901565b6020604051808303815f875af1158015612018573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061203c919061493c565b50505050565b60175481565b612050612a7b565b73ffffffffffffffffffffffffffffffffffffffff1661206e611a02565b73ffffffffffffffffffffffffffffffffffffffff16146120c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120bb9061445d565b60405180910390fd5b8060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b612124612a7b565b73ffffffffffffffffffffffffffffffffffffffff16612142611a02565b73ffffffffffffffffffffffffffffffffffffffff1614612198576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218f9061445d565b60405180910390fd5b8260138190555081601581905550806014819055506014546015546013546121c09190614662565b6121ca9190614662565b60128190555060056012541115612216576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220d906149b1565b60405180910390fd5b505050565b612223612a7b565b73ffffffffffffffffffffffffffffffffffffffff16612241611a02565b73ffffffffffffffffffffffffffffffffffffffff1614612297576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228e9061445d565b60405180910390fd5b670de0b6b3a76400006103e8600a6122ad610f11565b6122b791906144a8565b6122c19190614516565b6122cb9190614516565b81101561230d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230490614a3f565b60405180910390fd5b670de0b6b3a76400008161232191906144a8565b600b8190555050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60095481565b5f61235e612a7b565b73ffffffffffffffffffffffffffffffffffffffff1661237c611a02565b73ffffffffffffffffffffffffffffffffffffffff16146123d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c99061445d565b60405180910390fd5b620186a060016123e0610f11565b6123ea91906144a8565b6123f49190614516565b821015612436576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242d90614acd565b60405180910390fd5b6103e86005612443610f11565b61244d91906144a8565b6124579190614516565b821115612499576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249090614b5b565b60405180910390fd5b81600a8190555060019050919050565b60155481565b600e5481565b60105481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b612545612a7b565b73ffffffffffffffffffffffffffffffffffffffff16612563611a02565b73ffffffffffffffffffffffffffffffffffffffff16146125b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b09061445d565b60405180910390fd5b600c60029054906101000a900460ff1615612609576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260090614be9565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141580156126985750612668611a02565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b6126d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ce90614c77565b60405180910390fd5b6001600d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b600a5481565b61273d612a7b565b73ffffffffffffffffffffffffffffffffffffffff1661275b611a02565b73ffffffffffffffffffffffffffffffffffffffff16146127b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a89061445d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361281f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281690614d05565b60405180910390fd5b612828816136de565b50565b600b5481565b612839612a7b565b73ffffffffffffffffffffffffffffffffffffffff16612857611a02565b73ffffffffffffffffffffffffffffffffffffffff16146128ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a49061445d565b60405180910390fd5b600c60029054906101000a900460ff16156128fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f490614be9565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415801561298c575061295c611a02565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b6129cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c290614c77565b60405180910390fd5b6001600d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60185481565b5f600d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612af0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae790614d93565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5590614e21565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612c389190613f63565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612cb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612caa90614eaf565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612d21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1890614f3d565b60405180910390fd5b600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615612dab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da290614fa5565b60405180910390fd5b600d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615612e35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e2c9061500d565b60405180910390fd5b5f8103612e4c57612e4783835f6137f9565b6136d9565b600c5f9054906101000a900460ff161561324157612e68611a02565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612ed65750612ea6611a02565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612f0e57505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612f48575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612f615750600560149054906101000a900460ff16155b1561324057601b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156130035750601a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156130aa5760095481111561304d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130449061509b565b60405180910390fd5b600b5461305983611418565b826130649190614662565b11156130a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309c90615103565b60405180910390fd5b61323f565b601b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156131475750601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561319657600954811115613191576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161318890615191565b60405180910390fd5b61323e565b601a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661323d57600b546131f083611418565b826131fb9190614662565b111561323c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161323390615103565b60405180910390fd5b5b5b5b5b5b5f61324b30611418565b90505f600a54821015905080801561326f5750600c60019054906101000a900460ff165b80156132885750600560149054906101000a900460ff16155b80156132db5750601b5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b801561332e575060195f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015613381575060195f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156133c4576001600560146101000a81548160ff0219169083151502179055506133a9613a6e565b5f600560146101000a81548160ff0219169083151502179055505b5f600560149054906101000a900460ff1615905060195f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680613473575060195f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b1561347c575f90505b5f81156136c957601b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156134da57505f601254115b15613596576064601254866134ef91906144a8565b6134f99190614516565b90506012546015548261350c91906144a8565b6135169190614516565b60185f8282546135269190614662565b925050819055506012546013548261353e91906144a8565b6135489190614516565b60175f8282546135589190614662565b925050819055506012546010548261357091906144a8565b61357a9190614516565b60165f82825461358a9190614662565b925050819055506136a6565b601b5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156135ed57505f600e54115b156136a5576064600e548661360291906144a8565b61360c9190614516565b9050600e546011548261361f91906144a8565b6136299190614516565b60185f8282546136399190614662565b92505081905550600e54600f548261365191906144a8565b61365b9190614516565b60175f82825461366b9190614662565b92505081905550600e546014548261368391906144a8565b61368d9190614516565b60165f82825461369d9190614662565b925050819055505b5b5f8111156136ba576136b98730836137f9565b5b80856136c691906151af565b94505b6136d48787876137f9565b505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613867576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161385e90614eaf565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036138d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138cc90614f3d565b60405180910390fd5b6138e0838383613d0e565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015613963576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161395a90615252565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546139f19190614662565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613a559190613f63565b60405180910390a3613a68848484613d13565b50505050565b5f613a7830611418565b90505f601654601854601754613a8e9190614662565b613a989190614662565b90505f80831480613aa857505f82145b15613ab557505050613d0c565b6014600a54613ac491906144a8565b831115613add576014600a54613ada91906144a8565b92505b5f8390505f479050613aee82613d18565b5f8147613afb91906151af565b90505f8560175483613b0d91906144a8565b613b179190614516565b90505f8660185484613b2991906144a8565b613b339190614516565b90505f6017819055505f6018819055505f6016819055505f811115613bdd5760075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681604051613b97906146c2565b5f6040518083038185875af1925050503d805f8114613bd1576040519150601f19603f3d011682016040523d82523d5f602084013e613bd6565b606091505b5050809650505b5f821115613c705760065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613c2a906146c2565b5f6040518083038185875af1925050503d805f8114613c64576040519150601f19603f3d011682016040523d82523d5f602084013e613c69565b606091505b5050809650505b5f471115613d035760085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613cbd906146c2565b5f6040518083038185875af1925050503d805f8114613cf7576040519150601f19603f3d011682016040523d82523d5f602084013e613cfc565b606091505b5050809650505b50505050505050505b565b505050565b505050565b5f600267ffffffffffffffff811115613d3457613d33615270565b5b604051908082528060200260200182016040528015613d625781602001602082028036833780820191505090505b50905030815f81518110613d7957613d7861529d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613e1c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613e4091906152de565b81600181518110613e5457613e5361529d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613eb9307f000000000000000000000000000000000000000000000000000000000000000084612a82565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401613f1a9594939291906153f9565b5f604051808303815f87803b158015613f31575f80fd5b505af1158015613f43573d5f803e3d5ffd5b505050505050565b5f819050919050565b613f5d81613f4b565b82525050565b5f602082019050613f765f830184613f54565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015613fb3578082015181840152602081019050613f98565b5f8484015250505050565b5f601f19601f8301169050919050565b5f613fd882613f7c565b613fe28185613f86565b9350613ff2818560208601613f96565b613ffb81613fbe565b840191505092915050565b5f6020820190508181035f83015261401e8184613fce565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6140538261402a565b9050919050565b61406381614049565b811461406d575f80fd5b50565b5f8135905061407e8161405a565b92915050565b61408d81613f4b565b8114614097575f80fd5b50565b5f813590506140a881614084565b92915050565b5f80604083850312156140c4576140c3614026565b5b5f6140d185828601614070565b92505060206140e28582860161409a565b9150509250929050565b5f8115159050919050565b614100816140ec565b82525050565b5f6020820190506141195f8301846140f7565b92915050565b5f6020828403121561413457614133614026565b5b5f61414184828501614070565b91505092915050565b5f819050919050565b5f61416d6141686141638461402a565b61414a565b61402a565b9050919050565b5f61417e82614153565b9050919050565b5f61418f82614174565b9050919050565b61419f81614185565b82525050565b5f6020820190506141b85f830184614196565b92915050565b5f602082840312156141d3576141d2614026565b5b5f6141e08482850161409a565b91505092915050565b5f805f60608486031215614200576141ff614026565b5b5f61420d86828701614070565b935050602061421e86828701614070565b925050604061422f8682870161409a565b9150509250925092565b5f60ff82169050919050565b61424e81614239565b82525050565b5f6020820190506142675f830184614245565b92915050565b61427681614049565b82525050565b5f60208201905061428f5f83018461426d565b92915050565b61429e816140ec565b81146142a8575f80fd5b50565b5f813590506142b981614295565b92915050565b5f80604083850312156142d5576142d4614026565b5b5f6142e285828601614070565b92505060206142f3858286016142ab565b9150509250929050565b5f805f6060848603121561431457614313614026565b5b5f6143218682870161409a565b93505060206143328682870161409a565b92505060406143438682870161409a565b9150509250925092565b5f6020828403121561436257614361614026565b5b5f61436f848285016142ab565b91505092915050565b5f806040838503121561438e5761438d614026565b5b5f61439b85828601614070565b92505060206143ac85828601614070565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806143fa57607f821691505b60208210810361440d5761440c6143b6565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f614447602083613f86565b915061445282614413565b602082019050919050565b5f6020820190508181035f8301526144748161443b565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6144b282613f4b565b91506144bd83613f4b565b92508282026144cb81613f4b565b915082820484148315176144e2576144e161447b565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61452082613f4b565b915061452b83613f4b565b92508261453b5761453a6144e9565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e74205f8201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b5f6145a0602f83613f86565b91506145ab82614546565b604082019050919050565b5f6020820190508181035f8301526145cd81614594565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f61462e602883613f86565b9150614639826145d4565b604082019050919050565b5f6020820190508181035f83015261465b81614622565b9050919050565b5f61466c82613f4b565b915061467783613f4b565b925082820190508082111561468f5761468e61447b565b5b92915050565b5f81905092915050565b50565b5f6146ad5f83614695565b91506146b88261469f565b5f82019050919050565b5f6146cc826146a2565b9150819050919050565b7f4275792066656573206d757374206265203c3d20352e000000000000000000005f82015250565b5f61470a601683613f86565b9150614715826146d6565b602082019050919050565b5f6020820190508181035f830152614737816146fe565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f614798603983613f86565b91506147a38261473e565b604082019050919050565b5f6020820190508181035f8301526147c58161478c565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f614826602583613f86565b9150614831826147cc565b604082019050919050565b5f6020820190508181035f8301526148538161481a565b9050919050565b7f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000005f82015250565b5f61488e601a83613f86565b91506148998261485a565b602082019050919050565b5f6020820190508181035f8301526148bb81614882565b9050919050565b5f815190506148d081614084565b92915050565b5f602082840312156148eb576148ea614026565b5b5f6148f8848285016148c2565b91505092915050565b5f6040820190506149145f83018561426d565b6149216020830184613f54565b9392505050565b5f8151905061493681614295565b92915050565b5f6020828403121561495157614950614026565b5b5f61495e84828501614928565b91505092915050565b7f53656c6c2066656573206d757374206265203c3d20352e0000000000000000005f82015250565b5f61499b601783613f86565b91506149a682614967565b602082019050919050565b5f6020820190508181035f8301526149c88161498f565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f312e302500000000000000000000000000000000000000000000000000000000602082015250565b5f614a29602483613f86565b9150614a34826149cf565b604082019050919050565b5f6020820190508181035f830152614a5681614a1d565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e5f8201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b5f614ab7603583613f86565b9150614ac282614a5d565b604082019050919050565b5f6020820190508181035f830152614ae481614aab565b9050919050565b7f5377617020616d6f756e742063616e6e6f7420626520686967686572207468615f8201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b5f614b45603483613f86565b9150614b5082614aeb565b604082019050919050565b5f6020820190508181035f830152614b7281614b39565b9050919050565b7f5465616d20686173207265766f6b656420626c61636b6c6973742072696768745f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f614bd3602183613f86565b9150614bde82614b79565b604082019050919050565b5f6020820190508181035f830152614c0081614bc7565b9050919050565b7f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f75745f8201527f6572206f7220763220706f6f6c2e000000000000000000000000000000000000602082015250565b5f614c61602e83613f86565b9150614c6c82614c07565b604082019050919050565b5f6020820190508181035f830152614c8e81614c55565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f614cef602683613f86565b9150614cfa82614c95565b604082019050919050565b5f6020820190508181035f830152614d1c81614ce3565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f614d7d602483613f86565b9150614d8882614d23565b604082019050919050565b5f6020820190508181035f830152614daa81614d71565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f614e0b602283613f86565b9150614e1682614db1565b604082019050919050565b5f6020820190508181035f830152614e3881614dff565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f614e99602583613f86565b9150614ea482614e3f565b604082019050919050565b5f6020820190508181035f830152614ec681614e8d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f614f27602383613f86565b9150614f3282614ecd565b604082019050919050565b5f6020820190508181035f830152614f5481614f1b565b9050919050565b7f53656e64657220626c61636b6c697374656400000000000000000000000000005f82015250565b5f614f8f601283613f86565b9150614f9a82614f5b565b602082019050919050565b5f6020820190508181035f830152614fbc81614f83565b9050919050565b7f526563656976657220626c61636b6c69737465640000000000000000000000005f82015250565b5f614ff7601483613f86565b915061500282614fc3565b602082019050919050565b5f6020820190508181035f83015261502481614feb565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f615085603583613f86565b91506150908261502b565b604082019050919050565b5f6020820190508181035f8301526150b281615079565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f6150ed601383613f86565b91506150f8826150b9565b602082019050919050565b5f6020820190508181035f83015261511a816150e1565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f61517b603683613f86565b915061518682615121565b604082019050919050565b5f6020820190508181035f8301526151a88161516f565b9050919050565b5f6151b982613f4b565b91506151c483613f4b565b92508282039050818111156151dc576151db61447b565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f61523c602683613f86565b9150615247826151e2565b604082019050919050565b5f6020820190508181035f83015261526981615230565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f815190506152d88161405a565b92915050565b5f602082840312156152f3576152f2614026565b5b5f615300848285016152ca565b91505092915050565b5f819050919050565b5f61532c61532761532284615309565b61414a565b613f4b565b9050919050565b61533c81615312565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61537481614049565b82525050565b5f615385838361536b565b60208301905092915050565b5f602082019050919050565b5f6153a782615342565b6153b1818561534c565b93506153bc8361535c565b805f5b838110156153ec5781516153d3888261537a565b97506153de83615391565b9250506001810190506153bf565b5085935050505092915050565b5f60a08201905061540c5f830188613f54565b6154196020830187615333565b818103604083015261542b818661539d565b905061543a606083018561426d565b6154476080830184613f54565b969550505050505056fea264697066735822122012a4c78c68c24250ad34b480ccad2c2ddc4ea0e606390d61ac85218e86e1640e64736f6c63430008140033

Deployed Bytecode

0x60806040526004361061039a575f3560e01c80638da5cb5b116101db578063c18bc19511610101578063dd62ed3e1161009f578063f8b45b051161006e578063f8b45b0514610d65578063f9f92be414610d8f578063fde83a3414610db7578063fe575a8714610de1576103a1565b8063dd62ed3e14610caf578063e19b282314610ceb578063e2f4560514610d13578063f2fde38b14610d3d576103a1565b8063d257b34f116100db578063d257b34f14610bf5578063d729715f14610c31578063d85ba06314610c5b578063db133f3414610c85576103a1565b8063c18bc19514610b79578063c757483914610ba1578063c8c8ebe414610bcb576103a1565b8063af15517211610179578063bc205ad311610148578063bc205ad314610ad7578063bf6146cd14610aff578063c024666814610b29578063c17b5b8c14610b51576103a1565b8063af15517214610a1f578063b53aee9714610a47578063b62496f514610a71578063b8fad14714610aad576103a1565b80639a7a23d6116101b55780639a7a23d6146109555780639c2e4ac61461097d578063a457c2d7146109a7578063a9059cbb146109e3576103a1565b80638da5cb5b146108d9578063924de9b71461090357806395d89b411461092b576103a1565b80634fbee193116102c0578063751039fc1161025e5780637cb332bb1161022d5780637cb332bb146108355780638095d5641461085d57806382e1170c14610885578063858f15d7146108af576103a1565b8063751039fc146107935780637571336a146107bd57806375e3661e146107e55780637ca8448a1461080d576103a1565b80636a486a8e1161029a5780636a486a8e146106ed5780636ddd17131461071757806370a0823114610741578063715018a61461077d576103a1565b80634fbee1931461067157806359927044146106ad5780635f189361146106d7576103a1565b806323b872dd116103385780633dc599ff116103075780633dc599ff146105b757806349bd5a5e146105e15780634a62bb651461060b5780634e29e52314610635576103a1565b806323b872dd146104ed57806328d7718114610529578063313ce56714610551578063395093511461057b576103a1565b806310d5de531161037457806310d5de53146104355780631694505e1461047157806318160ddd1461049b578063203e727e146104c5576103a1565b806305b9e960146103a557806306fdde03146103cf578063095ea7b3146103f9576103a1565b366103a157005b5f80fd5b3480156103b0575f80fd5b506103b9610e1d565b6040516103c69190613f63565b60405180910390f35b3480156103da575f80fd5b506103e3610e23565b6040516103f09190614006565b60405180910390f35b348015610404575f80fd5b5061041f600480360381019061041a91906140ae565b610eb3565b60405161042c9190614106565b60405180910390f35b348015610440575f80fd5b5061045b6004803603810190610456919061411f565b610ed0565b6040516104689190614106565b60405180910390f35b34801561047c575f80fd5b50610485610eed565b60405161049291906141a5565b60405180910390f35b3480156104a6575f80fd5b506104af610f11565b6040516104bc9190613f63565b60405180910390f35b3480156104d0575f80fd5b506104eb60048036038101906104e691906141be565b610f1a565b005b3480156104f8575f80fd5b50610513600480360381019061050e91906141e9565b611029565b6040516105209190614106565b60405180910390f35b348015610534575f80fd5b5061054f600480360381019061054a919061411f565b61111b565b005b34801561055c575f80fd5b506105656111da565b6040516105729190614254565b60405180910390f35b348015610586575f80fd5b506105a1600480360381019061059c91906140ae565b6111e2565b6040516105ae9190614106565b60405180910390f35b3480156105c2575f80fd5b506105cb611289565b6040516105d89190614106565b60405180910390f35b3480156105ec575f80fd5b506105f561129c565b604051610602919061427c565b60405180910390f35b348015610616575f80fd5b5061061f6112c0565b60405161062c9190614106565b60405180910390f35b348015610640575f80fd5b5061065b6004803603810190610656919061411f565b6112d2565b6040516106689190614106565b60405180910390f35b34801561067c575f80fd5b506106976004803603810190610692919061411f565b6112ef565b6040516106a49190614106565b60405180910390f35b3480156106b8575f80fd5b506106c1611341565b6040516106ce919061427c565b60405180910390f35b3480156106e2575f80fd5b506106eb611366565b005b3480156106f8575f80fd5b506107016113ff565b60405161070e9190613f63565b60405180910390f35b348015610722575f80fd5b5061072b611405565b6040516107389190614106565b60405180910390f35b34801561074c575f80fd5b506107676004803603810190610762919061411f565b611418565b6040516107749190613f63565b60405180910390f35b348015610788575f80fd5b5061079161145d565b005b34801561079e575f80fd5b506107a76114e4565b6040516107b49190614106565b60405180910390f35b3480156107c8575f80fd5b506107e360048036038101906107de91906142bf565b611581565b005b3480156107f0575f80fd5b5061080b6004803603810190610806919061411f565b611655565b005b348015610818575f80fd5b50610833600480360381019061082e919061411f565b611728565b005b348015610840575f80fd5b5061085b6004803603810190610856919061411f565b611819565b005b348015610868575f80fd5b50610883600480360381019061087e91906142fd565b6118d8565b005b348015610890575f80fd5b506108996119d7565b6040516108a6919061427c565b60405180910390f35b3480156108ba575f80fd5b506108c36119fc565b6040516108d09190613f63565b60405180910390f35b3480156108e4575f80fd5b506108ed611a02565b6040516108fa919061427c565b60405180910390f35b34801561090e575f80fd5b506109296004803603810190610924919061434d565b611a2a565b005b348015610936575f80fd5b5061093f611ac3565b60405161094c9190614006565b60405180910390f35b348015610960575f80fd5b5061097b600480360381019061097691906142bf565b611b53565b005b348015610988575f80fd5b50610991611c6b565b60405161099e9190613f63565b60405180910390f35b3480156109b2575f80fd5b506109cd60048036038101906109c891906140ae565b611c71565b6040516109da9190614106565b60405180910390f35b3480156109ee575f80fd5b50610a096004803603810190610a0491906140ae565b611d57565b604051610a169190614106565b60405180910390f35b348015610a2a575f80fd5b50610a456004803603810190610a40919061411f565b611d74565b005b348015610a52575f80fd5b50610a5b611e33565b604051610a689190613f63565b60405180910390f35b348015610a7c575f80fd5b50610a976004803603810190610a92919061411f565b611e39565b604051610aa49190614106565b60405180910390f35b348015610ab8575f80fd5b50610ac1611e56565b604051610ace9190613f63565b60405180910390f35b348015610ae2575f80fd5b50610afd6004803603810190610af89190614378565b611e5c565b005b348015610b0a575f80fd5b50610b13612042565b604051610b209190613f63565b60405180910390f35b348015610b34575f80fd5b50610b4f6004803603810190610b4a91906142bf565b612048565b005b348015610b5c575f80fd5b50610b776004803603810190610b7291906142fd565b61211c565b005b348015610b84575f80fd5b50610b9f6004803603810190610b9a91906141be565b61221b565b005b348015610bac575f80fd5b50610bb561232a565b604051610bc2919061427c565b60405180910390f35b348015610bd6575f80fd5b50610bdf61234f565b604051610bec9190613f63565b60405180910390f35b348015610c00575f80fd5b50610c1b6004803603810190610c1691906141be565b612355565b604051610c289190614106565b60405180910390f35b348015610c3c575f80fd5b50610c456124a9565b604051610c529190613f63565b60405180910390f35b348015610c66575f80fd5b50610c6f6124af565b604051610c7c9190613f63565b60405180910390f35b348015610c90575f80fd5b50610c996124b5565b604051610ca69190613f63565b60405180910390f35b348015610cba575f80fd5b50610cd56004803603810190610cd09190614378565b6124bb565b604051610ce29190613f63565b60405180910390f35b348015610cf6575f80fd5b50610d116004803603810190610d0c919061411f565b61253d565b005b348015610d1e575f80fd5b50610d2761272f565b604051610d349190613f63565b60405180910390f35b348015610d48575f80fd5b50610d636004803603810190610d5e919061411f565b612735565b005b348015610d70575f80fd5b50610d7961282b565b604051610d869190613f63565b60405180910390f35b348015610d9a575f80fd5b50610db56004803603810190610db0919061411f565b612831565b005b348015610dc2575f80fd5b50610dcb612a23565b604051610dd89190613f63565b60405180910390f35b348015610dec575f80fd5b50610e076004803603810190610e02919061411f565b612a29565b604051610e149190614106565b60405180910390f35b60145481565b606060038054610e32906143e3565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5e906143e3565b8015610ea95780601f10610e8057610100808354040283529160200191610ea9565b820191905f5260205f20905b815481529060010190602001808311610e8c57829003601f168201915b5050505050905090565b5f610ec6610ebf612a7b565b8484612a82565b6001905092915050565b601a602052805f5260405f205f915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f600254905090565b610f22612a7b565b73ffffffffffffffffffffffffffffffffffffffff16610f40611a02565b73ffffffffffffffffffffffffffffffffffffffff1614610f96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8d9061445d565b60405180910390fd5b670de0b6b3a76400006103e86005610fac610f11565b610fb691906144a8565b610fc09190614516565b610fca9190614516565b81101561100c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611003906145b6565b60405180910390fd5b670de0b6b3a76400008161102091906144a8565b60098190555050565b5f611035848484612c45565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f61107c612a7b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156110fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f290614644565b60405180910390fd5b61110f85611107612a7b565b858403612a82565b60019150509392505050565b611123612a7b565b73ffffffffffffffffffffffffffffffffffffffff16611141611a02565b73ffffffffffffffffffffffffffffffffffffffff1614611197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118e9061445d565b60405180910390fd5b8060085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f6012905090565b5f61127f6111ee612a7b565b848460015f6111fb612a7b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461127a9190614662565b612a82565b6001905092915050565b600c60029054906101000a900460ff1681565b7f00000000000000000000000066086ee12fbf56c4776bdc1783b879fc10b99c1581565b600c5f9054906101000a900460ff1681565b601c602052805f5260405f205f915054906101000a900460ff1681565b5f60195f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61136e612a7b565b73ffffffffffffffffffffffffffffffffffffffff1661138c611a02565b73ffffffffffffffffffffffffffffffffffffffff16146113e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d99061445d565b60405180910390fd5b6001600c60026101000a81548160ff021916908315150217905550565b60125481565b600c60019054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b611465612a7b565b73ffffffffffffffffffffffffffffffffffffffff16611483611a02565b73ffffffffffffffffffffffffffffffffffffffff16146114d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d09061445d565b60405180910390fd5b6114e25f6136de565b565b5f6114ed612a7b565b73ffffffffffffffffffffffffffffffffffffffff1661150b611a02565b73ffffffffffffffffffffffffffffffffffffffff1614611561576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115589061445d565b60405180910390fd5b5f600c5f6101000a81548160ff0219169083151502179055506001905090565b611589612a7b565b73ffffffffffffffffffffffffffffffffffffffff166115a7611a02565b73ffffffffffffffffffffffffffffffffffffffff16146115fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f49061445d565b60405180910390fd5b80601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b61165d612a7b565b73ffffffffffffffffffffffffffffffffffffffff1661167b611a02565b73ffffffffffffffffffffffffffffffffffffffff16146116d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c89061445d565b60405180910390fd5b5f600d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b611730612a7b565b73ffffffffffffffffffffffffffffffffffffffff1661174e611a02565b73ffffffffffffffffffffffffffffffffffffffff16146117a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179b9061445d565b60405180910390fd5b5f8173ffffffffffffffffffffffffffffffffffffffff16476040516117c9906146c2565b5f6040518083038185875af1925050503d805f8114611803576040519150601f19603f3d011682016040523d82523d5f602084013e611808565b606091505b5050905080611815575f80fd5b5050565b611821612a7b565b73ffffffffffffffffffffffffffffffffffffffff1661183f611a02565b73ffffffffffffffffffffffffffffffffffffffff1614611895576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188c9061445d565b60405180910390fd5b8060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6118e0612a7b565b73ffffffffffffffffffffffffffffffffffffffff166118fe611a02565b73ffffffffffffffffffffffffffffffffffffffff1614611954576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194b9061445d565b60405180910390fd5b82600f819055508160118190555080601081905550601054601154600f5461197c9190614662565b6119869190614662565b600e819055506005600e5411156119d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c990614720565b60405180910390fd5b505050565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60165481565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611a32612a7b565b73ffffffffffffffffffffffffffffffffffffffff16611a50611a02565b73ffffffffffffffffffffffffffffffffffffffff1614611aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9d9061445d565b60405180910390fd5b80600c60016101000a81548160ff02191690831515021790555050565b606060048054611ad2906143e3565b80601f0160208091040260200160405190810160405280929190818152602001828054611afe906143e3565b8015611b495780601f10611b2057610100808354040283529160200191611b49565b820191905f5260205f20905b815481529060010190602001808311611b2c57829003601f168201915b5050505050905090565b611b5b612a7b565b73ffffffffffffffffffffffffffffffffffffffff16611b79611a02565b73ffffffffffffffffffffffffffffffffffffffff1614611bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc69061445d565b60405180910390fd5b7f00000000000000000000000066086ee12fbf56c4776bdc1783b879fc10b99c1573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c54906147ae565b60405180910390fd5b611c6782826137a1565b5050565b60115481565b5f8060015f611c7e612a7b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015611d38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2f9061483c565b60405180910390fd5b611d4c611d43612a7b565b85858403612a82565b600191505092915050565b5f611d6a611d63612a7b565b8484612c45565b6001905092915050565b611d7c612a7b565b73ffffffffffffffffffffffffffffffffffffffff16611d9a611a02565b73ffffffffffffffffffffffffffffffffffffffff1614611df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de79061445d565b60405180910390fd5b8060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60135481565b601b602052805f5260405f205f915054906101000a900460ff1681565b600f5481565b611e64612a7b565b73ffffffffffffffffffffffffffffffffffffffff16611e82611a02565b73ffffffffffffffffffffffffffffffffffffffff1614611ed8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecf9061445d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3d906148a4565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611f80919061427c565b602060405180830381865afa158015611f9b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fbf91906148d6565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401611ffc929190614901565b6020604051808303815f875af1158015612018573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061203c919061493c565b50505050565b60175481565b612050612a7b565b73ffffffffffffffffffffffffffffffffffffffff1661206e611a02565b73ffffffffffffffffffffffffffffffffffffffff16146120c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120bb9061445d565b60405180910390fd5b8060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b612124612a7b565b73ffffffffffffffffffffffffffffffffffffffff16612142611a02565b73ffffffffffffffffffffffffffffffffffffffff1614612198576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218f9061445d565b60405180910390fd5b8260138190555081601581905550806014819055506014546015546013546121c09190614662565b6121ca9190614662565b60128190555060056012541115612216576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220d906149b1565b60405180910390fd5b505050565b612223612a7b565b73ffffffffffffffffffffffffffffffffffffffff16612241611a02565b73ffffffffffffffffffffffffffffffffffffffff1614612297576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228e9061445d565b60405180910390fd5b670de0b6b3a76400006103e8600a6122ad610f11565b6122b791906144a8565b6122c19190614516565b6122cb9190614516565b81101561230d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230490614a3f565b60405180910390fd5b670de0b6b3a76400008161232191906144a8565b600b8190555050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60095481565b5f61235e612a7b565b73ffffffffffffffffffffffffffffffffffffffff1661237c611a02565b73ffffffffffffffffffffffffffffffffffffffff16146123d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c99061445d565b60405180910390fd5b620186a060016123e0610f11565b6123ea91906144a8565b6123f49190614516565b821015612436576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242d90614acd565b60405180910390fd5b6103e86005612443610f11565b61244d91906144a8565b6124579190614516565b821115612499576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249090614b5b565b60405180910390fd5b81600a8190555060019050919050565b60155481565b600e5481565b60105481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b612545612a7b565b73ffffffffffffffffffffffffffffffffffffffff16612563611a02565b73ffffffffffffffffffffffffffffffffffffffff16146125b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b09061445d565b60405180910390fd5b600c60029054906101000a900460ff1615612609576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260090614be9565b60405180910390fd5b7f00000000000000000000000066086ee12fbf56c4776bdc1783b879fc10b99c1573ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141580156126985750612668611a02565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b6126d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ce90614c77565b60405180910390fd5b6001600d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b600a5481565b61273d612a7b565b73ffffffffffffffffffffffffffffffffffffffff1661275b611a02565b73ffffffffffffffffffffffffffffffffffffffff16146127b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a89061445d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361281f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281690614d05565b60405180910390fd5b612828816136de565b50565b600b5481565b612839612a7b565b73ffffffffffffffffffffffffffffffffffffffff16612857611a02565b73ffffffffffffffffffffffffffffffffffffffff16146128ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a49061445d565b60405180910390fd5b600c60029054906101000a900460ff16156128fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f490614be9565b60405180910390fd5b7f00000000000000000000000066086ee12fbf56c4776bdc1783b879fc10b99c1573ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415801561298c575061295c611a02565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b6129cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c290614c77565b60405180910390fd5b6001600d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60185481565b5f600d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612af0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae790614d93565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5590614e21565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612c389190613f63565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612cb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612caa90614eaf565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612d21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1890614f3d565b60405180910390fd5b600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615612dab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da290614fa5565b60405180910390fd5b600d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615612e35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e2c9061500d565b60405180910390fd5b5f8103612e4c57612e4783835f6137f9565b6136d9565b600c5f9054906101000a900460ff161561324157612e68611a02565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612ed65750612ea6611a02565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612f0e57505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612f48575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612f615750600560149054906101000a900460ff16155b1561324057601b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156130035750601a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156130aa5760095481111561304d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130449061509b565b60405180910390fd5b600b5461305983611418565b826130649190614662565b11156130a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309c90615103565b60405180910390fd5b61323f565b601b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156131475750601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561319657600954811115613191576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161318890615191565b60405180910390fd5b61323e565b601a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661323d57600b546131f083611418565b826131fb9190614662565b111561323c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161323390615103565b60405180910390fd5b5b5b5b5b5b5f61324b30611418565b90505f600a54821015905080801561326f5750600c60019054906101000a900460ff165b80156132885750600560149054906101000a900460ff16155b80156132db5750601b5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b801561332e575060195f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015613381575060195f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156133c4576001600560146101000a81548160ff0219169083151502179055506133a9613a6e565b5f600560146101000a81548160ff0219169083151502179055505b5f600560149054906101000a900460ff1615905060195f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680613473575060195f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b1561347c575f90505b5f81156136c957601b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156134da57505f601254115b15613596576064601254866134ef91906144a8565b6134f99190614516565b90506012546015548261350c91906144a8565b6135169190614516565b60185f8282546135269190614662565b925050819055506012546013548261353e91906144a8565b6135489190614516565b60175f8282546135589190614662565b925050819055506012546010548261357091906144a8565b61357a9190614516565b60165f82825461358a9190614662565b925050819055506136a6565b601b5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156135ed57505f600e54115b156136a5576064600e548661360291906144a8565b61360c9190614516565b9050600e546011548261361f91906144a8565b6136299190614516565b60185f8282546136399190614662565b92505081905550600e54600f548261365191906144a8565b61365b9190614516565b60175f82825461366b9190614662565b92505081905550600e546014548261368391906144a8565b61368d9190614516565b60165f82825461369d9190614662565b925050819055505b5b5f8111156136ba576136b98730836137f9565b5b80856136c691906151af565b94505b6136d48787876137f9565b505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613867576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161385e90614eaf565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036138d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138cc90614f3d565b60405180910390fd5b6138e0838383613d0e565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015613963576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161395a90615252565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546139f19190614662565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613a559190613f63565b60405180910390a3613a68848484613d13565b50505050565b5f613a7830611418565b90505f601654601854601754613a8e9190614662565b613a989190614662565b90505f80831480613aa857505f82145b15613ab557505050613d0c565b6014600a54613ac491906144a8565b831115613add576014600a54613ada91906144a8565b92505b5f8390505f479050613aee82613d18565b5f8147613afb91906151af565b90505f8560175483613b0d91906144a8565b613b179190614516565b90505f8660185484613b2991906144a8565b613b339190614516565b90505f6017819055505f6018819055505f6016819055505f811115613bdd5760075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681604051613b97906146c2565b5f6040518083038185875af1925050503d805f8114613bd1576040519150601f19603f3d011682016040523d82523d5f602084013e613bd6565b606091505b5050809650505b5f821115613c705760065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613c2a906146c2565b5f6040518083038185875af1925050503d805f8114613c64576040519150601f19603f3d011682016040523d82523d5f602084013e613c69565b606091505b5050809650505b5f471115613d035760085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613cbd906146c2565b5f6040518083038185875af1925050503d805f8114613cf7576040519150601f19603f3d011682016040523d82523d5f602084013e613cfc565b606091505b5050809650505b50505050505050505b565b505050565b505050565b5f600267ffffffffffffffff811115613d3457613d33615270565b5b604051908082528060200260200182016040528015613d625781602001602082028036833780820191505090505b50905030815f81518110613d7957613d7861529d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613e1c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613e4091906152de565b81600181518110613e5457613e5361529d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613eb9307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612a82565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401613f1a9594939291906153f9565b5f604051808303815f87803b158015613f31575f80fd5b505af1158015613f43573d5f803e3d5ffd5b505050505050565b5f819050919050565b613f5d81613f4b565b82525050565b5f602082019050613f765f830184613f54565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015613fb3578082015181840152602081019050613f98565b5f8484015250505050565b5f601f19601f8301169050919050565b5f613fd882613f7c565b613fe28185613f86565b9350613ff2818560208601613f96565b613ffb81613fbe565b840191505092915050565b5f6020820190508181035f83015261401e8184613fce565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6140538261402a565b9050919050565b61406381614049565b811461406d575f80fd5b50565b5f8135905061407e8161405a565b92915050565b61408d81613f4b565b8114614097575f80fd5b50565b5f813590506140a881614084565b92915050565b5f80604083850312156140c4576140c3614026565b5b5f6140d185828601614070565b92505060206140e28582860161409a565b9150509250929050565b5f8115159050919050565b614100816140ec565b82525050565b5f6020820190506141195f8301846140f7565b92915050565b5f6020828403121561413457614133614026565b5b5f61414184828501614070565b91505092915050565b5f819050919050565b5f61416d6141686141638461402a565b61414a565b61402a565b9050919050565b5f61417e82614153565b9050919050565b5f61418f82614174565b9050919050565b61419f81614185565b82525050565b5f6020820190506141b85f830184614196565b92915050565b5f602082840312156141d3576141d2614026565b5b5f6141e08482850161409a565b91505092915050565b5f805f60608486031215614200576141ff614026565b5b5f61420d86828701614070565b935050602061421e86828701614070565b925050604061422f8682870161409a565b9150509250925092565b5f60ff82169050919050565b61424e81614239565b82525050565b5f6020820190506142675f830184614245565b92915050565b61427681614049565b82525050565b5f60208201905061428f5f83018461426d565b92915050565b61429e816140ec565b81146142a8575f80fd5b50565b5f813590506142b981614295565b92915050565b5f80604083850312156142d5576142d4614026565b5b5f6142e285828601614070565b92505060206142f3858286016142ab565b9150509250929050565b5f805f6060848603121561431457614313614026565b5b5f6143218682870161409a565b93505060206143328682870161409a565b92505060406143438682870161409a565b9150509250925092565b5f6020828403121561436257614361614026565b5b5f61436f848285016142ab565b91505092915050565b5f806040838503121561438e5761438d614026565b5b5f61439b85828601614070565b92505060206143ac85828601614070565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806143fa57607f821691505b60208210810361440d5761440c6143b6565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f614447602083613f86565b915061445282614413565b602082019050919050565b5f6020820190508181035f8301526144748161443b565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6144b282613f4b565b91506144bd83613f4b565b92508282026144cb81613f4b565b915082820484148315176144e2576144e161447b565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61452082613f4b565b915061452b83613f4b565b92508261453b5761453a6144e9565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e74205f8201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b5f6145a0602f83613f86565b91506145ab82614546565b604082019050919050565b5f6020820190508181035f8301526145cd81614594565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f61462e602883613f86565b9150614639826145d4565b604082019050919050565b5f6020820190508181035f83015261465b81614622565b9050919050565b5f61466c82613f4b565b915061467783613f4b565b925082820190508082111561468f5761468e61447b565b5b92915050565b5f81905092915050565b50565b5f6146ad5f83614695565b91506146b88261469f565b5f82019050919050565b5f6146cc826146a2565b9150819050919050565b7f4275792066656573206d757374206265203c3d20352e000000000000000000005f82015250565b5f61470a601683613f86565b9150614715826146d6565b602082019050919050565b5f6020820190508181035f830152614737816146fe565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f614798603983613f86565b91506147a38261473e565b604082019050919050565b5f6020820190508181035f8301526147c58161478c565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f614826602583613f86565b9150614831826147cc565b604082019050919050565b5f6020820190508181035f8301526148538161481a565b9050919050565b7f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000005f82015250565b5f61488e601a83613f86565b91506148998261485a565b602082019050919050565b5f6020820190508181035f8301526148bb81614882565b9050919050565b5f815190506148d081614084565b92915050565b5f602082840312156148eb576148ea614026565b5b5f6148f8848285016148c2565b91505092915050565b5f6040820190506149145f83018561426d565b6149216020830184613f54565b9392505050565b5f8151905061493681614295565b92915050565b5f6020828403121561495157614950614026565b5b5f61495e84828501614928565b91505092915050565b7f53656c6c2066656573206d757374206265203c3d20352e0000000000000000005f82015250565b5f61499b601783613f86565b91506149a682614967565b602082019050919050565b5f6020820190508181035f8301526149c88161498f565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f312e302500000000000000000000000000000000000000000000000000000000602082015250565b5f614a29602483613f86565b9150614a34826149cf565b604082019050919050565b5f6020820190508181035f830152614a5681614a1d565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e5f8201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b5f614ab7603583613f86565b9150614ac282614a5d565b604082019050919050565b5f6020820190508181035f830152614ae481614aab565b9050919050565b7f5377617020616d6f756e742063616e6e6f7420626520686967686572207468615f8201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b5f614b45603483613f86565b9150614b5082614aeb565b604082019050919050565b5f6020820190508181035f830152614b7281614b39565b9050919050565b7f5465616d20686173207265766f6b656420626c61636b6c6973742072696768745f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f614bd3602183613f86565b9150614bde82614b79565b604082019050919050565b5f6020820190508181035f830152614c0081614bc7565b9050919050565b7f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f75745f8201527f6572206f7220763220706f6f6c2e000000000000000000000000000000000000602082015250565b5f614c61602e83613f86565b9150614c6c82614c07565b604082019050919050565b5f6020820190508181035f830152614c8e81614c55565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f614cef602683613f86565b9150614cfa82614c95565b604082019050919050565b5f6020820190508181035f830152614d1c81614ce3565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f614d7d602483613f86565b9150614d8882614d23565b604082019050919050565b5f6020820190508181035f830152614daa81614d71565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f614e0b602283613f86565b9150614e1682614db1565b604082019050919050565b5f6020820190508181035f830152614e3881614dff565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f614e99602583613f86565b9150614ea482614e3f565b604082019050919050565b5f6020820190508181035f830152614ec681614e8d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f614f27602383613f86565b9150614f3282614ecd565b604082019050919050565b5f6020820190508181035f830152614f5481614f1b565b9050919050565b7f53656e64657220626c61636b6c697374656400000000000000000000000000005f82015250565b5f614f8f601283613f86565b9150614f9a82614f5b565b602082019050919050565b5f6020820190508181035f830152614fbc81614f83565b9050919050565b7f526563656976657220626c61636b6c69737465640000000000000000000000005f82015250565b5f614ff7601483613f86565b915061500282614fc3565b602082019050919050565b5f6020820190508181035f83015261502481614feb565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f615085603583613f86565b91506150908261502b565b604082019050919050565b5f6020820190508181035f8301526150b281615079565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f6150ed601383613f86565b91506150f8826150b9565b602082019050919050565b5f6020820190508181035f83015261511a816150e1565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f61517b603683613f86565b915061518682615121565b604082019050919050565b5f6020820190508181035f8301526151a88161516f565b9050919050565b5f6151b982613f4b565b91506151c483613f4b565b92508282039050818111156151dc576151db61447b565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f61523c602683613f86565b9150615247826151e2565b604082019050919050565b5f6020820190508181035f83015261526981615230565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f815190506152d88161405a565b92915050565b5f602082840312156152f3576152f2614026565b5b5f615300848285016152ca565b91505092915050565b5f819050919050565b5f61532c61532761532284615309565b61414a565b613f4b565b9050919050565b61533c81615312565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61537481614049565b82525050565b5f615385838361536b565b60208301905092915050565b5f602082019050919050565b5f6153a782615342565b6153b1818561534c565b93506153bc8361535c565b805f5b838110156153ec5781516153d3888261537a565b97506153de83615391565b9250506001810190506153bf565b5085935050505092915050565b5f60a08201905061540c5f830188613f54565b6154196020830187615333565b818103604083015261542b818661539d565b905061543a606083018561426d565b6154476080830184613f54565b969550505050505056fea264697066735822122012a4c78c68c24250ad34b480ccad2c2ddc4ea0e606390d61ac85218e86e1640e64736f6c63430008140033

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.