ETH Price: $3,487.93 (+0.76%)
Gas: 4 Gwei

Token

Tongyi Qianwen (QWEN)
 

Overview

Max Total Supply

100,000,000,000 QWEN

Holders

215

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.146561075740499607 QWEN

Value
$0.00
0x7277109654daddbf2637f5fb22dd5cdc91e3df8c
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Qwen

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-11-25
*/

/*
 * SPDX-License-Identifier: MIT
 https://qwen-erc.com/
 https://t.me/qwenerc
 https://twitter.com/qwenerc20
 https://technode.com/2023/04/10/alibaba-rolls-out-chatgpt-alternative-claims-world-first-of-breaking-10-trillion-parameters/
*/

pragma solidity 0.8.19;

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

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

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

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

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

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `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
    );
}

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);
}

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

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 upd 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 upd 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 upd 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 {}
}

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);
    }
}

interface IDexFactory {
    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;
}

interface IDexPair {
    function sync() external;
}

interface IDexRouter {
    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 Qwen is ERC20, Ownable {
    using SafeMath for uint256;

    IDexRouter private immutable dexRouter;
    address public immutable dexPair;

    // Swapback
    bool private swapping;

    bool private swapbackEnabled = false;
    uint256 private swapBackValueMin;
    uint256 private swapBackValueMax;

    //Anti-whale
    bool private limitsInEffect = true;
    bool private transferDelayEnabled = true;
    bool private delayOn = true;
    uint256 private maxWallet;
    uint256 private maxTx;
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    mapping(address => bool) private _isDelayExempt;

    bool public tradingLive = false;


    // Fee receivers
    address private mktReceiver;
    address private devReceiver;

    uint256 private totalBuyFee;
    uint256 private buyMktFee;
    uint256 private buyDevFee;

    uint256 private totalSellFee;
    uint256 private sellMktFee;
    uint256 private sellDevFee;

    uint256 private tokensForMarketing;
    uint256 private tokensForDev;

    /******************/

    // exlcude from fees and max transaction amount
    mapping(address => bool) private isFeeExempt;
    mapping(address => bool) private isTxLimitExempt;
    mapping(address => bool) private automatedMarketMakerPairs;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount

    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );

    event ExcludeFromFees(address indexed account, bool isExcluded);
    event ExcludeFromLimits(address indexed account, bool isExcluded);
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
    event TradingEnabled(uint256 indexed timestamp);
    event LimitsRemoved(uint256 indexed timestamp);
    event DisabledTransferDelay(uint256 indexed timestamp);

    event SwapbackSettingsUpdated(
        bool enabled,
        uint256 swapBackValueMin,
        uint256 swapBackValueMax
    );
    event MaxTxUpdated(uint256 maxTx);
    event MaxWalletUpdated(uint256 maxWallet);

    event mktReceiverUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event devReceiverUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event lpReceiverUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

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

    event TriggerBurn(uint256 percentBurnt);

    event BuyFeeUpdated(
        uint256 totalBuyFee,
        uint256 buyMktFee,
        uint256 buyDevFee
    );

    event SellFeeUpdated(
        uint256 totalSellFee,
        uint256 sellMktFee,
        uint256 sellDevFee
    );

    constructor() ERC20("Tongyi Qianwen", "QWEN") {
        IDexRouter _dexRouter = IDexRouter(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        excludeFromMaxTransaction(address(_dexRouter), true);
        dexRouter = _dexRouter;

        dexPair = IDexFactory(_dexRouter.factory()).createPair(
            address(this),
            _dexRouter.WETH()
        );
        excludeFromMaxTransaction(address(dexPair), true);
        _setAutomatedMarketMakerPair(address(dexPair), true);

        uint256 _buyMktFee = 5;
        uint256 _buyDevFee = 0;

        uint256 _sellMktFee = 50;
        uint256 _sellDevFee = 0;

        uint256 totalSupply = 100000000000 * 10 ** decimals();

        maxTx = (totalSupply * 10) / 1000;
        maxWallet = (totalSupply * 10) / 1000;

        swapBackValueMin = (totalSupply * 1) / 1000;
        swapBackValueMax = (totalSupply * 2) / 100;

        buyMktFee = _buyMktFee;
        buyDevFee = _buyDevFee;
        totalBuyFee = buyMktFee + buyDevFee;

        sellMktFee = _sellMktFee;
        sellDevFee = _sellDevFee;
        totalSellFee = sellMktFee + sellDevFee;

        mktReceiver = address(0xe5D4bCA5DEbb88E762A89fa0BFAB7B35d9f92503);
        devReceiver = address(msg.sender);

        // exclude from paying fees or having max transaction amount
        excludeFromFees(msg.sender, true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
        excludeFromFees(mktReceiver, true);

        excludeFromMaxTransaction(msg.sender, true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);
        excludeFromMaxTransaction(mktReceiver, true);

        transferOwnership(msg.sender);

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

    /**
     * @notice  Information about the swapback settings
     * @return  _swapbackEnabled  if swapback is enabled
     * @return  _swapBackValueMin  the minimum amount of tokens in the contract balance to trigger swapback
     * @return  _swapBackValueMax  the maximum amount of tokens in the contract balance to trigger swapback
     */
    function swapbackInfo()
        external
        view
        returns (
            bool _swapbackEnabled,
            uint256 _swapBackValueMin,
            uint256 _swapBackValueMax
        )
    {
        _swapbackEnabled = swapbackEnabled;
        _swapBackValueMin = swapBackValueMin;
        _swapBackValueMax = swapBackValueMax;
    }

    /**
     * @notice  Information about the anti whale parameters
     * @return  _limitsInEffect  if the wallet limits are in effect
     * @return  _transferDelayEnabled  if the transfer delay is enabled
     * @return  _maxWallet  The maximum amount of tokens that can be held by a wallet
     * @return  _maxTx  The maximum amount of tokens that can be bought or sold in a single transaction
     */
    function limitsInfo()
        external
        view
        returns (
            bool _limitsInEffect,
            bool _transferDelayEnabled,
            uint256 _maxWallet,
            uint256 _maxTx
        )
    {
        _limitsInEffect = limitsInEffect;
        _transferDelayEnabled = transferDelayEnabled;
        _maxWallet = maxWallet;
        _maxTx = maxTx;
    }

    /**
     * @notice The wallets that receive the collected fees
     * @return _mktReceiver The wallet that receives the marketing fees
     * @return _devReceiver The wallet that receives the dev fees
     */
    function feeWallets()
        external
        view
        returns (
            address _mktReceiver,
            address _devReceiver
        )
    {
        return (mktReceiver, devReceiver);
    }

    /**
     * @notice Fees for buys, sells, and transfers
     * @return _totalBuyFee The total fee for buys
     * @return _buyMktFee The fee for buys that gets sent to marketing
     * @return _buyDevFee The fee for buys that gets sent to dev
     * @return _totalSellFee The total fee for sells
     * @return _sellMktFee The fee for sells that gets sent to marketing
     * @return _sellDevFee The fee for sells that gets sent to dev
     */
    function feeInfo()
        external
        view
        returns (
            uint256 _totalBuyFee,
            uint256 _buyMktFee,
            uint256 _buyDevFee,
            uint256 _totalSellFee,
            uint256 _sellMktFee,
            uint256 _sellDevFee
        )
    {
        _totalBuyFee = totalBuyFee;
        _buyMktFee = buyMktFee;
        _buyDevFee = buyDevFee;
        _totalSellFee = totalSellFee;
        _sellMktFee = sellMktFee;
        _sellDevFee = sellDevFee;
    }

    /**
     * @notice  If the wallet is excluded from fees and max transaction amount and if the wallet is a automated market maker pair
     * @param   _target  The wallet to check
     * @return  _isFeeExempt  If the wallet is excluded from fees
     * @return  _isTxLimitExempt  If the wallet is excluded from max transaction amount
     * @return  _automatedMarketMakerPairs If the wallet is a automated market maker pair
     */
    function checkMappings(
        address _target
    )
        external
        view
        returns (
            bool _isFeeExempt,
            bool _isTxLimitExempt,
            bool _automatedMarketMakerPairs
        )
    {
        _isFeeExempt = isFeeExempt[_target];
        _isTxLimitExempt = isTxLimitExempt[_target];
        _automatedMarketMakerPairs = automatedMarketMakerPairs[_target];
    }

    receive() external payable {}

    /**
     * @notice  Opens public trading for the token
     * @dev     onlyOwner.
     */
    function openTrading() external onlyOwner {
        tradingLive = true;
        swapbackEnabled = true;
        emit TradingEnabled(block.timestamp);
    }

    /**
     * @notice Removes the max wallet and max transaction limits
     * @dev onlyOwner.
     * Emits an {LimitsRemoved} event
     */
    function removeLimits() external onlyOwner {
        limitsInEffect = false;
        emit LimitsRemoved(block.timestamp);
    }

    /**
     * @notice Removes the transfer delay
     * @dev onlyOwner.
     * Emits an {DisabledTransferDelay} event
     */
    function disableTransferDelay() external onlyOwner {
        transferDelayEnabled = false;
        emit DisabledTransferDelay(block.timestamp);
    }

    /**
     * @notice sets if swapback is enabled and sets the minimum and maximum amounts
     * @dev onlyOwner.
     * Emits an {SwapbackSettingsUpdated} event
     * @param _enabled If swapback is enabled
     * @param _min The minimum amount of tokens the contract must have before swapping tokens for ETH. Base 10000, so 1% = 100.
     * @param _max The maximum amount of tokens the contract can swap for ETH. Base 10000, so 1% = 100.
     */
    function setSwapBackSettings(
        bool _enabled,
        uint256 _min,
        uint256 _max
    ) external onlyOwner {
        require(
            _min >= 1,
            "Swap amount cannot be lower than 0.01% total supply."
        );
        require(_max >= _min, "maximum amount cant be higher than minimum");

        swapbackEnabled = _enabled;
        swapBackValueMin = (totalSupply() * _min) / 10000;
        swapBackValueMax = (totalSupply() * _max) / 10000;
        emit SwapbackSettingsUpdated(_enabled, _min, _max);
    }

    /**
     * @notice Changes the maximum amount of tokens that can be bought or sold in a single transaction
     * @dev onlyOwner.
     * Emits an {MaxTxUpdated} event
     * @param newNum Base 1000, so 1% = 10
     */
    function setTxLimit(uint256 newNum) external onlyOwner {
        require(newNum >= 2, "Cannot set maxTx lower than 0.2%");
        maxTx = (newNum * totalSupply()) / 1000;
        emit MaxTxUpdated(maxTx);
    }

    /**
     * @notice Changes the maximum amount of tokens a wallet can hold
     * @dev onlyOwner.
     * Emits an {MaxWalletUpdated} event
     * @param newNum Base 1000, so 1% = 10
     */
    function setWalletLimit(uint256 newNum) external onlyOwner {
        require(newNum >= 5, "Cannot set maxWallet lower than 0.5%");
        maxWallet = (newNum * totalSupply()) / 1000;
        emit MaxWalletUpdated(maxWallet);
    }

    /**
     * @notice Sets if a wallet is excluded from the max wallet and tx limits
     * @dev onlyOwner.
     * Emits an {ExcludeFromLimits} event
     * @param updAds The wallet to update
     * @param isEx If the wallet is excluded or not
     */
    function excludeFromMaxTransaction(
        address updAds,
        bool isEx
    ) public onlyOwner {
        isTxLimitExempt[updAds] = isEx;
        emit ExcludeFromLimits(updAds, isEx);
    }

    /**
     * @notice Sets the fees for buys
     * @dev onlyOwner.
     * Emits a {BuyFeeUpdated} event
     * All fees added up must be less than 100
     * @param _marketingFee The fee for the marketing wallet
     * @param _devFee The fee for the dev wallet
     */
    function setBuyFees(
        uint256 _marketingFee,
        uint256 _devFee
    ) external onlyOwner {
        buyMktFee = _marketingFee;
        buyDevFee = _devFee;
        totalBuyFee = buyMktFee + buyDevFee;
        require(totalBuyFee <= 100, "Total buy fee cannot be higher than 100%");
        emit BuyFeeUpdated(totalBuyFee, buyMktFee, buyDevFee);
    }

    /**
     * @notice Sets the fees for sells
     * @dev onlyOwner.
     * Emits a {SellFeeUpdated} event
     * All fees added up must be less than 100
     * @param _marketingFee The fee for the marketing wallet
     * @param _devFee The fee for the dev wallet
     */
    function setSellFees(
        uint256 _marketingFee,
        uint256 _devFee
    ) external onlyOwner {
        sellMktFee = _marketingFee;
        sellDevFee = _devFee;
        totalSellFee = sellMktFee + sellDevFee;
        require(
            totalSellFee <= 100,
            "Total sell fee cannot be higher than 100%"
        );
        emit SellFeeUpdated(totalSellFee, sellMktFee, sellDevFee);
    }

    /**
     * @notice Sets if an address is excluded from fees
     * @dev onlyOwner.
     * Emits an {ExcludeFromFees} event
     * @param account The wallet to update
     * @param excluded If the wallet is excluded or not
     */
    function excludeFromFees(address account, bool excluded) public onlyOwner {
        isFeeExempt[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    /**
     * @notice Sets an address as a new liquidity pair. You probably dont want to do this.
     * @dev onlyOwner.
     * Emits a {SetAutomatedMarketMakerPair} event
     * @param pair the address of the pair
     * @param value If the pair is a automated market maker pair or not
     */
    function setAutomatedMarketMakerPair(
        address pair,
        bool value
    ) public onlyOwner {
        require(
            pair != dexPair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    /**
     * @notice Sets the marketing wallet
     * @dev onlyOwner.
     * Emits an {mktReceiverUpdated} event
     * @param newWallet The new marketing wallet
     */
    function setMarketingWallet(address newWallet) external onlyOwner {
        emit mktReceiverUpdated(newWallet, mktReceiver);
        mktReceiver = newWallet;
    }

    /**
     * @notice Sets the dev wallet
     * @dev onlyOwner.
     * Emits an {devReceiverUpdated} event
     * @param newWallet The new dev wallet
     */
    function setDevWallet(address newWallet) external onlyOwner {
        emit devReceiverUpdated(newWallet, devReceiver);
        devReceiver = newWallet;
    }

    function setDelay() external onlyOwner {
        require(delayOn, "wl disabled");
        delayOn = false;
    }

    function setDelayOn(address[] calldata _addresses, bool _enabled)
        external
        onlyOwner
    {
        for (uint256 i = 0; i < _addresses.length; i++) {
            _isDelayExempt[_addresses[i]] = _enabled;
        }
    }

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

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

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingLive) {
                    require(
                        isFeeExempt[from] || isFeeExempt[to],
                        "_transfer:: Trading is not active."
                    );
                }
                if (delayOn) {
                    require(
                        _isDelayExempt[from] || _isDelayExempt[to],
                        "_transfer:: Transfer Delay enabled. "
                    );
                }

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                if (transferDelayEnabled) {
                    if (
                        to != owner() &&
                        to != address(dexRouter) &&
                        to != address(dexPair)
                    ) {
                        require(
                            _holderLastTransferTimestamp[tx.origin] <
                                block.number,
                            "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed."
                        );
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }

                //when buy
                if (automatedMarketMakerPairs[from] && !isTxLimitExempt[to]) {
                    require(
                        amount <= maxTx,
                        "Buy transfer amount exceeds the maxTx."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                //when sell
                else if (
                    automatedMarketMakerPairs[to] && !isTxLimitExempt[from]
                ) {
                    require(
                        amount <= maxTx,
                        "Sell transfer amount exceeds the maxTx."
                    );
                } else if (!isTxLimitExempt[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapBackValueMin;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (isFeeExempt[from] || isFeeExempt[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] && totalSellFee > 0) {
                fees = amount.mul(totalSellFee).div(100);
                tokensForDev += (fees * sellDevFee) / totalSellFee;
                tokensForMarketing += (fees * sellMktFee) / totalSellFee;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && totalBuyFee > 0) {
                fees = amount.mul(totalBuyFee).div(100);
                tokensForDev += (fees * buyDevFee) / totalBuyFee;
                tokensForMarketing += (fees * buyMktFee) / totalBuyFee;
            }

            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] = dexRouter.WETH();

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

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


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

        if (contractBalance == 0) {
            return;
        }

        if (contractBalance > swapBackValueMax) {
            contractBalance = swapBackValueMax;
        }

        uint256 amountToSwapForETH = contractBalance;

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        tokensForMarketing = 0;
        tokensForDev = 0;

        (success, ) = address(devReceiver).call{value: ethForDev}("");

        (success, ) = address(mktReceiver).call{value: address(this).balance}(
            ""
        );
    }
}

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":false,"internalType":"uint256","name":"totalBuyFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buyMktFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buyDevFee","type":"uint256"}],"name":"BuyFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"DisabledTransferDelay","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"LimitsRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxTx","type":"uint256"}],"name":"MaxTxUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxWallet","type":"uint256"}],"name":"MaxWalletUpdated","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":"totalSellFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellMktFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellDevFee","type":"uint256"}],"name":"SellFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":false,"internalType":"bool","name":"enabled","type":"bool"},{"indexed":false,"internalType":"uint256","name":"swapBackValueMin","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"swapBackValueMax","type":"uint256"}],"name":"SwapbackSettingsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"TradingEnabled","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"percentBurnt","type":"uint256"}],"name":"TriggerBurn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devReceiverUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"lpReceiverUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"mktReceiverUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_target","type":"address"}],"name":"checkMappings","outputs":[{"internalType":"bool","name":"_isFeeExempt","type":"bool"},{"internalType":"bool","name":"_isTxLimitExempt","type":"bool"},{"internalType":"bool","name":"_automatedMarketMakerPairs","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dexPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeInfo","outputs":[{"internalType":"uint256","name":"_totalBuyFee","type":"uint256"},{"internalType":"uint256","name":"_buyMktFee","type":"uint256"},{"internalType":"uint256","name":"_buyDevFee","type":"uint256"},{"internalType":"uint256","name":"_totalSellFee","type":"uint256"},{"internalType":"uint256","name":"_sellMktFee","type":"uint256"},{"internalType":"uint256","name":"_sellDevFee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeWallets","outputs":[{"internalType":"address","name":"_mktReceiver","type":"address"},{"internalType":"address","name":"_devReceiver","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limitsInfo","outputs":[{"internalType":"bool","name":"_limitsInEffect","type":"bool"},{"internalType":"bool","name":"_transferDelayEnabled","type":"bool"},{"internalType":"uint256","name":"_maxWallet","type":"uint256"},{"internalType":"uint256","name":"_maxTx","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setDelayOn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"setSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"},{"internalType":"uint256","name":"_min","type":"uint256"},{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setSwapBackSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"setTxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"setWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapbackInfo","outputs":[{"internalType":"bool","name":"_swapbackEnabled","type":"bool"},{"internalType":"uint256","name":"_swapBackValueMin","type":"uint256"},{"internalType":"uint256","name":"_swapBackValueMax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"},{"stateMutability":"payable","type":"receive"}]

60c06040526000600560156101000a81548160ff0219169083151502179055506001600860006101000a81548160ff0219169083151502179055506001600860016101000a81548160ff0219169083151502179055506001600860026101000a81548160ff0219169083151502179055506000600d60006101000a81548160ff0219169083151502179055503480156200009857600080fd5b506040518060400160405280600e81526020017f546f6e677969205169616e77656e0000000000000000000000000000000000008152506040518060400160405280600481526020017f5157454e00000000000000000000000000000000000000000000000000000000815250816003908162000116919062000f56565b50806004908162000128919062000f56565b5050506200014b6200013f6200062f60201b60201c565b6200063760201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905062000177816001620006fd60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001f7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200021d9190620010a7565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000285573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ab9190620010a7565b6040518363ffffffff1660e01b8152600401620002ca929190620010ea565b6020604051808303816000875af1158015620002ea573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003109190620010a7565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200035860a0516001620006fd60201b60201c565b6200036d60a05160016200083760201b60201c565b600060059050600080603290506000806200038d620008d860201b60201c565b600a6200039b9190620012a7565b64174876e800620003ad9190620012f8565b90506103e8600a82620003c19190620012f8565b620003cd919062001372565b600a819055506103e8600a82620003e59190620012f8565b620003f1919062001372565b6009819055506103e8600182620004099190620012f8565b62000415919062001372565b60068190555060646002826200042c9190620012f8565b62000438919062001372565b60078190555084601081905550836011819055506011546010546200045e9190620013aa565b600f819055508260138190555081601481905550601454601354620004849190620013aa565b60128190555073e5d4bca5debb88e762a89fa0bfab7b35d9f92503600d60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000533336001620008e160201b60201c565b62000546306001620008e160201b60201c565b6200055b61dead6001620008e160201b60201c565b62000590600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620008e160201b60201c565b620005a3336001620006fd60201b60201c565b620005b6306001620006fd60201b60201c565b620005cb61dead6001620006fd60201b60201c565b62000600600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620006fd60201b60201c565b620006113362000a1b60201b60201c565b62000623338262000b3060201b60201c565b505050505050620015da565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200070d6200062f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200073362000ca860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200078c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007839062001446565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc92826040516200082b919062001485565b60405180910390a25050565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b60006012905090565b620008f16200062f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200091762000ca860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000970576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009679062001446565b60405180910390fd5b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000a0f919062001485565b60405180910390a25050565b62000a2b6200062f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000a5162000ca860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000aaa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000aa19062001446565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000b1c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b139062001518565b60405180910390fd5b62000b2d816200063760201b60201c565b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000ba2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b99906200158a565b60405180910390fd5b62000bb66000838362000cd260201b60201c565b806002600082825462000bca9190620013aa565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000c219190620013aa565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000c889190620015bd565b60405180910390a362000ca46000838362000cd760201b60201c565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000d5e57607f821691505b60208210810362000d745762000d7362000d16565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000dde7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000d9f565b62000dea868362000d9f565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000e3762000e3162000e2b8462000e02565b62000e0c565b62000e02565b9050919050565b6000819050919050565b62000e538362000e16565b62000e6b62000e628262000e3e565b84845462000dac565b825550505050565b600090565b62000e8262000e73565b62000e8f81848462000e48565b505050565b5b8181101562000eb75762000eab60008262000e78565b60018101905062000e95565b5050565b601f82111562000f065762000ed08162000d7a565b62000edb8462000d8f565b8101602085101562000eeb578190505b62000f0362000efa8562000d8f565b83018262000e94565b50505b505050565b600082821c905092915050565b600062000f2b6000198460080262000f0b565b1980831691505092915050565b600062000f46838362000f18565b9150826002028217905092915050565b62000f618262000cdc565b67ffffffffffffffff81111562000f7d5762000f7c62000ce7565b5b62000f89825462000d45565b62000f9682828562000ebb565b600060209050601f83116001811462000fce576000841562000fb9578287015190505b62000fc5858262000f38565b86555062001035565b601f19841662000fde8662000d7a565b60005b82811015620010085784890151825560018201915060208501945060208101905062000fe1565b8683101562001028578489015162001024601f89168262000f18565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200106f8262001042565b9050919050565b620010818162001062565b81146200108d57600080fd5b50565b600081519050620010a18162001076565b92915050565b600060208284031215620010c057620010bf6200103d565b5b6000620010d08482850162001090565b91505092915050565b620010e48162001062565b82525050565b6000604082019050620011016000830185620010d9565b620011106020830184620010d9565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620011a5578086048111156200117d576200117c62001117565b5b60018516156200118d5780820291505b80810290506200119d8562001146565b94506200115d565b94509492505050565b600082620011c0576001905062001293565b81620011d0576000905062001293565b8160018114620011e95760028114620011f4576200122a565b600191505062001293565b60ff84111562001209576200120862001117565b5b8360020a91508482111562001223576200122262001117565b5b5062001293565b5060208310610133831016604e8410600b8410161715620012645782820a9050838111156200125e576200125d62001117565b5b62001293565b62001273848484600162001153565b925090508184048111156200128d576200128c62001117565b5b81810290505b9392505050565b600060ff82169050919050565b6000620012b48262000e02565b9150620012c1836200129a565b9250620012f07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620011ae565b905092915050565b6000620013058262000e02565b9150620013128362000e02565b9250828202620013228162000e02565b915082820484148315176200133c576200133b62001117565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006200137f8262000e02565b91506200138c8362000e02565b9250826200139f576200139e62001343565b5b828204905092915050565b6000620013b78262000e02565b9150620013c48362000e02565b9250828201905080821115620013df57620013de62001117565b5b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200142e602083620013e5565b91506200143b82620013f6565b602082019050919050565b6000602082019050818103600083015262001461816200141f565b9050919050565b60008115159050919050565b6200147f8162001468565b82525050565b60006020820190506200149c600083018462001474565b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600062001500602683620013e5565b91506200150d82620014a2565b604082019050919050565b600060208201905081810360008301526200153381620014f1565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001572601f83620013e5565b91506200157f826200153a565b602082019050919050565b60006020820190508181036000830152620015a58162001563565b9050919050565b620015b78162000e02565b82525050565b6000602082019050620015d46000830184620015ac565b92915050565b60805160a05161500a62001623600039600081816115180152818161205001526127e501526000818161278d015281816136da015281816137bb01526137e2015261500a6000f3fe6080604052600436106102135760003560e01c80638da5cb5b11610118578063c0246668116100a0578063e13b20071161006f578063e13b200714610779578063e884f260146107b8578063f1d5f517146107cf578063f242ab41146107f8578063f2fde38b146108235761021a565b8063c0246668146106d3578063c9567bf9146106fc578063d088935814610713578063dd62ed3e1461073c5761021a565b80639fd8234e116100e75780639fd8234e146105da578063a457c2d714610603578063a9059cbb14610640578063ae7ed5671461067d578063b2d8f208146106aa5761021a565b80638da5cb5b1461052b57806395d89b4114610556578063995b5aae146105815780639a7a23d6146105b15761021a565b8063395093511161019b5780635d098b381161016a5780635d098b381461046e57806370a0823114610497578063715018a6146104d4578063751039fc146104eb5780637571336a146105025761021a565b806339509351146103c35780633adf03381461040057806356224ea71461042e5780635c85974f146104455761021a565b806318160ddd116101e257806318160ddd146102db5780631f53ac021461030657806323b872dd1461032f57806325379fc31461036c578063313ce567146103985761021a565b806306fdde031461021f578063095ea7b31461024a57806311704f521461028757806314d178ac146102b25761021a565b3661021a57005b600080fd5b34801561022b57600080fd5b5061023461084c565b604051610241919061391e565b60405180910390f35b34801561025657600080fd5b50610271600480360381019061026c91906139de565b6108de565b60405161027e9190613a39565b60405180910390f35b34801561029357600080fd5b5061029c6108fc565b6040516102a99190613a39565b60405180910390f35b3480156102be57600080fd5b506102d960048036038101906102d49190613ae5565b61090f565b005b3480156102e757600080fd5b506102f0610a30565b6040516102fd9190613b54565b60405180910390f35b34801561031257600080fd5b5061032d60048036038101906103289190613b6f565b610a3a565b005b34801561033b57600080fd5b5061035660048036038101906103519190613b9c565b610b76565b6040516103639190613a39565b60405180910390f35b34801561037857600080fd5b50610381610c6e565b60405161038f929190613bfe565b60405180910390f35b3480156103a457600080fd5b506103ad610cbf565b6040516103ba9190613c43565b60405180910390f35b3480156103cf57600080fd5b506103ea60048036038101906103e591906139de565b610cc8565b6040516103f79190613a39565b60405180910390f35b34801561040c57600080fd5b50610415610d74565b6040516104259493929190613c5e565b60405180910390f35b34801561043a57600080fd5b50610443610dae565b005b34801561045157600080fd5b5061046c60048036038101906104679190613ca3565b610e96565b005b34801561047a57600080fd5b5061049560048036038101906104909190613b6f565b610fb8565b005b3480156104a357600080fd5b506104be60048036038101906104b99190613b6f565b6110f4565b6040516104cb9190613b54565b60405180910390f35b3480156104e057600080fd5b506104e961113c565b005b3480156104f757600080fd5b506105006111c4565b005b34801561050e57600080fd5b5061052960048036038101906105249190613cd0565b61128a565b005b34801561053757600080fd5b506105406113af565b60405161054d9190613d10565b60405180910390f35b34801561056257600080fd5b5061056b6113d9565b604051610578919061391e565b60405180910390f35b34801561058d57600080fd5b5061059661146b565b6040516105a896959493929190613d2b565b60405180910390f35b3480156105bd57600080fd5b506105d860048036038101906105d39190613cd0565b61149a565b005b3480156105e657600080fd5b5061060160048036038101906105fc9190613d8c565b6115b2565b005b34801561060f57600080fd5b5061062a600480360381019061062591906139de565b6116dd565b6040516106379190613a39565b60405180910390f35b34801561064c57600080fd5b50610667600480360381019061066291906139de565b6117c8565b6040516106749190613a39565b60405180910390f35b34801561068957600080fd5b506106926117e6565b6040516106a193929190613dcc565b60405180910390f35b3480156106b657600080fd5b506106d160048036038101906106cc9190613d8c565b61180c565b005b3480156106df57600080fd5b506106fa60048036038101906106f59190613cd0565b611937565b005b34801561070857600080fd5b50610711611a5c565b005b34801561071f57600080fd5b5061073a60048036038101906107359190613e03565b611b3d565b005b34801561074857600080fd5b50610763600480360381019061075e9190613e56565b611ce6565b6040516107709190613b54565b60405180910390f35b34801561078557600080fd5b506107a0600480360381019061079b9190613b6f565b611d6d565b6040516107af93929190613e96565b60405180910390f35b3480156107c457600080fd5b506107cd611e66565b005b3480156107db57600080fd5b506107f660048036038101906107f19190613ca3565b611f2c565b005b34801561080457600080fd5b5061080d61204e565b60405161081a9190613d10565b60405180910390f35b34801561082f57600080fd5b5061084a60048036038101906108459190613b6f565b612072565b005b60606003805461085b90613efc565b80601f016020809104026020016040519081016040528092919081815260200182805461088790613efc565b80156108d45780601f106108a9576101008083540402835291602001916108d4565b820191906000526020600020905b8154815290600101906020018083116108b757829003601f168201915b5050505050905090565b60006108f26108eb612169565b8484612171565b6001905092915050565b600d60009054906101000a900460ff1681565b610917612169565b73ffffffffffffffffffffffffffffffffffffffff166109356113af565b73ffffffffffffffffffffffffffffffffffffffff161461098b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098290613f79565b60405180910390fd5b60005b83839050811015610a2a5781600c60008686858181106109b1576109b0613f99565b5b90506020020160208101906109c69190613b6f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610a2290613ff7565b91505061098e565b50505050565b6000600254905090565b610a42612169565b73ffffffffffffffffffffffffffffffffffffffff16610a606113af565b73ffffffffffffffffffffffffffffffffffffffff1614610ab6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aad90613f79565b60405180910390fd5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fc246820312f1be47e3958d661d0c150c01b96d1fe3df1e38edd76693ffa8122b60405160405180910390a380600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610b8384848461233a565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610bce612169565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c45906140b1565b60405180910390fd5b610c6285610c5a612169565b858403612171565b60019150509392505050565b600080600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16915091509091565b60006012905090565b6000610d6a610cd5612169565b848460016000610ce3612169565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d6591906140d1565b612171565b6001905092915050565b600080600080600860009054906101000a900460ff169350600860019054906101000a900460ff1692506009549150600a54905090919293565b610db6612169565b73ffffffffffffffffffffffffffffffffffffffff16610dd46113af565b73ffffffffffffffffffffffffffffffffffffffff1614610e2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2190613f79565b60405180910390fd5b600860029054906101000a900460ff16610e79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7090614151565b60405180910390fd5b6000600860026101000a81548160ff021916908315150217905550565b610e9e612169565b73ffffffffffffffffffffffffffffffffffffffff16610ebc6113af565b73ffffffffffffffffffffffffffffffffffffffff1614610f12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0990613f79565b60405180910390fd5b6002811015610f56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4d906141bd565b60405180910390fd5b6103e8610f61610a30565b82610f6c91906141dd565b610f76919061424e565b600a819055507fff3dd5e80294197918c284bbfc3dadd97d0b40ce92106110946329088f80068a600a54604051610fad9190613b54565b60405180910390a150565b610fc0612169565b73ffffffffffffffffffffffffffffffffffffffff16610fde6113af565b73ffffffffffffffffffffffffffffffffffffffff1614611034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102b90613f79565b60405180910390fd5b600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa90d7598849ffffb63cb2a2b23157fa85704d50370070de404a308243fe1daec60405160405180910390a380600d60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611144612169565b73ffffffffffffffffffffffffffffffffffffffff166111626113af565b73ffffffffffffffffffffffffffffffffffffffff16146111b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111af90613f79565b60405180910390fd5b6111c26000613061565b565b6111cc612169565b73ffffffffffffffffffffffffffffffffffffffff166111ea6113af565b73ffffffffffffffffffffffffffffffffffffffff1614611240576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123790613f79565b60405180910390fd5b6000600860006101000a81548160ff021916908315150217905550427ff4eaa75eae08ae80c3daf791438dac1cff2cfd3b0bad2304ec7bbb067e50261660405160405180910390a2565b611292612169565b73ffffffffffffffffffffffffffffffffffffffff166112b06113af565b73ffffffffffffffffffffffffffffffffffffffff1614611306576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fd90613f79565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc92826040516113a39190613a39565b60405180910390a25050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546113e890613efc565b80601f016020809104026020016040519081016040528092919081815260200182805461141490613efc565b80156114615780601f1061143657610100808354040283529160200191611461565b820191906000526020600020905b81548152906001019060200180831161144457829003601f168201915b5050505050905090565b600080600080600080600f54955060105494506011549350601254925060135491506014549050909192939495565b6114a2612169565b73ffffffffffffffffffffffffffffffffffffffff166114c06113af565b73ffffffffffffffffffffffffffffffffffffffff1614611516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150d90613f79565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159b906142f1565b60405180910390fd5b6115ae8282613127565b5050565b6115ba612169565b73ffffffffffffffffffffffffffffffffffffffff166115d86113af565b73ffffffffffffffffffffffffffffffffffffffff161461162e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162590613f79565b60405180910390fd5b816013819055508060148190555060145460135461164c91906140d1565b60128190555060646012541115611698576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168f90614383565b60405180910390fd5b7fcb5f36df892836a2eaedc349de29a7581176990398ee185d16eaa8f6c1abd8f16012546013546014546040516116d1939291906143a3565b60405180910390a15050565b600080600160006116ec612169565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156117a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a09061444c565b60405180910390fd5b6117bd6117b4612169565b85858403612171565b600191505092915050565b60006117dc6117d5612169565b848461233a565b6001905092915050565b6000806000600560159054906101000a900460ff16925060065491506007549050909192565b611814612169565b73ffffffffffffffffffffffffffffffffffffffff166118326113af565b73ffffffffffffffffffffffffffffffffffffffff1614611888576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187f90613f79565b60405180910390fd5b81601081905550806011819055506011546010546118a691906140d1565b600f819055506064600f5411156118f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e9906144de565b60405180910390fd5b7f38513c502b0ab4834ac1df9502b76f75dcf7092469782cfd0db7fe664388e25e600f5460105460115460405161192b939291906143a3565b60405180910390a15050565b61193f612169565b73ffffffffffffffffffffffffffffffffffffffff1661195d6113af565b73ffffffffffffffffffffffffffffffffffffffff16146119b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119aa90613f79565b60405180910390fd5b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611a509190613a39565b60405180910390a25050565b611a64612169565b73ffffffffffffffffffffffffffffffffffffffff16611a826113af565b73ffffffffffffffffffffffffffffffffffffffff1614611ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acf90613f79565b60405180910390fd5b6001600d60006101000a81548160ff0219169083151502179055506001600560156101000a81548160ff021916908315150217905550427fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e92360405160405180910390a2565b611b45612169565b73ffffffffffffffffffffffffffffffffffffffff16611b636113af565b73ffffffffffffffffffffffffffffffffffffffff1614611bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb090613f79565b60405180910390fd5b6001821015611bfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf490614570565b60405180910390fd5b81811015611c40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3790614602565b60405180910390fd5b82600560156101000a81548160ff02191690831515021790555061271082611c66610a30565b611c7091906141dd565b611c7a919061424e565b60068190555061271081611c8c610a30565b611c9691906141dd565b611ca0919061424e565b6007819055507f52cd2cdb42ff0eeec9362d7ed5b04f64c8d022697128b5378fc51cea7e63c779838383604051611cd993929190613dcc565b60405180910390a1505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000806000601760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169250601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169150601960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1690509193909250565b611e6e612169565b73ffffffffffffffffffffffffffffffffffffffff16611e8c6113af565b73ffffffffffffffffffffffffffffffffffffffff1614611ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed990613f79565b60405180910390fd5b6000600860016101000a81548160ff021916908315150217905550427f26e776fcf7ca20aa79b5b946e9b5111f47205539ece9d7a7995271dd6a8b5bad60405160405180910390a2565b611f34612169565b73ffffffffffffffffffffffffffffffffffffffff16611f526113af565b73ffffffffffffffffffffffffffffffffffffffff1614611fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9f90613f79565b60405180910390fd5b6005811015611fec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe390614694565b60405180910390fd5b6103e8611ff7610a30565b8261200291906141dd565b61200c919061424e565b6009819055507f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace6009546040516120439190613b54565b60405180910390a150565b7f000000000000000000000000000000000000000000000000000000000000000081565b61207a612169565b73ffffffffffffffffffffffffffffffffffffffff166120986113af565b73ffffffffffffffffffffffffffffffffffffffff16146120ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e590613f79565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361215d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215490614726565b60405180910390fd5b61216681613061565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036121e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d7906147b8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361224f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122469061484a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161232d9190613b54565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036123a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a0906148dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612418576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240f9061496e565b60405180910390fd5b600081036124315761242c838360006131c8565b61305c565b600860009054906101000a900460ff1615612bea5761244e6113af565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156124bc575061248c6113af565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124f55750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561252f575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125485750600560149054906101000a900460ff16155b15612be957600d60009054906101000a900460ff1661264257601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806126025750601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612641576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263890614a00565b60405180910390fd5b5b600860029054906101000a900460ff161561273857600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806126f85750600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612737576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272e90614a92565b60405180910390fd5b5b600860019054906101000a900460ff1615612900576127556113af565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156127dc57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561283457507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156128ff5743600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106128ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b190614b4a565b60405180910390fd5b43600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156129a35750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612a4a57600a548111156129ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e490614bdc565b60405180910390fd5b6009546129f9836110f4565b82612a0491906140d1565b1115612a45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3c90614c48565b60405180910390fd5b612be8565b601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612aed5750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612b3c57600a54811115612b37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2e90614cda565b60405180910390fd5b612be7565b601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612be657600954612b99836110f4565b82612ba491906140d1565b1115612be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bdc90614c48565b60405180910390fd5b5b5b5b5b5b6000612bf5306110f4565b905060006006548210159050808015612c1a5750600560159054906101000a900460ff165b8015612c335750600560149054906101000a900460ff16155b8015612c895750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612cdf5750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612d355750601760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d79576001600560146101000a81548160ff021916908315150217905550612d5d613447565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612e2f5750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612e3957600090505b6000811561304c57601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e9c57506000601254115b15612f3657612ec96064612ebb6012548861360590919063ffffffff16565b61361b90919063ffffffff16565b905060125460145482612edc91906141dd565b612ee6919061424e565b60166000828254612ef791906140d1565b9250508190555060125460135482612f0f91906141dd565b612f19919061424e565b60156000828254612f2a91906140d1565b92505081905550613028565b601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f9157506000600f54115b1561302757612fbe6064612fb0600f548861360590919063ffffffff16565b61361b90919063ffffffff16565b9050600f5460115482612fd191906141dd565b612fdb919061424e565b60166000828254612fec91906140d1565b92505081905550600f546010548261300491906141dd565b61300e919061424e565b6015600082825461301f91906140d1565b925050819055505b5b600081111561303d5761303c8730836131c8565b5b80856130499190614cfa565b94505b6130578787876131c8565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613237576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161322e906148dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036132a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161329d9061496e565b60405180910390fd5b6132b1838383613631565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613337576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161332e90614da0565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133ca91906140d1565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161342e9190613b54565b60405180910390a3613441848484613636565b50505050565b6000613452306110f4565b90506000819050600080830361346a57505050613603565b60075483111561347a5760075492505b6000839050600047905061348d8261363b565b60006134a2824761387890919063ffffffff16565b905060006134cd866134bf6016548561360590919063ffffffff16565b61361b90919063ffffffff16565b905060006015819055506000601681905550600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168160405161352590614df1565b60006040518083038185875af1925050503d8060008114613562576040519150601f19603f3d011682016040523d82523d6000602084013e613567565b606091505b505080955050600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516135b390614df1565b60006040518083038185875af1925050503d80600081146135f0576040519150601f19603f3d011682016040523d82523d6000602084013e6135f5565b606091505b505080955050505050505050505b565b6000818361361391906141dd565b905092915050565b60008183613629919061424e565b905092915050565b505050565b505050565b6000600267ffffffffffffffff81111561365857613657614e06565b5b6040519080825280602002602001820160405280156136865781602001602082028036833780820191505090505b509050308160008151811061369e5761369d613f99565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613743573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137679190614e4a565b8160018151811061377b5761377a613f99565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506137e0307f000000000000000000000000000000000000000000000000000000000000000084612171565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613842959493929190614f7a565b600060405180830381600087803b15801561385c57600080fd5b505af1158015613870573d6000803e3d6000fd5b505050505050565b600081836138869190614cfa565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156138c85780820151818401526020810190506138ad565b60008484015250505050565b6000601f19601f8301169050919050565b60006138f08261388e565b6138fa8185613899565b935061390a8185602086016138aa565b613913816138d4565b840191505092915050565b6000602082019050818103600083015261393881846138e5565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006139758261394a565b9050919050565b6139858161396a565b811461399057600080fd5b50565b6000813590506139a28161397c565b92915050565b6000819050919050565b6139bb816139a8565b81146139c657600080fd5b50565b6000813590506139d8816139b2565b92915050565b600080604083850312156139f5576139f4613940565b5b6000613a0385828601613993565b9250506020613a14858286016139c9565b9150509250929050565b60008115159050919050565b613a3381613a1e565b82525050565b6000602082019050613a4e6000830184613a2a565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112613a7957613a78613a54565b5b8235905067ffffffffffffffff811115613a9657613a95613a59565b5b602083019150836020820283011115613ab257613ab1613a5e565b5b9250929050565b613ac281613a1e565b8114613acd57600080fd5b50565b600081359050613adf81613ab9565b92915050565b600080600060408486031215613afe57613afd613940565b5b600084013567ffffffffffffffff811115613b1c57613b1b613945565b5b613b2886828701613a63565b93509350506020613b3b86828701613ad0565b9150509250925092565b613b4e816139a8565b82525050565b6000602082019050613b696000830184613b45565b92915050565b600060208284031215613b8557613b84613940565b5b6000613b9384828501613993565b91505092915050565b600080600060608486031215613bb557613bb4613940565b5b6000613bc386828701613993565b9350506020613bd486828701613993565b9250506040613be5868287016139c9565b9150509250925092565b613bf88161396a565b82525050565b6000604082019050613c136000830185613bef565b613c206020830184613bef565b9392505050565b600060ff82169050919050565b613c3d81613c27565b82525050565b6000602082019050613c586000830184613c34565b92915050565b6000608082019050613c736000830187613a2a565b613c806020830186613a2a565b613c8d6040830185613b45565b613c9a6060830184613b45565b95945050505050565b600060208284031215613cb957613cb8613940565b5b6000613cc7848285016139c9565b91505092915050565b60008060408385031215613ce757613ce6613940565b5b6000613cf585828601613993565b9250506020613d0685828601613ad0565b9150509250929050565b6000602082019050613d256000830184613bef565b92915050565b600060c082019050613d406000830189613b45565b613d4d6020830188613b45565b613d5a6040830187613b45565b613d676060830186613b45565b613d746080830185613b45565b613d8160a0830184613b45565b979650505050505050565b60008060408385031215613da357613da2613940565b5b6000613db1858286016139c9565b9250506020613dc2858286016139c9565b9150509250929050565b6000606082019050613de16000830186613a2a565b613dee6020830185613b45565b613dfb6040830184613b45565b949350505050565b600080600060608486031215613e1c57613e1b613940565b5b6000613e2a86828701613ad0565b9350506020613e3b868287016139c9565b9250506040613e4c868287016139c9565b9150509250925092565b60008060408385031215613e6d57613e6c613940565b5b6000613e7b85828601613993565b9250506020613e8c85828601613993565b9150509250929050565b6000606082019050613eab6000830186613a2a565b613eb86020830185613a2a565b613ec56040830184613a2a565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613f1457607f821691505b602082108103613f2757613f26613ecd565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613f63602083613899565b9150613f6e82613f2d565b602082019050919050565b60006020820190508181036000830152613f9281613f56565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614002826139a8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361403457614033613fc8565b5b600182019050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061409b602883613899565b91506140a68261403f565b604082019050919050565b600060208201905081810360008301526140ca8161408e565b9050919050565b60006140dc826139a8565b91506140e7836139a8565b92508282019050808211156140ff576140fe613fc8565b5b92915050565b7f776c2064697361626c6564000000000000000000000000000000000000000000600082015250565b600061413b600b83613899565b915061414682614105565b602082019050919050565b6000602082019050818103600083015261416a8161412e565b9050919050565b7f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e3225600082015250565b60006141a7602083613899565b91506141b282614171565b602082019050919050565b600060208201905081810360008301526141d68161419a565b9050919050565b60006141e8826139a8565b91506141f3836139a8565b9250828202614201816139a8565b9150828204841483151761421857614217613fc8565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614259826139a8565b9150614264836139a8565b9250826142745761427361421f565b5b828204905092915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006142db603983613899565b91506142e68261427f565b604082019050919050565b6000602082019050818103600083015261430a816142ce565b9050919050565b7f546f74616c2073656c6c206665652063616e6e6f74206265206869676865722060008201527f7468616e20313030250000000000000000000000000000000000000000000000602082015250565b600061436d602983613899565b915061437882614311565b604082019050919050565b6000602082019050818103600083015261439c81614360565b9050919050565b60006060820190506143b86000830186613b45565b6143c56020830185613b45565b6143d26040830184613b45565b949350505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614436602583613899565b9150614441826143da565b604082019050919050565b6000602082019050818103600083015261446581614429565b9050919050565b7f546f74616c20627579206665652063616e6e6f7420626520686967686572207460008201527f68616e2031303025000000000000000000000000000000000000000000000000602082015250565b60006144c8602883613899565b91506144d38261446c565b604082019050919050565b600060208201905081810360008301526144f7816144bb565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e30312520746f74616c20737570706c792e000000000000000000000000602082015250565b600061455a603483613899565b9150614565826144fe565b604082019050919050565b600060208201905081810360008301526145898161454d565b9050919050565b7f6d6178696d756d20616d6f756e742063616e742062652068696768657220746860008201527f616e206d696e696d756d00000000000000000000000000000000000000000000602082015250565b60006145ec602a83613899565b91506145f782614590565b604082019050919050565b6000602082019050818103600083015261461b816145df565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061467e602483613899565b915061468982614622565b604082019050919050565b600060208201905081810360008301526146ad81614671565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614710602683613899565b915061471b826146b4565b604082019050919050565b6000602082019050818103600083015261473f81614703565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006147a2602483613899565b91506147ad82614746565b604082019050919050565b600060208201905081810360008301526147d181614795565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614834602283613899565b915061483f826147d8565b604082019050919050565b6000602082019050818103600083015261486381614827565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006148c6602583613899565b91506148d18261486a565b604082019050919050565b600060208201905081810360008301526148f5816148b9565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614958602383613899565b9150614963826148fc565b604082019050919050565b600060208201905081810360008301526149878161494b565b9050919050565b7f5f7472616e736665723a3a2054726164696e67206973206e6f7420616374697660008201527f652e000000000000000000000000000000000000000000000000000000000000602082015250565b60006149ea602283613899565b91506149f58261498e565b604082019050919050565b60006020820190508181036000830152614a19816149dd565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e2000000000000000000000000000000000000000000000000000000000602082015250565b6000614a7c602483613899565b9150614a8782614a20565b604082019050919050565b60006020820190508181036000830152614aab81614a6f565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614b34604983613899565b9150614b3f82614ab2565b606082019050919050565b60006020820190508181036000830152614b6381614b27565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d617854782e0000000000000000000000000000000000000000000000000000602082015250565b6000614bc6602683613899565b9150614bd182614b6a565b604082019050919050565b60006020820190508181036000830152614bf581614bb9565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614c32601383613899565b9150614c3d82614bfc565b602082019050919050565b60006020820190508181036000830152614c6181614c25565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d617854782e00000000000000000000000000000000000000000000000000602082015250565b6000614cc4602783613899565b9150614ccf82614c68565b604082019050919050565b60006020820190508181036000830152614cf381614cb7565b9050919050565b6000614d05826139a8565b9150614d10836139a8565b9250828203905081811115614d2857614d27613fc8565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614d8a602683613899565b9150614d9582614d2e565b604082019050919050565b60006020820190508181036000830152614db981614d7d565b9050919050565b600081905092915050565b50565b6000614ddb600083614dc0565b9150614de682614dcb565b600082019050919050565b6000614dfc82614dce565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600081519050614e448161397c565b92915050565b600060208284031215614e6057614e5f613940565b5b6000614e6e84828501614e35565b91505092915050565b6000819050919050565b6000819050919050565b6000614ea6614ea1614e9c84614e77565b614e81565b6139a8565b9050919050565b614eb681614e8b565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614ef18161396a565b82525050565b6000614f038383614ee8565b60208301905092915050565b6000602082019050919050565b6000614f2782614ebc565b614f318185614ec7565b9350614f3c83614ed8565b8060005b83811015614f6d578151614f548882614ef7565b9750614f5f83614f0f565b925050600181019050614f40565b5085935050505092915050565b600060a082019050614f8f6000830188613b45565b614f9c6020830187614ead565b8181036040830152614fae8186614f1c565b9050614fbd6060830185613bef565b614fca6080830184613b45565b969550505050505056fea2646970667358221220bc14f3a61f269b640e9aac3720effef68795e7865aaa1f1394405afb0e7f1b4a64736f6c63430008130033

Deployed Bytecode

0x6080604052600436106102135760003560e01c80638da5cb5b11610118578063c0246668116100a0578063e13b20071161006f578063e13b200714610779578063e884f260146107b8578063f1d5f517146107cf578063f242ab41146107f8578063f2fde38b146108235761021a565b8063c0246668146106d3578063c9567bf9146106fc578063d088935814610713578063dd62ed3e1461073c5761021a565b80639fd8234e116100e75780639fd8234e146105da578063a457c2d714610603578063a9059cbb14610640578063ae7ed5671461067d578063b2d8f208146106aa5761021a565b80638da5cb5b1461052b57806395d89b4114610556578063995b5aae146105815780639a7a23d6146105b15761021a565b8063395093511161019b5780635d098b381161016a5780635d098b381461046e57806370a0823114610497578063715018a6146104d4578063751039fc146104eb5780637571336a146105025761021a565b806339509351146103c35780633adf03381461040057806356224ea71461042e5780635c85974f146104455761021a565b806318160ddd116101e257806318160ddd146102db5780631f53ac021461030657806323b872dd1461032f57806325379fc31461036c578063313ce567146103985761021a565b806306fdde031461021f578063095ea7b31461024a57806311704f521461028757806314d178ac146102b25761021a565b3661021a57005b600080fd5b34801561022b57600080fd5b5061023461084c565b604051610241919061391e565b60405180910390f35b34801561025657600080fd5b50610271600480360381019061026c91906139de565b6108de565b60405161027e9190613a39565b60405180910390f35b34801561029357600080fd5b5061029c6108fc565b6040516102a99190613a39565b60405180910390f35b3480156102be57600080fd5b506102d960048036038101906102d49190613ae5565b61090f565b005b3480156102e757600080fd5b506102f0610a30565b6040516102fd9190613b54565b60405180910390f35b34801561031257600080fd5b5061032d60048036038101906103289190613b6f565b610a3a565b005b34801561033b57600080fd5b5061035660048036038101906103519190613b9c565b610b76565b6040516103639190613a39565b60405180910390f35b34801561037857600080fd5b50610381610c6e565b60405161038f929190613bfe565b60405180910390f35b3480156103a457600080fd5b506103ad610cbf565b6040516103ba9190613c43565b60405180910390f35b3480156103cf57600080fd5b506103ea60048036038101906103e591906139de565b610cc8565b6040516103f79190613a39565b60405180910390f35b34801561040c57600080fd5b50610415610d74565b6040516104259493929190613c5e565b60405180910390f35b34801561043a57600080fd5b50610443610dae565b005b34801561045157600080fd5b5061046c60048036038101906104679190613ca3565b610e96565b005b34801561047a57600080fd5b5061049560048036038101906104909190613b6f565b610fb8565b005b3480156104a357600080fd5b506104be60048036038101906104b99190613b6f565b6110f4565b6040516104cb9190613b54565b60405180910390f35b3480156104e057600080fd5b506104e961113c565b005b3480156104f757600080fd5b506105006111c4565b005b34801561050e57600080fd5b5061052960048036038101906105249190613cd0565b61128a565b005b34801561053757600080fd5b506105406113af565b60405161054d9190613d10565b60405180910390f35b34801561056257600080fd5b5061056b6113d9565b604051610578919061391e565b60405180910390f35b34801561058d57600080fd5b5061059661146b565b6040516105a896959493929190613d2b565b60405180910390f35b3480156105bd57600080fd5b506105d860048036038101906105d39190613cd0565b61149a565b005b3480156105e657600080fd5b5061060160048036038101906105fc9190613d8c565b6115b2565b005b34801561060f57600080fd5b5061062a600480360381019061062591906139de565b6116dd565b6040516106379190613a39565b60405180910390f35b34801561064c57600080fd5b50610667600480360381019061066291906139de565b6117c8565b6040516106749190613a39565b60405180910390f35b34801561068957600080fd5b506106926117e6565b6040516106a193929190613dcc565b60405180910390f35b3480156106b657600080fd5b506106d160048036038101906106cc9190613d8c565b61180c565b005b3480156106df57600080fd5b506106fa60048036038101906106f59190613cd0565b611937565b005b34801561070857600080fd5b50610711611a5c565b005b34801561071f57600080fd5b5061073a60048036038101906107359190613e03565b611b3d565b005b34801561074857600080fd5b50610763600480360381019061075e9190613e56565b611ce6565b6040516107709190613b54565b60405180910390f35b34801561078557600080fd5b506107a0600480360381019061079b9190613b6f565b611d6d565b6040516107af93929190613e96565b60405180910390f35b3480156107c457600080fd5b506107cd611e66565b005b3480156107db57600080fd5b506107f660048036038101906107f19190613ca3565b611f2c565b005b34801561080457600080fd5b5061080d61204e565b60405161081a9190613d10565b60405180910390f35b34801561082f57600080fd5b5061084a60048036038101906108459190613b6f565b612072565b005b60606003805461085b90613efc565b80601f016020809104026020016040519081016040528092919081815260200182805461088790613efc565b80156108d45780601f106108a9576101008083540402835291602001916108d4565b820191906000526020600020905b8154815290600101906020018083116108b757829003601f168201915b5050505050905090565b60006108f26108eb612169565b8484612171565b6001905092915050565b600d60009054906101000a900460ff1681565b610917612169565b73ffffffffffffffffffffffffffffffffffffffff166109356113af565b73ffffffffffffffffffffffffffffffffffffffff161461098b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098290613f79565b60405180910390fd5b60005b83839050811015610a2a5781600c60008686858181106109b1576109b0613f99565b5b90506020020160208101906109c69190613b6f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610a2290613ff7565b91505061098e565b50505050565b6000600254905090565b610a42612169565b73ffffffffffffffffffffffffffffffffffffffff16610a606113af565b73ffffffffffffffffffffffffffffffffffffffff1614610ab6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aad90613f79565b60405180910390fd5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fc246820312f1be47e3958d661d0c150c01b96d1fe3df1e38edd76693ffa8122b60405160405180910390a380600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610b8384848461233a565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610bce612169565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c45906140b1565b60405180910390fd5b610c6285610c5a612169565b858403612171565b60019150509392505050565b600080600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16915091509091565b60006012905090565b6000610d6a610cd5612169565b848460016000610ce3612169565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d6591906140d1565b612171565b6001905092915050565b600080600080600860009054906101000a900460ff169350600860019054906101000a900460ff1692506009549150600a54905090919293565b610db6612169565b73ffffffffffffffffffffffffffffffffffffffff16610dd46113af565b73ffffffffffffffffffffffffffffffffffffffff1614610e2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2190613f79565b60405180910390fd5b600860029054906101000a900460ff16610e79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7090614151565b60405180910390fd5b6000600860026101000a81548160ff021916908315150217905550565b610e9e612169565b73ffffffffffffffffffffffffffffffffffffffff16610ebc6113af565b73ffffffffffffffffffffffffffffffffffffffff1614610f12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0990613f79565b60405180910390fd5b6002811015610f56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4d906141bd565b60405180910390fd5b6103e8610f61610a30565b82610f6c91906141dd565b610f76919061424e565b600a819055507fff3dd5e80294197918c284bbfc3dadd97d0b40ce92106110946329088f80068a600a54604051610fad9190613b54565b60405180910390a150565b610fc0612169565b73ffffffffffffffffffffffffffffffffffffffff16610fde6113af565b73ffffffffffffffffffffffffffffffffffffffff1614611034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102b90613f79565b60405180910390fd5b600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa90d7598849ffffb63cb2a2b23157fa85704d50370070de404a308243fe1daec60405160405180910390a380600d60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611144612169565b73ffffffffffffffffffffffffffffffffffffffff166111626113af565b73ffffffffffffffffffffffffffffffffffffffff16146111b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111af90613f79565b60405180910390fd5b6111c26000613061565b565b6111cc612169565b73ffffffffffffffffffffffffffffffffffffffff166111ea6113af565b73ffffffffffffffffffffffffffffffffffffffff1614611240576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123790613f79565b60405180910390fd5b6000600860006101000a81548160ff021916908315150217905550427ff4eaa75eae08ae80c3daf791438dac1cff2cfd3b0bad2304ec7bbb067e50261660405160405180910390a2565b611292612169565b73ffffffffffffffffffffffffffffffffffffffff166112b06113af565b73ffffffffffffffffffffffffffffffffffffffff1614611306576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fd90613f79565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc92826040516113a39190613a39565b60405180910390a25050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546113e890613efc565b80601f016020809104026020016040519081016040528092919081815260200182805461141490613efc565b80156114615780601f1061143657610100808354040283529160200191611461565b820191906000526020600020905b81548152906001019060200180831161144457829003601f168201915b5050505050905090565b600080600080600080600f54955060105494506011549350601254925060135491506014549050909192939495565b6114a2612169565b73ffffffffffffffffffffffffffffffffffffffff166114c06113af565b73ffffffffffffffffffffffffffffffffffffffff1614611516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150d90613f79565b60405180910390fd5b7f000000000000000000000000cf8551573cd53f10a96ba5fac36b7f13eaadf86973ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159b906142f1565b60405180910390fd5b6115ae8282613127565b5050565b6115ba612169565b73ffffffffffffffffffffffffffffffffffffffff166115d86113af565b73ffffffffffffffffffffffffffffffffffffffff161461162e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162590613f79565b60405180910390fd5b816013819055508060148190555060145460135461164c91906140d1565b60128190555060646012541115611698576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168f90614383565b60405180910390fd5b7fcb5f36df892836a2eaedc349de29a7581176990398ee185d16eaa8f6c1abd8f16012546013546014546040516116d1939291906143a3565b60405180910390a15050565b600080600160006116ec612169565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156117a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a09061444c565b60405180910390fd5b6117bd6117b4612169565b85858403612171565b600191505092915050565b60006117dc6117d5612169565b848461233a565b6001905092915050565b6000806000600560159054906101000a900460ff16925060065491506007549050909192565b611814612169565b73ffffffffffffffffffffffffffffffffffffffff166118326113af565b73ffffffffffffffffffffffffffffffffffffffff1614611888576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187f90613f79565b60405180910390fd5b81601081905550806011819055506011546010546118a691906140d1565b600f819055506064600f5411156118f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e9906144de565b60405180910390fd5b7f38513c502b0ab4834ac1df9502b76f75dcf7092469782cfd0db7fe664388e25e600f5460105460115460405161192b939291906143a3565b60405180910390a15050565b61193f612169565b73ffffffffffffffffffffffffffffffffffffffff1661195d6113af565b73ffffffffffffffffffffffffffffffffffffffff16146119b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119aa90613f79565b60405180910390fd5b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611a509190613a39565b60405180910390a25050565b611a64612169565b73ffffffffffffffffffffffffffffffffffffffff16611a826113af565b73ffffffffffffffffffffffffffffffffffffffff1614611ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acf90613f79565b60405180910390fd5b6001600d60006101000a81548160ff0219169083151502179055506001600560156101000a81548160ff021916908315150217905550427fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e92360405160405180910390a2565b611b45612169565b73ffffffffffffffffffffffffffffffffffffffff16611b636113af565b73ffffffffffffffffffffffffffffffffffffffff1614611bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb090613f79565b60405180910390fd5b6001821015611bfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf490614570565b60405180910390fd5b81811015611c40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3790614602565b60405180910390fd5b82600560156101000a81548160ff02191690831515021790555061271082611c66610a30565b611c7091906141dd565b611c7a919061424e565b60068190555061271081611c8c610a30565b611c9691906141dd565b611ca0919061424e565b6007819055507f52cd2cdb42ff0eeec9362d7ed5b04f64c8d022697128b5378fc51cea7e63c779838383604051611cd993929190613dcc565b60405180910390a1505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000806000601760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169250601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169150601960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1690509193909250565b611e6e612169565b73ffffffffffffffffffffffffffffffffffffffff16611e8c6113af565b73ffffffffffffffffffffffffffffffffffffffff1614611ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed990613f79565b60405180910390fd5b6000600860016101000a81548160ff021916908315150217905550427f26e776fcf7ca20aa79b5b946e9b5111f47205539ece9d7a7995271dd6a8b5bad60405160405180910390a2565b611f34612169565b73ffffffffffffffffffffffffffffffffffffffff16611f526113af565b73ffffffffffffffffffffffffffffffffffffffff1614611fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9f90613f79565b60405180910390fd5b6005811015611fec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe390614694565b60405180910390fd5b6103e8611ff7610a30565b8261200291906141dd565b61200c919061424e565b6009819055507f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace6009546040516120439190613b54565b60405180910390a150565b7f000000000000000000000000cf8551573cd53f10a96ba5fac36b7f13eaadf86981565b61207a612169565b73ffffffffffffffffffffffffffffffffffffffff166120986113af565b73ffffffffffffffffffffffffffffffffffffffff16146120ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e590613f79565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361215d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215490614726565b60405180910390fd5b61216681613061565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036121e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d7906147b8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361224f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122469061484a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161232d9190613b54565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036123a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a0906148dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612418576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240f9061496e565b60405180910390fd5b600081036124315761242c838360006131c8565b61305c565b600860009054906101000a900460ff1615612bea5761244e6113af565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156124bc575061248c6113af565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124f55750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561252f575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125485750600560149054906101000a900460ff16155b15612be957600d60009054906101000a900460ff1661264257601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806126025750601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612641576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263890614a00565b60405180910390fd5b5b600860029054906101000a900460ff161561273857600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806126f85750600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612737576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272e90614a92565b60405180910390fd5b5b600860019054906101000a900460ff1615612900576127556113af565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156127dc57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561283457507f000000000000000000000000cf8551573cd53f10a96ba5fac36b7f13eaadf86973ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156128ff5743600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106128ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b190614b4a565b60405180910390fd5b43600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156129a35750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612a4a57600a548111156129ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e490614bdc565b60405180910390fd5b6009546129f9836110f4565b82612a0491906140d1565b1115612a45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3c90614c48565b60405180910390fd5b612be8565b601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612aed5750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612b3c57600a54811115612b37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2e90614cda565b60405180910390fd5b612be7565b601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612be657600954612b99836110f4565b82612ba491906140d1565b1115612be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bdc90614c48565b60405180910390fd5b5b5b5b5b5b6000612bf5306110f4565b905060006006548210159050808015612c1a5750600560159054906101000a900460ff165b8015612c335750600560149054906101000a900460ff16155b8015612c895750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612cdf5750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612d355750601760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d79576001600560146101000a81548160ff021916908315150217905550612d5d613447565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612e2f5750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612e3957600090505b6000811561304c57601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e9c57506000601254115b15612f3657612ec96064612ebb6012548861360590919063ffffffff16565b61361b90919063ffffffff16565b905060125460145482612edc91906141dd565b612ee6919061424e565b60166000828254612ef791906140d1565b9250508190555060125460135482612f0f91906141dd565b612f19919061424e565b60156000828254612f2a91906140d1565b92505081905550613028565b601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f9157506000600f54115b1561302757612fbe6064612fb0600f548861360590919063ffffffff16565b61361b90919063ffffffff16565b9050600f5460115482612fd191906141dd565b612fdb919061424e565b60166000828254612fec91906140d1565b92505081905550600f546010548261300491906141dd565b61300e919061424e565b6015600082825461301f91906140d1565b925050819055505b5b600081111561303d5761303c8730836131c8565b5b80856130499190614cfa565b94505b6130578787876131c8565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613237576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161322e906148dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036132a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161329d9061496e565b60405180910390fd5b6132b1838383613631565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613337576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161332e90614da0565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133ca91906140d1565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161342e9190613b54565b60405180910390a3613441848484613636565b50505050565b6000613452306110f4565b90506000819050600080830361346a57505050613603565b60075483111561347a5760075492505b6000839050600047905061348d8261363b565b60006134a2824761387890919063ffffffff16565b905060006134cd866134bf6016548561360590919063ffffffff16565b61361b90919063ffffffff16565b905060006015819055506000601681905550600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168160405161352590614df1565b60006040518083038185875af1925050503d8060008114613562576040519150601f19603f3d011682016040523d82523d6000602084013e613567565b606091505b505080955050600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516135b390614df1565b60006040518083038185875af1925050503d80600081146135f0576040519150601f19603f3d011682016040523d82523d6000602084013e6135f5565b606091505b505080955050505050505050505b565b6000818361361391906141dd565b905092915050565b60008183613629919061424e565b905092915050565b505050565b505050565b6000600267ffffffffffffffff81111561365857613657614e06565b5b6040519080825280602002602001820160405280156136865781602001602082028036833780820191505090505b509050308160008151811061369e5761369d613f99565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613743573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137679190614e4a565b8160018151811061377b5761377a613f99565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506137e0307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612171565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613842959493929190614f7a565b600060405180830381600087803b15801561385c57600080fd5b505af1158015613870573d6000803e3d6000fd5b505050505050565b600081836138869190614cfa565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156138c85780820151818401526020810190506138ad565b60008484015250505050565b6000601f19601f8301169050919050565b60006138f08261388e565b6138fa8185613899565b935061390a8185602086016138aa565b613913816138d4565b840191505092915050565b6000602082019050818103600083015261393881846138e5565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006139758261394a565b9050919050565b6139858161396a565b811461399057600080fd5b50565b6000813590506139a28161397c565b92915050565b6000819050919050565b6139bb816139a8565b81146139c657600080fd5b50565b6000813590506139d8816139b2565b92915050565b600080604083850312156139f5576139f4613940565b5b6000613a0385828601613993565b9250506020613a14858286016139c9565b9150509250929050565b60008115159050919050565b613a3381613a1e565b82525050565b6000602082019050613a4e6000830184613a2a565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112613a7957613a78613a54565b5b8235905067ffffffffffffffff811115613a9657613a95613a59565b5b602083019150836020820283011115613ab257613ab1613a5e565b5b9250929050565b613ac281613a1e565b8114613acd57600080fd5b50565b600081359050613adf81613ab9565b92915050565b600080600060408486031215613afe57613afd613940565b5b600084013567ffffffffffffffff811115613b1c57613b1b613945565b5b613b2886828701613a63565b93509350506020613b3b86828701613ad0565b9150509250925092565b613b4e816139a8565b82525050565b6000602082019050613b696000830184613b45565b92915050565b600060208284031215613b8557613b84613940565b5b6000613b9384828501613993565b91505092915050565b600080600060608486031215613bb557613bb4613940565b5b6000613bc386828701613993565b9350506020613bd486828701613993565b9250506040613be5868287016139c9565b9150509250925092565b613bf88161396a565b82525050565b6000604082019050613c136000830185613bef565b613c206020830184613bef565b9392505050565b600060ff82169050919050565b613c3d81613c27565b82525050565b6000602082019050613c586000830184613c34565b92915050565b6000608082019050613c736000830187613a2a565b613c806020830186613a2a565b613c8d6040830185613b45565b613c9a6060830184613b45565b95945050505050565b600060208284031215613cb957613cb8613940565b5b6000613cc7848285016139c9565b91505092915050565b60008060408385031215613ce757613ce6613940565b5b6000613cf585828601613993565b9250506020613d0685828601613ad0565b9150509250929050565b6000602082019050613d256000830184613bef565b92915050565b600060c082019050613d406000830189613b45565b613d4d6020830188613b45565b613d5a6040830187613b45565b613d676060830186613b45565b613d746080830185613b45565b613d8160a0830184613b45565b979650505050505050565b60008060408385031215613da357613da2613940565b5b6000613db1858286016139c9565b9250506020613dc2858286016139c9565b9150509250929050565b6000606082019050613de16000830186613a2a565b613dee6020830185613b45565b613dfb6040830184613b45565b949350505050565b600080600060608486031215613e1c57613e1b613940565b5b6000613e2a86828701613ad0565b9350506020613e3b868287016139c9565b9250506040613e4c868287016139c9565b9150509250925092565b60008060408385031215613e6d57613e6c613940565b5b6000613e7b85828601613993565b9250506020613e8c85828601613993565b9150509250929050565b6000606082019050613eab6000830186613a2a565b613eb86020830185613a2a565b613ec56040830184613a2a565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613f1457607f821691505b602082108103613f2757613f26613ecd565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613f63602083613899565b9150613f6e82613f2d565b602082019050919050565b60006020820190508181036000830152613f9281613f56565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614002826139a8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361403457614033613fc8565b5b600182019050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061409b602883613899565b91506140a68261403f565b604082019050919050565b600060208201905081810360008301526140ca8161408e565b9050919050565b60006140dc826139a8565b91506140e7836139a8565b92508282019050808211156140ff576140fe613fc8565b5b92915050565b7f776c2064697361626c6564000000000000000000000000000000000000000000600082015250565b600061413b600b83613899565b915061414682614105565b602082019050919050565b6000602082019050818103600083015261416a8161412e565b9050919050565b7f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e3225600082015250565b60006141a7602083613899565b91506141b282614171565b602082019050919050565b600060208201905081810360008301526141d68161419a565b9050919050565b60006141e8826139a8565b91506141f3836139a8565b9250828202614201816139a8565b9150828204841483151761421857614217613fc8565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614259826139a8565b9150614264836139a8565b9250826142745761427361421f565b5b828204905092915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006142db603983613899565b91506142e68261427f565b604082019050919050565b6000602082019050818103600083015261430a816142ce565b9050919050565b7f546f74616c2073656c6c206665652063616e6e6f74206265206869676865722060008201527f7468616e20313030250000000000000000000000000000000000000000000000602082015250565b600061436d602983613899565b915061437882614311565b604082019050919050565b6000602082019050818103600083015261439c81614360565b9050919050565b60006060820190506143b86000830186613b45565b6143c56020830185613b45565b6143d26040830184613b45565b949350505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614436602583613899565b9150614441826143da565b604082019050919050565b6000602082019050818103600083015261446581614429565b9050919050565b7f546f74616c20627579206665652063616e6e6f7420626520686967686572207460008201527f68616e2031303025000000000000000000000000000000000000000000000000602082015250565b60006144c8602883613899565b91506144d38261446c565b604082019050919050565b600060208201905081810360008301526144f7816144bb565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e30312520746f74616c20737570706c792e000000000000000000000000602082015250565b600061455a603483613899565b9150614565826144fe565b604082019050919050565b600060208201905081810360008301526145898161454d565b9050919050565b7f6d6178696d756d20616d6f756e742063616e742062652068696768657220746860008201527f616e206d696e696d756d00000000000000000000000000000000000000000000602082015250565b60006145ec602a83613899565b91506145f782614590565b604082019050919050565b6000602082019050818103600083015261461b816145df565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061467e602483613899565b915061468982614622565b604082019050919050565b600060208201905081810360008301526146ad81614671565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614710602683613899565b915061471b826146b4565b604082019050919050565b6000602082019050818103600083015261473f81614703565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006147a2602483613899565b91506147ad82614746565b604082019050919050565b600060208201905081810360008301526147d181614795565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614834602283613899565b915061483f826147d8565b604082019050919050565b6000602082019050818103600083015261486381614827565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006148c6602583613899565b91506148d18261486a565b604082019050919050565b600060208201905081810360008301526148f5816148b9565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614958602383613899565b9150614963826148fc565b604082019050919050565b600060208201905081810360008301526149878161494b565b9050919050565b7f5f7472616e736665723a3a2054726164696e67206973206e6f7420616374697660008201527f652e000000000000000000000000000000000000000000000000000000000000602082015250565b60006149ea602283613899565b91506149f58261498e565b604082019050919050565b60006020820190508181036000830152614a19816149dd565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e2000000000000000000000000000000000000000000000000000000000602082015250565b6000614a7c602483613899565b9150614a8782614a20565b604082019050919050565b60006020820190508181036000830152614aab81614a6f565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614b34604983613899565b9150614b3f82614ab2565b606082019050919050565b60006020820190508181036000830152614b6381614b27565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d617854782e0000000000000000000000000000000000000000000000000000602082015250565b6000614bc6602683613899565b9150614bd182614b6a565b604082019050919050565b60006020820190508181036000830152614bf581614bb9565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614c32601383613899565b9150614c3d82614bfc565b602082019050919050565b60006020820190508181036000830152614c6181614c25565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d617854782e00000000000000000000000000000000000000000000000000602082015250565b6000614cc4602783613899565b9150614ccf82614c68565b604082019050919050565b60006020820190508181036000830152614cf381614cb7565b9050919050565b6000614d05826139a8565b9150614d10836139a8565b9250828203905081811115614d2857614d27613fc8565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614d8a602683613899565b9150614d9582614d2e565b604082019050919050565b60006020820190508181036000830152614db981614d7d565b9050919050565b600081905092915050565b50565b6000614ddb600083614dc0565b9150614de682614dcb565b600082019050919050565b6000614dfc82614dce565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600081519050614e448161397c565b92915050565b600060208284031215614e6057614e5f613940565b5b6000614e6e84828501614e35565b91505092915050565b6000819050919050565b6000819050919050565b6000614ea6614ea1614e9c84614e77565b614e81565b6139a8565b9050919050565b614eb681614e8b565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614ef18161396a565b82525050565b6000614f038383614ee8565b60208301905092915050565b6000602082019050919050565b6000614f2782614ebc565b614f318185614ec7565b9350614f3c83614ed8565b8060005b83811015614f6d578151614f548882614ef7565b9750614f5f83614f0f565b925050600181019050614f40565b5085935050505092915050565b600060a082019050614f8f6000830188613b45565b614f9c6020830187614ead565b8181036040830152614fae8186614f1c565b9050614fbd6060830185613bef565b614fca6080830184613b45565b969550505050505056fea2646970667358221220bc14f3a61f269b640e9aac3720effef68795e7865aaa1f1394405afb0e7f1b4a64736f6c63430008130033

Deployed Bytecode Sourcemap

25585:21823:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11125:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13358:194;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26294:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41098:241;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12245:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40807:160;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14030:529;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32376:210;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;12087:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14964:290;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31760:390;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;40975:115;;;;;;;;;;;;;:::i;:::-;;36561:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40467:166;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12416:143;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22464:103;;;;;;;;;;;;;:::i;:::-;;34885:130;;;;;;;;;;;;;:::i;:::-;;37486:200;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21813:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11344:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33050:510;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;;;;;;;;39785:300;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38632:419;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15753:475;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12772:200;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30986:353;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;37973:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39300:174;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34571:159;;;;;;;;;;;;;:::i;:::-;;35772:553;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13035:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34010:418;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;35155:152;;;;;;;;;;;;;:::i;:::-;;36983:235;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25704:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22722:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11125:100;11179:13;11212:5;11205:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11125:100;:::o;13358:194::-;13466:4;13483:39;13492:12;:10;:12::i;:::-;13506:7;13515:6;13483:8;:39::i;:::-;13540:4;13533:11;;13358:194;;;;:::o;26294:31::-;;;;;;;;;;;;;:::o;41098:241::-;22044:12;:10;:12::i;:::-;22033:23;;:7;:5;:7::i;:::-;:23;;;22025:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41222:9:::1;41217:115;41241:10;;:17;;41237:1;:21;41217:115;;;41312:8;41280:14;:29;41295:10;;41306:1;41295:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;41280:29;;;;;;;;;;;;;;;;:40;;;;;;;;;;;;;;;;;;41260:3;;;;;:::i;:::-;;;;41217:115;;;;41098:241:::0;;;:::o;12245:108::-;12306:7;12333:12;;12326:19;;12245:108;:::o;40807:160::-;22044:12;:10;:12::i;:::-;22033:23;;:7;:5;:7::i;:::-;:23;;;22025:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40913:11:::1;;;;;;;;;;;40883:42;;40902:9;40883:42;;;;;;;;;;;;40950:9;40936:11;;:23;;;;;;;;;;;;;;;;;;40807:160:::0;:::o;14030:529::-;14170:4;14187:36;14197:6;14205:9;14216:6;14187:9;:36::i;:::-;14236:24;14263:11;:19;14275:6;14263:19;;;;;;;;;;;;;;;:33;14283:12;:10;:12::i;:::-;14263:33;;;;;;;;;;;;;;;;14236:60;;14349:6;14329:16;:26;;14307:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;14459:57;14468:6;14476:12;:10;:12::i;:::-;14509:6;14490:16;:25;14459:8;:57::i;:::-;14547:4;14540:11;;;14030:529;;;;;:::o;32376:210::-;32462:20;32497;32553:11;;;;;;;;;;;32566;;;;;;;;;;;32545:33;;;;32376:210;;:::o;12087:93::-;12145:5;12170:2;12163:9;;12087:93;:::o;14964:290::-;15077:4;15094:130;15117:12;:10;:12::i;:::-;15144:7;15203:10;15166:11;:25;15178:12;:10;:12::i;:::-;15166:25;;;;;;;;;;;;;;;:34;15192:7;15166:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;15094:8;:130::i;:::-;15242:4;15235:11;;14964:290;;;;:::o;31760:390::-;31846:20;31881:26;31922:18;31955:14;32015;;;;;;;;;;;31997:32;;32064:20;;;;;;;;;;;32040:44;;32108:9;;32095:22;;32137:5;;32128:14;;31760:390;;;;:::o;40975:115::-;22044:12;:10;:12::i;:::-;22033:23;;:7;:5;:7::i;:::-;:23;;;22025:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41033:7:::1;;;;;;;;;;;41025:31;;;;;;;;;;;;:::i;:::-;;;;;;;;;41077:5;41067:7;;:15;;;;;;;;;;;;;;;;;;40975:115::o:0;36561:215::-;22044:12;:10;:12::i;:::-;22033:23;;:7;:5;:7::i;:::-;:23;;;22025:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36645:1:::1;36635:6;:11;;36627:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;36729:4;36712:13;:11;:13::i;:::-;36703:6;:22;;;;:::i;:::-;36702:31;;;;:::i;:::-;36694:5;:39;;;;36749:19;36762:5;;36749:19;;;;;;:::i;:::-;;;;;;;;36561:215:::0;:::o;40467:166::-;22044:12;:10;:12::i;:::-;22033:23;;:7;:5;:7::i;:::-;:23;;;22025:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40579:11:::1;;;;;;;;;;;40549:42;;40568:9;40549:42;;;;;;;;;;;;40616:9;40602:11;;:23;;;;;;;;;;;;;;;;;;40467:166:::0;:::o;12416:143::-;12506:7;12533:9;:18;12543:7;12533:18;;;;;;;;;;;;;;;;12526:25;;12416:143;;;:::o;22464:103::-;22044:12;:10;:12::i;:::-;22033:23;;:7;:5;:7::i;:::-;:23;;;22025:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22529:30:::1;22556:1;22529:18;:30::i;:::-;22464:103::o:0;34885:130::-;22044:12;:10;:12::i;:::-;22033:23;;:7;:5;:7::i;:::-;:23;;;22025:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34956:5:::1;34939:14;;:22;;;;;;;;;;;;;;;;;;34991:15;34977:30;;;;;;;;;;34885:130::o:0;37486:200::-;22044:12;:10;:12::i;:::-;22033:23;;:7;:5;:7::i;:::-;:23;;;22025:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37627:4:::1;37601:15;:23;37617:6;37601:23;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;37665:6;37647:31;;;37673:4;37647:31;;;;;;:::i;:::-;;;;;;;;37486:200:::0;;:::o;21813:87::-;21859:7;21886:6;;;;;;;;;;;21879:13;;21813:87;:::o;11344:104::-;11400:13;11433:7;11426:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11344:104;:::o;33050:510::-;33133:20;33168:18;33201;33234:21;33270:19;33304;33366:11;;33351:26;;33401:9;;33388:22;;33434:9;;33421:22;;33470:12;;33454:28;;33507:10;;33493:24;;33542:10;;33528:24;;33050:510;;;;;;:::o;39785:300::-;22044:12;:10;:12::i;:::-;22033:23;;:7;:5;:7::i;:::-;:23;;;22025:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39931:7:::1;39923:15;;:4;:15;;::::0;39901:122:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;40036:41;40065:4;40071:5;40036:28;:41::i;:::-;39785:300:::0;;:::o;38632:419::-;22044:12;:10;:12::i;:::-;22033:23;;:7;:5;:7::i;:::-;:23;;;22025:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38761:13:::1;38748:10;:26;;;;38798:7;38785:10;:20;;;;38844:10;;38831;;:23;;;;:::i;:::-;38816:12;:38;;;;38903:3;38887:12;;:19;;38865:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;38991:52;39006:12;;39020:10;;39032;;38991:52;;;;;;;;:::i;:::-;;;;;;;;38632:419:::0;;:::o;15753:475::-;15871:4;15888:24;15915:11;:25;15927:12;:10;:12::i;:::-;15915:25;;;;;;;;;;;;;;;:34;15941:7;15915:34;;;;;;;;;;;;;;;;15888:61;;16002:15;15982:16;:35;;15960:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;16118:67;16127:12;:10;:12::i;:::-;16141:7;16169:15;16150:16;:34;16118:8;:67::i;:::-;16216:4;16209:11;;;15753:475;;;;:::o;12772:200::-;12883:4;12900:42;12910:12;:10;:12::i;:::-;12924:9;12935:6;12900:9;:42::i;:::-;12960:4;12953:11;;12772:200;;;;:::o;30986:353::-;31074:21;31110:25;31150;31222:15;;;;;;;;;;;31203:34;;31268:16;;31248:36;;31315:16;;31295:36;;30986:353;;;:::o;37973:370::-;22044:12;:10;:12::i;:::-;22033:23;;:7;:5;:7::i;:::-;:23;;;22025:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38100:13:::1;38088:9;:25;;;;38136:7;38124:9;:19;;;;38180:9;;38168;;:21;;;;:::i;:::-;38154:11;:35;;;;38223:3;38208:11;;:18;;38200:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;38287:48;38301:11;;38314:9;;38325;;38287:48;;;;;;;;:::i;:::-;;;;;;;;37973:370:::0;;:::o;39300:174::-;22044:12;:10;:12::i;:::-;22033:23;;:7;:5;:7::i;:::-;:23;;;22025:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39408:8:::1;39385:11;:20;39397:7;39385:20;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;39448:7;39432:34;;;39457:8;39432:34;;;;;;:::i;:::-;;;;;;;;39300:174:::0;;:::o;34571:159::-;22044:12;:10;:12::i;:::-;22033:23;;:7;:5;:7::i;:::-;:23;;;22025:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34638:4:::1;34624:11;;:18;;;;;;;;;;;;;;;;;;34671:4;34653:15;;:22;;;;;;;;;;;;;;;;;;34706:15;34691:31;;;;;;;;;;34571:159::o:0;35772:553::-;22044:12;:10;:12::i;:::-;22033:23;;:7;:5;:7::i;:::-;:23;;;22025:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35938:1:::1;35930:4;:9;;35908:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;36046:4;36038;:12;;36030:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36128:8;36110:15;;:26;;;;;;;;;;;;;;;;;;36191:5;36183:4;36167:13;:11;:13::i;:::-;:20;;;;:::i;:::-;36166:30;;;;:::i;:::-;36147:16;:49;;;;36251:5;36243:4;36227:13;:11;:13::i;:::-;:20;;;;:::i;:::-;36226:30;;;;:::i;:::-;36207:16;:49;;;;36272:45;36296:8;36306:4;36312;36272:45;;;;;;;;:::i;:::-;;;;;;;;35772:553:::0;;;:::o;13035:176::-;13149:7;13176:11;:18;13188:5;13176:18;;;;;;;;;;;;;;;:27;13195:7;13176:27;;;;;;;;;;;;;;;;13169:34;;13035:176;;;;:::o;34010:418::-;34130:17;34162:21;34198:31;34272:11;:20;34284:7;34272:20;;;;;;;;;;;;;;;;;;;;;;;;;34257:35;;34322:15;:24;34338:7;34322:24;;;;;;;;;;;;;;;;;;;;;;;;;34303:43;;34386:25;:34;34412:7;34386:34;;;;;;;;;;;;;;;;;;;;;;;;;34357:63;;34010:418;;;;;:::o;35155:152::-;22044:12;:10;:12::i;:::-;22033:23;;:7;:5;:7::i;:::-;:23;;;22025:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35240:5:::1;35217:20;;:28;;;;;;;;;;;;;;;;;;35283:15;35261:38;;;;;;;;;;35155:152::o:0;36983:235::-;22044:12;:10;:12::i;:::-;22033:23;;:7;:5;:7::i;:::-;:23;;;22025:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37071:1:::1;37061:6;:11;;37053:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;37163:4;37146:13;:11;:13::i;:::-;37137:6;:22;;;;:::i;:::-;37136:31;;;;:::i;:::-;37124:9;:43;;;;37183:27;37200:9;;37183:27;;;;;;:::i;:::-;;;;;;;;36983:235:::0;:::o;25704:32::-;;;:::o;22722:238::-;22044:12;:10;:12::i;:::-;22033:23;;:7;:5;:7::i;:::-;:23;;;22025:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22845:1:::1;22825:22;;:8;:22;;::::0;22803:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;22924:28;22943:8;22924:18;:28::i;:::-;22722:238:::0;:::o;10131:98::-;10184:7;10211:10;10204:17;;10131:98;:::o;19536:380::-;19689:1;19672:19;;:5;:19;;;19664:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19770:1;19751:21;;:7;:21;;;19743:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19854:6;19824:11;:18;19836:5;19824:18;;;;;;;;;;;;;;;:27;19843:7;19824:27;;;;;;;;;;;;;;;:36;;;;19892:7;19876:32;;19885:5;19876:32;;;19901:6;19876:32;;;;;;:::i;:::-;;;;;;;;19536:380;;;:::o;41347:4535::-;41495:1;41479:18;;:4;:18;;;41471:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41572:1;41558:16;;:2;:16;;;41550:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;41641:1;41631:6;:11;41627:93;;41659:28;41675:4;41681:2;41685:1;41659:15;:28::i;:::-;41702:7;;41627:93;41736:14;;;;;;;;;;;41732:2517;;;41797:7;:5;:7::i;:::-;41789:15;;:4;:15;;;;:49;;;;;41831:7;:5;:7::i;:::-;41825:13;;:2;:13;;;;41789:49;:86;;;;;41873:1;41859:16;;:2;:16;;;;41789:86;:128;;;;;41910:6;41896:21;;:2;:21;;;;41789:128;:158;;;;;41939:8;;;;;;;;;;;41938:9;41789:158;41767:2471;;;41987:11;;;;;;;;;;;41982:217;;42057:11;:17;42069:4;42057:17;;;;;;;;;;;;;;;;;;;;;;;;;:36;;;;42078:11;:15;42090:2;42078:15;;;;;;;;;;;;;;;;;;;;;;;;;42057:36;42023:156;;;;;;;;;;;;:::i;:::-;;;;;;;;;41982:217;42221:7;;;;;;;;;;;42217:220;;;42287:14;:20;42302:4;42287:20;;;;;;;;;;;;;;;;;;;;;;;;;:42;;;;42311:14;:18;42326:2;42311:18;;;;;;;;;;;;;;;;;;;;;;;;;42287:42;42253:164;;;;;;;;;;;;:::i;:::-;;;;;;;;;42217:220;42593:20;;;;;;;;;;;42589:629;;;42674:7;:5;:7::i;:::-;42668:13;;:2;:13;;;;:66;;;;;42724:9;42710:24;;:2;:24;;;;42668:66;:117;;;;;42777:7;42763:22;;:2;:22;;;;42668:117;42638:561;;;42949:12;42874:28;:39;42903:9;42874:39;;;;;;;;;;;;;;;;:87;42836:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;43163:12;43121:28;:39;43150:9;43121:39;;;;;;;;;;;;;;;:54;;;;42638:561;42589:629;43270:25;:31;43296:4;43270:31;;;;;;;;;;;;;;;;;;;;;;;;;:55;;;;;43306:15;:19;43322:2;43306:19;;;;;;;;;;;;;;;;;;;;;;;;;43305:20;43270:55;43266:957;;;43394:5;;43384:6;:15;;43350:139;;;;;;;;;;;;:::i;:::-;;;;;;;;;43572:9;;43555:13;43565:2;43555:9;:13::i;:::-;43546:6;:22;;;;:::i;:::-;:35;;43512:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43266:957;;;43750:25;:29;43776:2;43750:29;;;;;;;;;;;;;;;;;;;;;;;;;:55;;;;;43784:15;:21;43800:4;43784:21;;;;;;;;;;;;;;;;;;;;;;;;;43783:22;43750:55;43724:499;;;43892:5;;43882:6;:15;;43848:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43724:499;;;44019:15;:19;44035:2;44019:19;;;;;;;;;;;;;;;;;;;;;;;;;44014:209;;44123:9;;44106:13;44116:2;44106:9;:13::i;:::-;44097:6;:22;;;;:::i;:::-;:35;;44063:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;44014:209;43724:499;43266:957;41767:2471;41732:2517;44261:28;44292:24;44310:4;44292:9;:24::i;:::-;44261:55;;44329:12;44368:16;;44344:20;:40;;44329:55;;44415:7;:39;;;;;44439:15;;;;;;;;;;;44415:39;:65;;;;;44472:8;;;;;;;;;;;44471:9;44415:65;:114;;;;;44498:25;:31;44524:4;44498:31;;;;;;;;;;;;;;;;;;;;;;;;;44497:32;44415:114;:149;;;;;44547:11;:17;44559:4;44547:17;;;;;;;;;;;;;;;;;;;;;;;;;44546:18;44415:149;:182;;;;;44582:11;:15;44594:2;44582:15;;;;;;;;;;;;;;;;;;;;;;;;;44581:16;44415:182;44397:314;;;44635:4;44624:8;;:15;;;;;;;;;;;;;;;;;;44656:10;:8;:10::i;:::-;44694:5;44683:8;;:16;;;;;;;;;;;;;;;;;;44397:314;44723:12;44739:8;;;;;;;;;;;44738:9;44723:24;;44849:11;:17;44861:4;44849:17;;;;;;;;;;;;;;;;;;;;;;;;;:36;;;;44870:11;:15;44882:2;44870:15;;;;;;;;;;;;;;;;;;;;;;;;;44849:36;44845:84;;;44912:5;44902:15;;44845:84;44941:12;45046:7;45042:787;;;45098:25;:29;45124:2;45098:29;;;;;;;;;;;;;;;;;;;;;;;;;:49;;;;;45146:1;45131:12;;:16;45098:49;45094:586;;;45175:33;45204:3;45175:24;45186:12;;45175:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;45168:40;;45265:12;;45251:10;;45244:4;:17;;;;:::i;:::-;45243:34;;;;:::i;:::-;45227:12;;:50;;;;;;;:::i;:::-;;;;;;;;45340:12;;45326:10;;45319:4;:17;;;;:::i;:::-;45318:34;;;;:::i;:::-;45296:18;;:56;;;;;;;:::i;:::-;;;;;;;;45094:586;;;45414:25;:31;45440:4;45414:31;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;45463:1;45449:11;;:15;45414:50;45410:270;;;45492:32;45520:3;45492:23;45503:11;;45492:6;:10;;:23;;;;:::i;:::-;:27;;:32;;;;:::i;:::-;45485:39;;45580:11;;45567:9;;45560:4;:16;;;;:::i;:::-;45559:32;;;;:::i;:::-;45543:12;;:48;;;;;;;:::i;:::-;;;;;;;;45653:11;;45640:9;;45633:4;:16;;;;:::i;:::-;45632:32;;;;:::i;:::-;45610:18;;:54;;;;;;;:::i;:::-;;;;;;;;45410:270;45094:586;45707:1;45700:4;:8;45696:91;;;45729:42;45745:4;45759;45766;45729:15;:42::i;:::-;45696:91;45813:4;45803:14;;;;;:::i;:::-;;;45042:787;45841:33;45857:4;45863:2;45867:6;45841:15;:33::i;:::-;41460:4422;;;;41347:4535;;;;:::o;23120:191::-;23194:16;23213:6;;;;;;;;;;;23194:25;;23239:8;23230:6;;:17;;;;;;;;;;;;;;;;;;23294:8;23263:40;;23284:8;23263:40;;;;;;;;;;;;23183:128;23120:191;:::o;40093:188::-;40210:5;40176:25;:31;40202:4;40176:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40267:5;40233:40;;40261:4;40233:40;;;;;;;;;;;;40093:188;;:::o;16718:770::-;16876:1;16858:20;;:6;:20;;;16850:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;16960:1;16939:23;;:9;:23;;;16931:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17015:47;17036:6;17044:9;17055:6;17015:20;:47::i;:::-;17075:21;17099:9;:17;17109:6;17099:17;;;;;;;;;;;;;;;;17075:41;;17166:6;17149:13;:23;;17127:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;17310:6;17294:13;:22;17274:9;:17;17284:6;17274:17;;;;;;;;;;;;;;;:42;;;;17362:6;17338:9;:20;17348:9;17338:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;17403:9;17386:35;;17395:6;17386:35;;;17414:6;17386:35;;;;;;:::i;:::-;;;;;;;;17434:46;17454:6;17462:9;17473:6;17434:19;:46::i;:::-;16839:649;16718:770;;;:::o;46471:934::-;46510:23;46536:24;46554:4;46536:9;:24::i;:::-;46510:50;;46571:25;46599:15;46571:43;;46625:12;46673:1;46654:15;:20;46650:59;;46691:7;;;;;46650:59;46743:16;;46725:15;:34;46721:101;;;46794:16;;46776:34;;46721:101;46834:26;46863:15;46834:44;;46891:25;46919:21;46891:49;;46953:36;46970:18;46953:16;:36::i;:::-;47002:18;47023:44;47049:17;47023:21;:25;;:44;;;;:::i;:::-;47002:65;;47080:17;47100:51;47133:17;47100:28;47115:12;;47100:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;47080:71;;47185:1;47164:18;:22;;;;47212:1;47197:12;:16;;;;47248:11;;;;;;;;;;;47240:25;;47273:9;47240:47;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47226:61;;;;;47322:11;;;;;;;;;;;47314:25;;47347:21;47314:83;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47300:97;;;;;46499:906;;;;;;;46471:934;:::o;3490:98::-;3548:7;3579:1;3575;:5;;;;:::i;:::-;3568:12;;3490:98;;;;:::o;3889:::-;3947:7;3978:1;3974;:5;;;;:::i;:::-;3967:12;;3889:98;;;;:::o;20516:125::-;;;;:::o;21245:124::-;;;;:::o;45890:571::-;46016:21;46054:1;46040:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46016:40;;46085:4;46067;46072:1;46067:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;46111:9;:14;;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46101:4;46106:1;46101:7;;;;;;;;:::i;:::-;;;;;;;:26;;;;;;;;;;;46140:56;46157:4;46172:9;46184:11;46140:8;:56::i;:::-;46235:9;:60;;;46310:11;46336:1;46380:4;46407;46427:15;46235:218;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45945:516;45890:571;:::o;3133:98::-;3191:7;3222:1;3218;:5;;;;:::i;:::-;3211:12;;3133:98;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:117::-;3555:1;3552;3545:12;3569:117;3678:1;3675;3668:12;3692:117;3801:1;3798;3791:12;3832:568;3905:8;3915:6;3965:3;3958:4;3950:6;3946:17;3942:27;3932:122;;3973:79;;:::i;:::-;3932:122;4086:6;4073:20;4063:30;;4116:18;4108:6;4105:30;4102:117;;;4138:79;;:::i;:::-;4102:117;4252:4;4244:6;4240:17;4228:29;;4306:3;4298:4;4290:6;4286:17;4276:8;4272:32;4269:41;4266:128;;;4313:79;;:::i;:::-;4266:128;3832:568;;;;;:::o;4406:116::-;4476:21;4491:5;4476:21;:::i;:::-;4469:5;4466:32;4456:60;;4512:1;4509;4502:12;4456:60;4406:116;:::o;4528:133::-;4571:5;4609:6;4596:20;4587:29;;4625:30;4649:5;4625:30;:::i;:::-;4528:133;;;;:::o;4667:698::-;4759:6;4767;4775;4824:2;4812:9;4803:7;4799:23;4795:32;4792:119;;;4830:79;;:::i;:::-;4792:119;4978:1;4967:9;4963:17;4950:31;5008:18;5000:6;4997:30;4994:117;;;5030:79;;:::i;:::-;4994:117;5143:80;5215:7;5206:6;5195:9;5191:22;5143:80;:::i;:::-;5125:98;;;;4921:312;5272:2;5298:50;5340:7;5331:6;5320:9;5316:22;5298:50;:::i;:::-;5288:60;;5243:115;4667:698;;;;;:::o;5371:118::-;5458:24;5476:5;5458:24;:::i;:::-;5453:3;5446:37;5371:118;;:::o;5495:222::-;5588:4;5626:2;5615:9;5611:18;5603:26;;5639:71;5707:1;5696:9;5692:17;5683:6;5639:71;:::i;:::-;5495:222;;;;:::o;5723:329::-;5782:6;5831:2;5819:9;5810:7;5806:23;5802:32;5799:119;;;5837:79;;:::i;:::-;5799:119;5957:1;5982:53;6027:7;6018:6;6007:9;6003:22;5982:53;:::i;:::-;5972:63;;5928:117;5723:329;;;;:::o;6058:619::-;6135:6;6143;6151;6200:2;6188:9;6179:7;6175:23;6171:32;6168:119;;;6206:79;;:::i;:::-;6168:119;6326:1;6351:53;6396:7;6387:6;6376:9;6372:22;6351:53;:::i;:::-;6341:63;;6297:117;6453:2;6479:53;6524:7;6515:6;6504:9;6500:22;6479:53;:::i;:::-;6469:63;;6424:118;6581:2;6607:53;6652:7;6643:6;6632:9;6628:22;6607:53;:::i;:::-;6597:63;;6552:118;6058:619;;;;;:::o;6683:118::-;6770:24;6788:5;6770:24;:::i;:::-;6765:3;6758:37;6683:118;;:::o;6807:332::-;6928:4;6966:2;6955:9;6951:18;6943:26;;6979:71;7047:1;7036:9;7032:17;7023:6;6979:71;:::i;:::-;7060:72;7128:2;7117:9;7113:18;7104:6;7060:72;:::i;:::-;6807:332;;;;;:::o;7145:86::-;7180:7;7220:4;7213:5;7209:16;7198:27;;7145:86;;;:::o;7237:112::-;7320:22;7336:5;7320:22;:::i;:::-;7315:3;7308:35;7237:112;;:::o;7355:214::-;7444:4;7482:2;7471:9;7467:18;7459:26;;7495:67;7559:1;7548:9;7544:17;7535:6;7495:67;:::i;:::-;7355:214;;;;:::o;7575:529::-;7740:4;7778:3;7767:9;7763:19;7755:27;;7792:65;7854:1;7843:9;7839:17;7830:6;7792:65;:::i;:::-;7867:66;7929:2;7918:9;7914:18;7905:6;7867:66;:::i;:::-;7943:72;8011:2;8000:9;7996:18;7987:6;7943:72;:::i;:::-;8025;8093:2;8082:9;8078:18;8069:6;8025:72;:::i;:::-;7575:529;;;;;;;:::o;8110:329::-;8169:6;8218:2;8206:9;8197:7;8193:23;8189:32;8186:119;;;8224:79;;:::i;:::-;8186:119;8344:1;8369:53;8414:7;8405:6;8394:9;8390:22;8369:53;:::i;:::-;8359:63;;8315:117;8110:329;;;;:::o;8445:468::-;8510:6;8518;8567:2;8555:9;8546:7;8542:23;8538:32;8535:119;;;8573:79;;:::i;:::-;8535:119;8693:1;8718:53;8763:7;8754:6;8743:9;8739:22;8718:53;:::i;:::-;8708:63;;8664:117;8820:2;8846:50;8888:7;8879:6;8868:9;8864:22;8846:50;:::i;:::-;8836:60;;8791:115;8445:468;;;;;:::o;8919:222::-;9012:4;9050:2;9039:9;9035:18;9027:26;;9063:71;9131:1;9120:9;9116:17;9107:6;9063:71;:::i;:::-;8919:222;;;;:::o;9147:775::-;9380:4;9418:3;9407:9;9403:19;9395:27;;9432:71;9500:1;9489:9;9485:17;9476:6;9432:71;:::i;:::-;9513:72;9581:2;9570:9;9566:18;9557:6;9513:72;:::i;:::-;9595;9663:2;9652:9;9648:18;9639:6;9595:72;:::i;:::-;9677;9745:2;9734:9;9730:18;9721:6;9677:72;:::i;:::-;9759:73;9827:3;9816:9;9812:19;9803:6;9759:73;:::i;:::-;9842;9910:3;9899:9;9895:19;9886:6;9842:73;:::i;:::-;9147:775;;;;;;;;;:::o;9928:474::-;9996:6;10004;10053:2;10041:9;10032:7;10028:23;10024:32;10021:119;;;10059:79;;:::i;:::-;10021:119;10179:1;10204:53;10249:7;10240:6;10229:9;10225:22;10204:53;:::i;:::-;10194:63;;10150:117;10306:2;10332:53;10377:7;10368:6;10357:9;10353:22;10332:53;:::i;:::-;10322:63;;10277:118;9928:474;;;;;:::o;10408:430::-;10551:4;10589:2;10578:9;10574:18;10566:26;;10602:65;10664:1;10653:9;10649:17;10640:6;10602:65;:::i;:::-;10677:72;10745:2;10734:9;10730:18;10721:6;10677:72;:::i;:::-;10759;10827:2;10816:9;10812:18;10803:6;10759:72;:::i;:::-;10408:430;;;;;;:::o;10844:613::-;10918:6;10926;10934;10983:2;10971:9;10962:7;10958:23;10954:32;10951:119;;;10989:79;;:::i;:::-;10951:119;11109:1;11134:50;11176:7;11167:6;11156:9;11152:22;11134:50;:::i;:::-;11124:60;;11080:114;11233:2;11259:53;11304:7;11295:6;11284:9;11280:22;11259:53;:::i;:::-;11249:63;;11204:118;11361:2;11387:53;11432:7;11423:6;11412:9;11408:22;11387:53;:::i;:::-;11377:63;;11332:118;10844:613;;;;;:::o;11463:474::-;11531:6;11539;11588:2;11576:9;11567:7;11563:23;11559:32;11556:119;;;11594:79;;:::i;:::-;11556:119;11714:1;11739:53;11784:7;11775:6;11764:9;11760:22;11739:53;:::i;:::-;11729:63;;11685:117;11841:2;11867:53;11912:7;11903:6;11892:9;11888:22;11867:53;:::i;:::-;11857:63;;11812:118;11463:474;;;;;:::o;11943:406::-;12074:4;12112:2;12101:9;12097:18;12089:26;;12125:65;12187:1;12176:9;12172:17;12163:6;12125:65;:::i;:::-;12200:66;12262:2;12251:9;12247:18;12238:6;12200:66;:::i;:::-;12276;12338:2;12327:9;12323:18;12314:6;12276:66;:::i;:::-;11943:406;;;;;;:::o;12355:180::-;12403:77;12400:1;12393:88;12500:4;12497:1;12490:15;12524:4;12521:1;12514:15;12541:320;12585:6;12622:1;12616:4;12612:12;12602:22;;12669:1;12663:4;12659:12;12690:18;12680:81;;12746:4;12738:6;12734:17;12724:27;;12680:81;12808:2;12800:6;12797:14;12777:18;12774:38;12771:84;;12827:18;;:::i;:::-;12771:84;12592:269;12541:320;;;:::o;12867:182::-;13007:34;13003:1;12995:6;12991:14;12984:58;12867:182;:::o;13055:366::-;13197:3;13218:67;13282:2;13277:3;13218:67;:::i;:::-;13211:74;;13294:93;13383:3;13294:93;:::i;:::-;13412:2;13407:3;13403:12;13396:19;;13055:366;;;:::o;13427:419::-;13593:4;13631:2;13620:9;13616:18;13608:26;;13680:9;13674:4;13670:20;13666:1;13655:9;13651:17;13644:47;13708:131;13834:4;13708:131;:::i;:::-;13700:139;;13427:419;;;:::o;13852:180::-;13900:77;13897:1;13890:88;13997:4;13994:1;13987:15;14021:4;14018:1;14011:15;14038:180;14086:77;14083:1;14076:88;14183:4;14180:1;14173:15;14207:4;14204:1;14197:15;14224:233;14263:3;14286:24;14304:5;14286:24;:::i;:::-;14277:33;;14332:66;14325:5;14322:77;14319:103;;14402:18;;:::i;:::-;14319:103;14449:1;14442:5;14438:13;14431:20;;14224:233;;;:::o;14463:227::-;14603:34;14599:1;14591:6;14587:14;14580:58;14672:10;14667:2;14659:6;14655:15;14648:35;14463:227;:::o;14696:366::-;14838:3;14859:67;14923:2;14918:3;14859:67;:::i;:::-;14852:74;;14935:93;15024:3;14935:93;:::i;:::-;15053:2;15048:3;15044:12;15037:19;;14696:366;;;:::o;15068:419::-;15234:4;15272:2;15261:9;15257:18;15249:26;;15321:9;15315:4;15311:20;15307:1;15296:9;15292:17;15285:47;15349:131;15475:4;15349:131;:::i;:::-;15341:139;;15068:419;;;:::o;15493:191::-;15533:3;15552:20;15570:1;15552:20;:::i;:::-;15547:25;;15586:20;15604:1;15586:20;:::i;:::-;15581:25;;15629:1;15626;15622:9;15615:16;;15650:3;15647:1;15644:10;15641:36;;;15657:18;;:::i;:::-;15641:36;15493:191;;;;:::o;15690:161::-;15830:13;15826:1;15818:6;15814:14;15807:37;15690:161;:::o;15857:366::-;15999:3;16020:67;16084:2;16079:3;16020:67;:::i;:::-;16013:74;;16096:93;16185:3;16096:93;:::i;:::-;16214:2;16209:3;16205:12;16198:19;;15857:366;;;:::o;16229:419::-;16395:4;16433:2;16422:9;16418:18;16410:26;;16482:9;16476:4;16472:20;16468:1;16457:9;16453:17;16446:47;16510:131;16636:4;16510:131;:::i;:::-;16502:139;;16229:419;;;:::o;16654:182::-;16794:34;16790:1;16782:6;16778:14;16771:58;16654:182;:::o;16842:366::-;16984:3;17005:67;17069:2;17064:3;17005:67;:::i;:::-;16998:74;;17081:93;17170:3;17081:93;:::i;:::-;17199:2;17194:3;17190:12;17183:19;;16842:366;;;:::o;17214:419::-;17380:4;17418:2;17407:9;17403:18;17395:26;;17467:9;17461:4;17457:20;17453:1;17442:9;17438:17;17431:47;17495:131;17621:4;17495:131;:::i;:::-;17487:139;;17214:419;;;:::o;17639:410::-;17679:7;17702:20;17720:1;17702:20;:::i;:::-;17697:25;;17736:20;17754:1;17736:20;:::i;:::-;17731:25;;17791:1;17788;17784:9;17813:30;17831:11;17813:30;:::i;:::-;17802:41;;17992:1;17983:7;17979:15;17976:1;17973:22;17953:1;17946:9;17926:83;17903:139;;18022:18;;:::i;:::-;17903:139;17687:362;17639:410;;;;:::o;18055:180::-;18103:77;18100:1;18093:88;18200:4;18197:1;18190:15;18224:4;18221:1;18214:15;18241:185;18281:1;18298:20;18316:1;18298:20;:::i;:::-;18293:25;;18332:20;18350:1;18332:20;:::i;:::-;18327:25;;18371:1;18361:35;;18376:18;;:::i;:::-;18361:35;18418:1;18415;18411:9;18406:14;;18241:185;;;;:::o;18432:244::-;18572:34;18568:1;18560:6;18556:14;18549:58;18641:27;18636:2;18628:6;18624:15;18617:52;18432:244;:::o;18682:366::-;18824:3;18845:67;18909:2;18904:3;18845:67;:::i;:::-;18838:74;;18921:93;19010:3;18921:93;:::i;:::-;19039:2;19034:3;19030:12;19023:19;;18682:366;;;:::o;19054:419::-;19220:4;19258:2;19247:9;19243:18;19235:26;;19307:9;19301:4;19297:20;19293:1;19282:9;19278:17;19271:47;19335:131;19461:4;19335:131;:::i;:::-;19327:139;;19054:419;;;:::o;19479:228::-;19619:34;19615:1;19607:6;19603:14;19596:58;19688:11;19683:2;19675:6;19671:15;19664:36;19479:228;:::o;19713:366::-;19855:3;19876:67;19940:2;19935:3;19876:67;:::i;:::-;19869:74;;19952:93;20041:3;19952:93;:::i;:::-;20070:2;20065:3;20061:12;20054:19;;19713:366;;;:::o;20085:419::-;20251:4;20289:2;20278:9;20274:18;20266:26;;20338:9;20332:4;20328:20;20324:1;20313:9;20309:17;20302:47;20366:131;20492:4;20366:131;:::i;:::-;20358:139;;20085:419;;;:::o;20510:442::-;20659:4;20697:2;20686:9;20682:18;20674:26;;20710:71;20778:1;20767:9;20763:17;20754:6;20710:71;:::i;:::-;20791:72;20859:2;20848:9;20844:18;20835:6;20791:72;:::i;:::-;20873;20941:2;20930:9;20926:18;20917:6;20873:72;:::i;:::-;20510:442;;;;;;:::o;20958:224::-;21098:34;21094:1;21086:6;21082:14;21075:58;21167:7;21162:2;21154:6;21150:15;21143:32;20958:224;:::o;21188:366::-;21330:3;21351:67;21415:2;21410:3;21351:67;:::i;:::-;21344:74;;21427:93;21516:3;21427:93;:::i;:::-;21545:2;21540:3;21536:12;21529:19;;21188:366;;;:::o;21560:419::-;21726:4;21764:2;21753:9;21749:18;21741:26;;21813:9;21807:4;21803:20;21799:1;21788:9;21784:17;21777:47;21841:131;21967:4;21841:131;:::i;:::-;21833:139;;21560:419;;;:::o;21985:227::-;22125:34;22121:1;22113:6;22109:14;22102:58;22194:10;22189:2;22181:6;22177:15;22170:35;21985:227;:::o;22218:366::-;22360:3;22381:67;22445:2;22440:3;22381:67;:::i;:::-;22374:74;;22457:93;22546:3;22457:93;:::i;:::-;22575:2;22570:3;22566:12;22559:19;;22218:366;;;:::o;22590:419::-;22756:4;22794:2;22783:9;22779:18;22771:26;;22843:9;22837:4;22833:20;22829:1;22818:9;22814:17;22807:47;22871:131;22997:4;22871:131;:::i;:::-;22863:139;;22590:419;;;:::o;23015:239::-;23155:34;23151:1;23143:6;23139:14;23132:58;23224:22;23219:2;23211:6;23207:15;23200:47;23015:239;:::o;23260:366::-;23402:3;23423:67;23487:2;23482:3;23423:67;:::i;:::-;23416:74;;23499:93;23588:3;23499:93;:::i;:::-;23617:2;23612:3;23608:12;23601:19;;23260:366;;;:::o;23632:419::-;23798:4;23836:2;23825:9;23821:18;23813:26;;23885:9;23879:4;23875:20;23871:1;23860:9;23856:17;23849:47;23913:131;24039:4;23913:131;:::i;:::-;23905:139;;23632:419;;;:::o;24057:229::-;24197:34;24193:1;24185:6;24181:14;24174:58;24266:12;24261:2;24253:6;24249:15;24242:37;24057:229;:::o;24292:366::-;24434:3;24455:67;24519:2;24514:3;24455:67;:::i;:::-;24448:74;;24531:93;24620:3;24531:93;:::i;:::-;24649:2;24644:3;24640:12;24633:19;;24292:366;;;:::o;24664:419::-;24830:4;24868:2;24857:9;24853:18;24845:26;;24917:9;24911:4;24907:20;24903:1;24892:9;24888:17;24881:47;24945:131;25071:4;24945:131;:::i;:::-;24937:139;;24664:419;;;:::o;25089:223::-;25229:34;25225:1;25217:6;25213:14;25206:58;25298:6;25293:2;25285:6;25281:15;25274:31;25089:223;:::o;25318:366::-;25460:3;25481:67;25545:2;25540:3;25481:67;:::i;:::-;25474:74;;25557:93;25646:3;25557:93;:::i;:::-;25675:2;25670:3;25666:12;25659:19;;25318:366;;;:::o;25690:419::-;25856:4;25894:2;25883:9;25879:18;25871:26;;25943:9;25937:4;25933:20;25929:1;25918:9;25914:17;25907:47;25971:131;26097:4;25971:131;:::i;:::-;25963:139;;25690:419;;;:::o;26115:225::-;26255:34;26251:1;26243:6;26239:14;26232:58;26324:8;26319:2;26311:6;26307:15;26300:33;26115:225;:::o;26346:366::-;26488:3;26509:67;26573:2;26568:3;26509:67;:::i;:::-;26502:74;;26585:93;26674:3;26585:93;:::i;:::-;26703:2;26698:3;26694:12;26687:19;;26346:366;;;:::o;26718:419::-;26884:4;26922:2;26911:9;26907:18;26899:26;;26971:9;26965:4;26961:20;26957:1;26946:9;26942:17;26935:47;26999:131;27125:4;26999:131;:::i;:::-;26991:139;;26718:419;;;:::o;27143:223::-;27283:34;27279:1;27271:6;27267:14;27260:58;27352:6;27347:2;27339:6;27335:15;27328:31;27143:223;:::o;27372:366::-;27514:3;27535:67;27599:2;27594:3;27535:67;:::i;:::-;27528:74;;27611:93;27700:3;27611:93;:::i;:::-;27729:2;27724:3;27720:12;27713:19;;27372:366;;;:::o;27744:419::-;27910:4;27948:2;27937:9;27933:18;27925:26;;27997:9;27991:4;27987:20;27983:1;27972:9;27968:17;27961:47;28025:131;28151:4;28025:131;:::i;:::-;28017:139;;27744:419;;;:::o;28169:221::-;28309:34;28305:1;28297:6;28293:14;28286:58;28378:4;28373:2;28365:6;28361:15;28354:29;28169:221;:::o;28396:366::-;28538:3;28559:67;28623:2;28618:3;28559:67;:::i;:::-;28552:74;;28635:93;28724:3;28635:93;:::i;:::-;28753:2;28748:3;28744:12;28737:19;;28396:366;;;:::o;28768:419::-;28934:4;28972:2;28961:9;28957:18;28949:26;;29021:9;29015:4;29011:20;29007:1;28996:9;28992:17;28985:47;29049:131;29175:4;29049:131;:::i;:::-;29041:139;;28768:419;;;:::o;29193:224::-;29333:34;29329:1;29321:6;29317:14;29310:58;29402:7;29397:2;29389:6;29385:15;29378:32;29193:224;:::o;29423:366::-;29565:3;29586:67;29650:2;29645:3;29586:67;:::i;:::-;29579:74;;29662:93;29751:3;29662:93;:::i;:::-;29780:2;29775:3;29771:12;29764:19;;29423:366;;;:::o;29795:419::-;29961:4;29999:2;29988:9;29984:18;29976:26;;30048:9;30042:4;30038:20;30034:1;30023:9;30019:17;30012:47;30076:131;30202:4;30076:131;:::i;:::-;30068:139;;29795:419;;;:::o;30220:222::-;30360:34;30356:1;30348:6;30344:14;30337:58;30429:5;30424:2;30416:6;30412:15;30405:30;30220:222;:::o;30448:366::-;30590:3;30611:67;30675:2;30670:3;30611:67;:::i;:::-;30604:74;;30687:93;30776:3;30687:93;:::i;:::-;30805:2;30800:3;30796:12;30789:19;;30448:366;;;:::o;30820:419::-;30986:4;31024:2;31013:9;31009:18;31001:26;;31073:9;31067:4;31063:20;31059:1;31048:9;31044:17;31037:47;31101:131;31227:4;31101:131;:::i;:::-;31093:139;;30820:419;;;:::o;31245:221::-;31385:34;31381:1;31373:6;31369:14;31362:58;31454:4;31449:2;31441:6;31437:15;31430:29;31245:221;:::o;31472:366::-;31614:3;31635:67;31699:2;31694:3;31635:67;:::i;:::-;31628:74;;31711:93;31800:3;31711:93;:::i;:::-;31829:2;31824:3;31820:12;31813:19;;31472:366;;;:::o;31844:419::-;32010:4;32048:2;32037:9;32033:18;32025:26;;32097:9;32091:4;32087:20;32083:1;32072:9;32068:17;32061:47;32125:131;32251:4;32125:131;:::i;:::-;32117:139;;31844:419;;;:::o;32269:223::-;32409:34;32405:1;32397:6;32393:14;32386:58;32478:6;32473:2;32465:6;32461:15;32454:31;32269:223;:::o;32498:366::-;32640:3;32661:67;32725:2;32720:3;32661:67;:::i;:::-;32654:74;;32737:93;32826:3;32737:93;:::i;:::-;32855:2;32850:3;32846:12;32839:19;;32498:366;;;:::o;32870:419::-;33036:4;33074:2;33063:9;33059:18;33051:26;;33123:9;33117:4;33113:20;33109:1;33098:9;33094:17;33087:47;33151:131;33277:4;33151:131;:::i;:::-;33143:139;;32870:419;;;:::o;33295:297::-;33435:34;33431:1;33423:6;33419:14;33412:58;33504:34;33499:2;33491:6;33487:15;33480:59;33573:11;33568:2;33560:6;33556:15;33549:36;33295:297;:::o;33598:366::-;33740:3;33761:67;33825:2;33820:3;33761:67;:::i;:::-;33754:74;;33837:93;33926:3;33837:93;:::i;:::-;33955:2;33950:3;33946:12;33939:19;;33598:366;;;:::o;33970:419::-;34136:4;34174:2;34163:9;34159:18;34151:26;;34223:9;34217:4;34213:20;34209:1;34198:9;34194:17;34187:47;34251:131;34377:4;34251:131;:::i;:::-;34243:139;;33970:419;;;:::o;34395:225::-;34535:34;34531:1;34523:6;34519:14;34512:58;34604:8;34599:2;34591:6;34587:15;34580:33;34395:225;:::o;34626:366::-;34768:3;34789:67;34853:2;34848:3;34789:67;:::i;:::-;34782:74;;34865:93;34954:3;34865:93;:::i;:::-;34983:2;34978:3;34974:12;34967:19;;34626:366;;;:::o;34998:419::-;35164:4;35202:2;35191:9;35187:18;35179:26;;35251:9;35245:4;35241:20;35237:1;35226:9;35222:17;35215:47;35279:131;35405:4;35279:131;:::i;:::-;35271:139;;34998:419;;;:::o;35423:169::-;35563:21;35559:1;35551:6;35547:14;35540:45;35423:169;:::o;35598:366::-;35740:3;35761:67;35825:2;35820:3;35761:67;:::i;:::-;35754:74;;35837:93;35926:3;35837:93;:::i;:::-;35955:2;35950:3;35946:12;35939:19;;35598:366;;;:::o;35970:419::-;36136:4;36174:2;36163:9;36159:18;36151:26;;36223:9;36217:4;36213:20;36209:1;36198:9;36194:17;36187:47;36251:131;36377:4;36251:131;:::i;:::-;36243:139;;35970:419;;;:::o;36395:226::-;36535:34;36531:1;36523:6;36519:14;36512:58;36604:9;36599:2;36591:6;36587:15;36580:34;36395:226;:::o;36627:366::-;36769:3;36790:67;36854:2;36849:3;36790:67;:::i;:::-;36783:74;;36866:93;36955:3;36866:93;:::i;:::-;36984:2;36979:3;36975:12;36968:19;;36627:366;;;:::o;36999:419::-;37165:4;37203:2;37192:9;37188:18;37180:26;;37252:9;37246:4;37242:20;37238:1;37227:9;37223:17;37216:47;37280:131;37406:4;37280:131;:::i;:::-;37272:139;;36999:419;;;:::o;37424:194::-;37464:4;37484:20;37502:1;37484:20;:::i;:::-;37479:25;;37518:20;37536:1;37518:20;:::i;:::-;37513:25;;37562:1;37559;37555:9;37547:17;;37586:1;37580:4;37577:11;37574:37;;;37591:18;;:::i;:::-;37574:37;37424:194;;;;:::o;37624:225::-;37764:34;37760:1;37752:6;37748:14;37741:58;37833:8;37828:2;37820:6;37816:15;37809:33;37624:225;:::o;37855:366::-;37997:3;38018:67;38082:2;38077:3;38018:67;:::i;:::-;38011:74;;38094:93;38183:3;38094:93;:::i;:::-;38212:2;38207:3;38203:12;38196:19;;37855:366;;;:::o;38227:419::-;38393:4;38431:2;38420:9;38416:18;38408:26;;38480:9;38474:4;38470:20;38466:1;38455:9;38451:17;38444:47;38508:131;38634:4;38508:131;:::i;:::-;38500:139;;38227:419;;;:::o;38652:147::-;38753:11;38790:3;38775:18;;38652:147;;;;:::o;38805:114::-;;:::o;38925:398::-;39084:3;39105:83;39186:1;39181:3;39105:83;:::i;:::-;39098:90;;39197:93;39286:3;39197:93;:::i;:::-;39315:1;39310:3;39306:11;39299:18;;38925:398;;;:::o;39329:379::-;39513:3;39535:147;39678:3;39535:147;:::i;:::-;39528:154;;39699:3;39692:10;;39329:379;;;:::o;39714:180::-;39762:77;39759:1;39752:88;39859:4;39856:1;39849:15;39883:4;39880:1;39873:15;39900:143;39957:5;39988:6;39982:13;39973:22;;40004:33;40031:5;40004:33;:::i;:::-;39900:143;;;;:::o;40049:351::-;40119:6;40168:2;40156:9;40147:7;40143:23;40139:32;40136:119;;;40174:79;;:::i;:::-;40136:119;40294:1;40319:64;40375:7;40366:6;40355:9;40351:22;40319:64;:::i;:::-;40309:74;;40265:128;40049:351;;;;:::o;40406:85::-;40451:7;40480:5;40469:16;;40406:85;;;:::o;40497:60::-;40525:3;40546:5;40539:12;;40497:60;;;:::o;40563:158::-;40621:9;40654:61;40672:42;40681:32;40707:5;40681:32;:::i;:::-;40672:42;:::i;:::-;40654:61;:::i;:::-;40641:74;;40563:158;;;:::o;40727:147::-;40822:45;40861:5;40822:45;:::i;:::-;40817:3;40810:58;40727:147;;:::o;40880:114::-;40947:6;40981:5;40975:12;40965:22;;40880:114;;;:::o;41000:184::-;41099:11;41133:6;41128:3;41121:19;41173:4;41168:3;41164:14;41149:29;;41000:184;;;;:::o;41190:132::-;41257:4;41280:3;41272:11;;41310:4;41305:3;41301:14;41293:22;;41190:132;;;:::o;41328:108::-;41405:24;41423:5;41405:24;:::i;:::-;41400:3;41393:37;41328:108;;:::o;41442:179::-;41511:10;41532:46;41574:3;41566:6;41532:46;:::i;:::-;41610:4;41605:3;41601:14;41587:28;;41442:179;;;;:::o;41627:113::-;41697:4;41729;41724:3;41720:14;41712:22;;41627:113;;;:::o;41776:732::-;41895:3;41924:54;41972:5;41924:54;:::i;:::-;41994:86;42073:6;42068:3;41994:86;:::i;:::-;41987:93;;42104:56;42154:5;42104:56;:::i;:::-;42183:7;42214:1;42199:284;42224:6;42221:1;42218:13;42199:284;;;42300:6;42294:13;42327:63;42386:3;42371:13;42327:63;:::i;:::-;42320:70;;42413:60;42466:6;42413:60;:::i;:::-;42403:70;;42259:224;42246:1;42243;42239:9;42234:14;;42199:284;;;42203:14;42499:3;42492:10;;41900:608;;;41776:732;;;;:::o;42514:831::-;42777:4;42815:3;42804:9;42800:19;42792:27;;42829:71;42897:1;42886:9;42882:17;42873:6;42829:71;:::i;:::-;42910:80;42986:2;42975:9;42971:18;42962:6;42910:80;:::i;:::-;43037:9;43031:4;43027:20;43022:2;43011:9;43007:18;43000:48;43065:108;43168:4;43159:6;43065:108;:::i;:::-;43057:116;;43183:72;43251:2;43240:9;43236:18;43227:6;43183:72;:::i;:::-;43265:73;43333:3;43322:9;43318:19;43309:6;43265:73;:::i;:::-;42514:831;;;;;;;;:::o

Swarm Source

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