ETH Price: $2,400.70 (-1.55%)

Token

XAI Doge (xDOGE)
 

Overview

Max Total Supply

1,000,000,000,000,000 xDOGE

Holders

52

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
6,494,999,936,049.261029390781413227 xDOGE

Value
$0.00
0xc4ba5e96206529f80ad85340ff49e3be512b7710
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
XaiDoge

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-15
*/

/**
 * SPDX-License-Identifier: MIT
 * Telegram: https://t.me/xaidogecommunity
 * Twitter: https://twitter.com/xaidogeerc20
 */
pragma solidity >=0.8.19;

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

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

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

contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
    unchecked {
        _approve(sender, _msgSender(), currentAllowance - amount);
    }

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
    unchecked {
        _balances[account] = accountBalance - amount;
    }
        _totalSupply -= amount;

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

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

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

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

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

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

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 IUniswapV2Factory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint256
    );

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

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

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

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

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

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

contract XaiDoge is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    bool private swapping;

    address public marketingWallet;
    address public devWallet;
    address public lpWallet;

    uint256 public swapTokensAtAmount;
    uint256 public maxTokensForSwapback;

    uint256 public maxTransactionAmount;
    uint256 public maxWallet;

    uint256 public percentForLPBurn = 0;
    bool public lpBurnEnabled = true;
    uint256 public lpBurnFrequency = 3600 seconds;
    uint256 public lastLpBurnTime;

    uint256 public manualBurnFrequency = 30 minutes;
    uint256 public lastManualLpBurnTime;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;

    // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    bool public transferDelayEnabled = true;

    uint256 public buyTotalFees;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;

    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;

    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

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

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

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

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

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

    constructor() ERC20("XAI Doge", "xDOGE") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

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

        uint256 _buyMarketingFee = 15;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 0;

        uint256 _sellMarketingFee = 40;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 0;

        uint256 totalSupply = 1000000000000000 * 1e18;

        maxTransactionAmount = (totalSupply * 2) / 100; // 1% of total supply
        maxWallet = (totalSupply * 2) / 100; // 1% of total supply

        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swapback trigger
        maxTokensForSwapback = (totalSupply * 6) / 1000; // 0.6% max swapback

        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;

        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;

        marketingWallet = address(0x47Ac5751668C2FEc6CAc18678a8060051c4caeeF);
        devWallet = address(0x47Ac5751668C2FEc6CAc18678a8060051c4caeeF);
        lpWallet = msg.sender;

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
        excludeFromFees(marketingWallet, true);

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

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

    receive() external payable {}

    /// @notice Launches the token and enables trading. Irriversable.
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        lastLpBurnTime = block.timestamp;
    }

    /// @notice Removes the max wallet and max transaction limits
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    /// @notice Disables the Same wallet block transfer delay
    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = false;
        return true;
    }

    /// @notice Changes the minimum balance of tokens the contract must have before swapping tokens for ETH
    /// @param newAmount Base 100000, so 0.5% = 500.
    function updateSwapTokensAtAmount(uint256 newAmount)
    external
    onlyOwner
    returns (bool)
    {
        require(
            newAmount >= 1,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= 500,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount * totalSupply()/ 100000;
        return true;
    }

    /// @notice Changes the maximum amount of tokens the contract can swap for ETH
    /// @param newAmount Base 10000, so 0.5% = 50.
    function updateMaxTokensForSwapback(uint256 newAmount)
    external
    onlyOwner
    returns (bool)
    {
        maxTokensForSwapback = newAmount * totalSupply()/ 100000;
        return true;
    }

    /// @notice Changes the maximum amount of tokens that can be bought or sold in a single transaction
    /// @param newNum Base 1000, so 1% = 10
    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.1%"
        );
        maxTransactionAmount = newNum * (10**18);
    }

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


    /// @notice Sets if a wallet is excluded from the max wallet and tx limits
    /// @param updAds The wallet to update
    /// @param isEx If the wallet is excluded or not
    function excludeFromMaxTransaction(address updAds, bool isEx)
    public
    onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    /// @notice Sets if the contract can sell tokens
    /// @param enabled set to false to disable selling
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    /// @notice Sets the fees for buys
    /// @param _marketingFee The fee for the marketing wallet
    /// @param _liquidityFee The fee for the liquidity pool
    /// @param _devFee The fee for the dev wallet
    function updateBuyFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
    }

    /// @notice Sets the fees for sells
    /// @param _marketingFee The fee for the marketing wallet
    /// @param _liquidityFee The fee for the liquidity pool
    /// @param _devFee The fee for the dev wallet
    function updateSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
    }

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

    /// @notice Sets an address as a new liquidity pair. You probably dont want to do this.
    /// @param pair The new pair
    function setAutomatedMarketMakerPair(address pair, bool value)
    public
    onlyOwner
    {
        require(
            pair != uniswapV2Pair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateMarketingWallet(address newMarketingWallet)
    external
    onlyOwner
    {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }

    function updateLPWallet(address newLPWallet)
    external
    onlyOwner
    {
        lpWallet = newLPWallet;
    }

    function updateDevWallet(address newWallet) external onlyOwner {
        emit devWalletUpdated(newWallet, devWallet);
        devWallet = newWallet;
    }

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

    event BoughtEarly(address indexed sniper);

    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 (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

                // 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(uniswapV2Router) &&
                        to != address(uniswapV2Pair)
                    ) {
                        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] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                //when sell
                else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Sell transfer amount exceeds the maxTransactionAmount."
                    );
                } else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        if (
            !swapping &&
        automatedMarketMakerPairs[to] &&
        lpBurnEnabled &&
        block.timestamp >= lastLpBurnTime + lpBurnFrequency &&
        !_isExcludedFromFees[from]
        ) {
            autoBurnLiquidityPairTokens();
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev += (fees * sellDevFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

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

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

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

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

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

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

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

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

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

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
        totalTokensToSwap /
        2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

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

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;

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

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                tokensForLiquidity
            );
        }

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

    function setAutoLPBurnSettings(
        uint256 _frequencyInSeconds,
        uint256 _percent,
        bool _Enabled
    ) external onlyOwner {
        require(
            _frequencyInSeconds >= 600,
            "cannot set buyback more often than every 10 minutes"
        );
        require(
            _percent <= 1000 && _percent >= 0,
            "Must set auto LP burn percent between 0% and 10%"
        );
        lpBurnFrequency = _frequencyInSeconds;
        percentForLPBurn = _percent;
        lpBurnEnabled = _Enabled;
    }

    function autoBurnLiquidityPairTokens() internal returns (bool) {
        lastLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div(
            10000
        );

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        return true;
    }

    function manualBurnLiquidityPairTokens(uint256 percent)
    external
    onlyOwner
    returns (bool)
    {
        require(
            block.timestamp > lastManualLpBurnTime + manualBurnFrequency,
            "Must wait for cooldown to finish"
        );
        require(percent <= 1000, "May not nuke more than 10% of tokens in LP");
        lastManualLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000);

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        return true;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":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":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":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","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":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokensForSwapback","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","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":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","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":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newLPWallet","type":"address"}],"name":"updateLPWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateMaxTokensForSwapback","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526000600d556001600e60006101000a81548160ff021916908315150217905550610e10600f556107086011556001601360006101000a81548160ff0219169083151502179055506000601360016101000a81548160ff0219169083151502179055506000601360026101000a81548160ff0219169083151502179055506001601560006101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060400160405280600881526020017f58414920446f67650000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f78444f4745000000000000000000000000000000000000000000000000000000815250816003908162000127919062000e6b565b50806004908162000139919062000e6b565b5050506200015c62000150620006b260201b60201c565b620006ba60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001888160016200078060201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000208573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200022e919062000fbc565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000296573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002bc919062000fbc565b6040518363ffffffff1660e01b8152600401620002db92919062000fff565b6020604051808303816000875af1158015620002fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000321919062000fbc565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200036960a05160016200078060201b60201c565b6200037e60a05160016200086a60201b60201c565b6000600f905060008060006028905060008060006d314dc6448d9338c15b0a0000000090506064600282620003b491906200105b565b620003c09190620010d5565b600b819055506064600282620003d791906200105b565b620003e39190620010d5565b600c81905550612710600582620003fb91906200105b565b620004079190620010d5565b6009819055506103e86006826200041f91906200105b565b6200042b9190620010d5565b600a819055508660178190555085601881905550846019819055506019546018546017546200045b91906200110d565b6200046791906200110d565b60168190555083601b8190555082601c8190555081601d81905550601d54601c54601b546200049791906200110d565b620004a391906200110d565b601a819055507347ac5751668c2fec6cac18678a8060051c4caeef600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507347ac5751668c2fec6cac18678a8060051c4caeef600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005b6620005a86200090b60201b60201c565b60016200093560201b60201c565b620005c93060016200093560201b60201c565b620005de61dead60016200093560201b60201c565b62000613600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200093560201b60201c565b62000635620006276200090b60201b60201c565b60016200078060201b60201c565b620006483060016200078060201b60201c565b6200065d61dead60016200078060201b60201c565b62000692600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200078060201b60201c565b620006a4338262000a6f60201b60201c565b5050505050505050620012a5565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000790620006b260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620007b66200090b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200080f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200080690620011a9565b60405180910390fd5b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000945620006b260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200096b6200090b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620009c4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009bb90620011a9565b60405180910390fd5b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000a639190620011e8565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000ae1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ad89062001255565b60405180910390fd5b62000af56000838362000be760201b60201c565b806002600082825462000b0991906200110d565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000b6091906200110d565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000bc7919062001288565b60405180910390a362000be36000838362000bec60201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000c7357607f821691505b60208210810362000c895762000c8862000c2b565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000cf37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000cb4565b62000cff868362000cb4565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000d4c62000d4662000d408462000d17565b62000d21565b62000d17565b9050919050565b6000819050919050565b62000d688362000d2b565b62000d8062000d778262000d53565b84845462000cc1565b825550505050565b600090565b62000d9762000d88565b62000da481848462000d5d565b505050565b5b8181101562000dcc5762000dc060008262000d8d565b60018101905062000daa565b5050565b601f82111562000e1b5762000de58162000c8f565b62000df08462000ca4565b8101602085101562000e00578190505b62000e1862000e0f8562000ca4565b83018262000da9565b50505b505050565b600082821c905092915050565b600062000e406000198460080262000e20565b1980831691505092915050565b600062000e5b838362000e2d565b9150826002028217905092915050565b62000e768262000bf1565b67ffffffffffffffff81111562000e925762000e9162000bfc565b5b62000e9e825462000c5a565b62000eab82828562000dd0565b600060209050601f83116001811462000ee3576000841562000ece578287015190505b62000eda858262000e4d565b86555062000f4a565b601f19841662000ef38662000c8f565b60005b8281101562000f1d5784890151825560018201915060208501945060208101905062000ef6565b8683101562000f3d578489015162000f39601f89168262000e2d565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000f848262000f57565b9050919050565b62000f968162000f77565b811462000fa257600080fd5b50565b60008151905062000fb68162000f8b565b92915050565b60006020828403121562000fd55762000fd462000f52565b5b600062000fe58482850162000fa5565b91505092915050565b62000ff98162000f77565b82525050565b600060408201905062001016600083018562000fee565b62001025602083018462000fee565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620010688262000d17565b9150620010758362000d17565b9250828202620010858162000d17565b915082820484148315176200109f576200109e6200102c565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620010e28262000d17565b9150620010ef8362000d17565b925082620011025762001101620010a6565b5b828204905092915050565b60006200111a8262000d17565b9150620011278362000d17565b92508282019050808211156200114257620011416200102c565b5b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200119160208362001148565b91506200119e8262001159565b602082019050919050565b60006020820190508181036000830152620011c48162001182565b9050919050565b60008115159050919050565b620011e281620011cb565b82525050565b6000602082019050620011ff6000830184620011d7565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200123d601f8362001148565b91506200124a8262001205565b602082019050919050565b6000602082019050818103600083015262001270816200122e565b9050919050565b620012828162000d17565b82525050565b60006020820190506200129f600083018462001277565b92915050565b60805160a051615c766200132d600039600081816114d601528181611d7a015281816128f8015281816129af015281816129dc01528181612fef015281816140d90152818161419201526141bf01526000818161107901528181612f9701528181614309015281816143ea01528181614411015281816144ad01526144d40152615c766000f3fe6080604052600436106103dd5760003560e01c80638a8c523c116101fd578063bbc0c74211610118578063dd62ed3e116100ab578063f2fde38b1161007a578063f2fde38b14610ec2578063f637434214610eeb578063f8b45b0514610f16578063fbc10c5514610f41578063fe72b27a14610f6a576103e4565b8063dd62ed3e14610e04578063e2f4560514610e41578063e884f26014610e6c578063f11a24d314610e97576103e4565b8063c876d0b9116100e7578063c876d0b914610d46578063c8c8ebe414610d71578063d257b34f14610d9c578063d85ba06314610dd9576103e4565b8063bbc0c74214610ca0578063c024666814610ccb578063c17b5b8c14610cf4578063c18bc19514610d1d576103e4565b80639ec22c0e11610190578063a4c82a001161015f578063a4c82a0014610bd2578063a9059cbb14610bfd578063aacebbe314610c3a578063b62496f514610c63576103e4565b80639ec22c0e14610b145780639fccce3214610b3f578063a0d82dc514610b6a578063a457c2d714610b95576103e4565b8063924de9b7116101cc578063924de9b714610a6c57806395d89b4114610a955780639a7a23d614610ac05780639c3b4fdc14610ae9576103e4565b80638a8c523c146109d45780638da5cb5b146109eb5780638ea5220f14610a165780639213691314610a41576103e4565b806339509351116102f8578063715018a61161028b57806375f0a8741161025a57806375f0a874146108ed57806377c18352146109185780637af8ed9c146109435780637bce5a04146109805780638095d564146109ab576103e4565b8063715018a614610859578063730c188814610870578063751039fc146108995780637571336a146108c4576103e4565b80636303516c116102c75780636303516c1461079b5780636a486a8e146107c65780636ddd1713146107f157806370a082311461081c576103e4565b806339509351146106cb57806349bd5a5e146107085780634a62bb65146107335780634fbee1931461075e576103e4565b80631a8145bb1161037057806327c8f8351161033f57806327c8f8351461061f5780632c3e486c1461064a5780632e82f1a014610675578063313ce567146106a0576103e4565b80631a8145bb146105635780631f3fed8f1461058e578063203e727e146105b957806323b872dd146105e2576103e4565b806318160ddd116103ac57806318160ddd146104b95780631816467f146104e4578063184c16c51461050d578063199ffc7214610538576103e4565b806306fdde03146103e9578063095ea7b31461041457806310d5de53146104515780631694505e1461048e576103e4565b366103e457005b600080fd5b3480156103f557600080fd5b506103fe610fa7565b60405161040b9190614633565b60405180910390f35b34801561042057600080fd5b5061043b600480360381019061043691906146ee565b611039565b6040516104489190614749565b60405180910390f35b34801561045d57600080fd5b5061047860048036038101906104739190614764565b611057565b6040516104859190614749565b60405180910390f35b34801561049a57600080fd5b506104a3611077565b6040516104b091906147f0565b60405180910390f35b3480156104c557600080fd5b506104ce61109b565b6040516104db919061481a565b60405180910390f35b3480156104f057600080fd5b5061050b60048036038101906105069190614764565b6110a5565b005b34801561051957600080fd5b506105226111e1565b60405161052f919061481a565b60405180910390f35b34801561054457600080fd5b5061054d6111e7565b60405161055a919061481a565b60405180910390f35b34801561056f57600080fd5b506105786111ed565b604051610585919061481a565b60405180910390f35b34801561059a57600080fd5b506105a36111f3565b6040516105b0919061481a565b60405180910390f35b3480156105c557600080fd5b506105e060048036038101906105db9190614835565b6111f9565b005b3480156105ee57600080fd5b5061060960048036038101906106049190614862565b611308565b6040516106169190614749565b60405180910390f35b34801561062b57600080fd5b50610634611400565b60405161064191906148c4565b60405180910390f35b34801561065657600080fd5b5061065f611406565b60405161066c919061481a565b60405180910390f35b34801561068157600080fd5b5061068a61140c565b6040516106979190614749565b60405180910390f35b3480156106ac57600080fd5b506106b561141f565b6040516106c291906148fb565b60405180910390f35b3480156106d757600080fd5b506106f260048036038101906106ed91906146ee565b611428565b6040516106ff9190614749565b60405180910390f35b34801561071457600080fd5b5061071d6114d4565b60405161072a91906148c4565b60405180910390f35b34801561073f57600080fd5b506107486114f8565b6040516107559190614749565b60405180910390f35b34801561076a57600080fd5b5061078560048036038101906107809190614764565b61150b565b6040516107929190614749565b60405180910390f35b3480156107a757600080fd5b506107b0611561565b6040516107bd91906148c4565b60405180910390f35b3480156107d257600080fd5b506107db611587565b6040516107e8919061481a565b60405180910390f35b3480156107fd57600080fd5b5061080661158d565b6040516108139190614749565b60405180910390f35b34801561082857600080fd5b50610843600480360381019061083e9190614764565b6115a0565b604051610850919061481a565b60405180910390f35b34801561086557600080fd5b5061086e6115e8565b005b34801561087c57600080fd5b5061089760048036038101906108929190614942565b611670565b005b3480156108a557600080fd5b506108ae6117b0565b6040516108bb9190614749565b60405180910390f35b3480156108d057600080fd5b506108eb60048036038101906108e69190614995565b611850565b005b3480156108f957600080fd5b50610902611927565b60405161090f91906148c4565b60405180910390f35b34801561092457600080fd5b5061092d61194d565b60405161093a919061481a565b60405180910390f35b34801561094f57600080fd5b5061096a60048036038101906109659190614835565b611953565b6040516109779190614749565b60405180910390f35b34801561098c57600080fd5b50610995611a01565b6040516109a2919061481a565b60405180910390f35b3480156109b757600080fd5b506109d260048036038101906109cd91906149d5565b611a07565b005b3480156109e057600080fd5b506109e9611ac0565b005b3480156109f757600080fd5b50610a00611b7b565b604051610a0d91906148c4565b60405180910390f35b348015610a2257600080fd5b50610a2b611ba5565b604051610a3891906148c4565b60405180910390f35b348015610a4d57600080fd5b50610a56611bcb565b604051610a63919061481a565b60405180910390f35b348015610a7857600080fd5b50610a936004803603810190610a8e9190614a28565b611bd1565b005b348015610aa157600080fd5b50610aaa611c6a565b604051610ab79190614633565b60405180910390f35b348015610acc57600080fd5b50610ae76004803603810190610ae29190614995565b611cfc565b005b348015610af557600080fd5b50610afe611e14565b604051610b0b919061481a565b60405180910390f35b348015610b2057600080fd5b50610b29611e1a565b604051610b36919061481a565b60405180910390f35b348015610b4b57600080fd5b50610b54611e20565b604051610b61919061481a565b60405180910390f35b348015610b7657600080fd5b50610b7f611e26565b604051610b8c919061481a565b60405180910390f35b348015610ba157600080fd5b50610bbc6004803603810190610bb791906146ee565b611e2c565b604051610bc99190614749565b60405180910390f35b348015610bde57600080fd5b50610be7611f17565b604051610bf4919061481a565b60405180910390f35b348015610c0957600080fd5b50610c246004803603810190610c1f91906146ee565b611f1d565b604051610c319190614749565b60405180910390f35b348015610c4657600080fd5b50610c616004803603810190610c5c9190614764565b611f3b565b005b348015610c6f57600080fd5b50610c8a6004803603810190610c859190614764565b612077565b604051610c979190614749565b60405180910390f35b348015610cac57600080fd5b50610cb5612097565b604051610cc29190614749565b60405180910390f35b348015610cd757600080fd5b50610cf26004803603810190610ced9190614995565b6120aa565b005b348015610d0057600080fd5b50610d1b6004803603810190610d1691906149d5565b6121cf565b005b348015610d2957600080fd5b50610d446004803603810190610d3f9190614835565b612288565b005b348015610d5257600080fd5b50610d5b612371565b604051610d689190614749565b60405180910390f35b348015610d7d57600080fd5b50610d86612384565b604051610d93919061481a565b60405180910390f35b348015610da857600080fd5b50610dc36004803603810190610dbe9190614835565b61238a565b604051610dd09190614749565b60405180910390f35b348015610de557600080fd5b50610dee6124c1565b604051610dfb919061481a565b60405180910390f35b348015610e1057600080fd5b50610e2b6004803603810190610e269190614a55565b6124c7565b604051610e38919061481a565b60405180910390f35b348015610e4d57600080fd5b50610e5661254e565b604051610e63919061481a565b60405180910390f35b348015610e7857600080fd5b50610e81612554565b604051610e8e9190614749565b60405180910390f35b348015610ea357600080fd5b50610eac6125f4565b604051610eb9919061481a565b60405180910390f35b348015610ece57600080fd5b50610ee96004803603810190610ee49190614764565b6125fa565b005b348015610ef757600080fd5b50610f006126f1565b604051610f0d919061481a565b60405180910390f35b348015610f2257600080fd5b50610f2b6126f7565b604051610f38919061481a565b60405180910390f35b348015610f4d57600080fd5b50610f686004803603810190610f639190614764565b6126fd565b005b348015610f7657600080fd5b50610f916004803603810190610f8c9190614835565b6127bd565b604051610f9e9190614749565b60405180910390f35b606060038054610fb690614ac4565b80601f0160208091040260200160405190810160405280929190818152602001828054610fe290614ac4565b801561102f5780601f106110045761010080835404028352916020019161102f565b820191906000526020600020905b81548152906001019060200180831161101257829003601f168201915b5050505050905090565b600061104d611046612a69565b8484612a71565b6001905092915050565b60226020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b6110ad612a69565b73ffffffffffffffffffffffffffffffffffffffff166110cb611b7b565b73ffffffffffffffffffffffffffffffffffffffff1614611121576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111890614b41565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60115481565b600d5481565b601f5481565b601e5481565b611201612a69565b73ffffffffffffffffffffffffffffffffffffffff1661121f611b7b565b73ffffffffffffffffffffffffffffffffffffffff1614611275576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126c90614b41565b60405180910390fd5b670de0b6b3a76400006103e8600161128b61109b565b6112959190614b90565b61129f9190614c01565b6112a99190614c01565b8110156112eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e290614ca4565b60405180910390fd5b670de0b6b3a7640000816112ff9190614b90565b600b8190555050565b6000611315848484612c3a565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611360612a69565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156113e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d790614d36565b60405180910390fd5b6113f4856113ec612a69565b858403612a71565b60019150509392505050565b61dead81565b600f5481565b600e60009054906101000a900460ff1681565b60006012905090565b60006114ca611435612a69565b848460016000611443612a69565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114c59190614d56565b612a71565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601360009054906101000a900460ff1681565b6000602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601a5481565b601360029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115f0612a69565b73ffffffffffffffffffffffffffffffffffffffff1661160e611b7b565b73ffffffffffffffffffffffffffffffffffffffff1614611664576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165b90614b41565b60405180910390fd5b61166e60006139cf565b565b611678612a69565b73ffffffffffffffffffffffffffffffffffffffff16611696611b7b565b73ffffffffffffffffffffffffffffffffffffffff16146116ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e390614b41565b60405180910390fd5b610258831015611731576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172890614dfc565b60405180910390fd5b6103e88211158015611744575060008210155b611783576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177a90614e8e565b60405180910390fd5b82600f8190555081600d8190555080600e60006101000a81548160ff021916908315150217905550505050565b60006117ba612a69565b73ffffffffffffffffffffffffffffffffffffffff166117d8611b7b565b73ffffffffffffffffffffffffffffffffffffffff161461182e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182590614b41565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b611858612a69565b73ffffffffffffffffffffffffffffffffffffffff16611876611b7b565b73ffffffffffffffffffffffffffffffffffffffff16146118cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c390614b41565b60405180910390fd5b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5481565b600061195d612a69565b73ffffffffffffffffffffffffffffffffffffffff1661197b611b7b565b73ffffffffffffffffffffffffffffffffffffffff16146119d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c890614b41565b60405180910390fd5b620186a06119dd61109b565b836119e89190614b90565b6119f29190614c01565b600a8190555060019050919050565b60175481565b611a0f612a69565b73ffffffffffffffffffffffffffffffffffffffff16611a2d611b7b565b73ffffffffffffffffffffffffffffffffffffffff1614611a83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7a90614b41565b60405180910390fd5b826017819055508160188190555080601981905550601954601854601754611aab9190614d56565b611ab59190614d56565b601681905550505050565b611ac8612a69565b73ffffffffffffffffffffffffffffffffffffffff16611ae6611b7b565b73ffffffffffffffffffffffffffffffffffffffff1614611b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3390614b41565b60405180910390fd5b6001601360016101000a81548160ff0219169083151502179055506001601360026101000a81548160ff02191690831515021790555042601081905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601b5481565b611bd9612a69565b73ffffffffffffffffffffffffffffffffffffffff16611bf7611b7b565b73ffffffffffffffffffffffffffffffffffffffff1614611c4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4490614b41565b60405180910390fd5b80601360026101000a81548160ff02191690831515021790555050565b606060048054611c7990614ac4565b80601f0160208091040260200160405190810160405280929190818152602001828054611ca590614ac4565b8015611cf25780601f10611cc757610100808354040283529160200191611cf2565b820191906000526020600020905b815481529060010190602001808311611cd557829003601f168201915b5050505050905090565b611d04612a69565b73ffffffffffffffffffffffffffffffffffffffff16611d22611b7b565b73ffffffffffffffffffffffffffffffffffffffff1614611d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6f90614b41565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfd90614f20565b60405180910390fd5b611e108282613a95565b5050565b60195481565b60125481565b60205481565b601d5481565b60008060016000611e3b612a69565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611ef8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eef90614fb2565b60405180910390fd5b611f0c611f03612a69565b85858403612a71565b600191505092915050565b60105481565b6000611f31611f2a612a69565b8484612c3a565b6001905092915050565b611f43612a69565b73ffffffffffffffffffffffffffffffffffffffff16611f61611b7b565b73ffffffffffffffffffffffffffffffffffffffff1614611fb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fae90614b41565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60236020528060005260406000206000915054906101000a900460ff1681565b601360019054906101000a900460ff1681565b6120b2612a69565b73ffffffffffffffffffffffffffffffffffffffff166120d0611b7b565b73ffffffffffffffffffffffffffffffffffffffff1614612126576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211d90614b41565b60405180910390fd5b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516121c39190614749565b60405180910390a25050565b6121d7612a69565b73ffffffffffffffffffffffffffffffffffffffff166121f5611b7b565b73ffffffffffffffffffffffffffffffffffffffff161461224b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224290614b41565b60405180910390fd5b82601b8190555081601c8190555080601d81905550601d54601c54601b546122739190614d56565b61227d9190614d56565b601a81905550505050565b612290612a69565b73ffffffffffffffffffffffffffffffffffffffff166122ae611b7b565b73ffffffffffffffffffffffffffffffffffffffff1614612304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fb90614b41565b60405180910390fd5b6005811015612348576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233f90615044565b60405180910390fd5b6103e861235361109b565b8261235e9190614b90565b6123689190614c01565b600c8190555050565b601560009054906101000a900460ff1681565b600b5481565b6000612394612a69565b73ffffffffffffffffffffffffffffffffffffffff166123b2611b7b565b73ffffffffffffffffffffffffffffffffffffffff1614612408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ff90614b41565b60405180910390fd5b600182101561244c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612443906150d6565b60405180910390fd5b6101f4821115612491576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248890615168565b60405180910390fd5b620186a061249d61109b565b836124a89190614b90565b6124b29190614c01565b60098190555060019050919050565b60165481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061255e612a69565b73ffffffffffffffffffffffffffffffffffffffff1661257c611b7b565b73ffffffffffffffffffffffffffffffffffffffff16146125d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c990614b41565b60405180910390fd5b6000601560006101000a81548160ff0219169083151502179055506001905090565b60185481565b612602612a69565b73ffffffffffffffffffffffffffffffffffffffff16612620611b7b565b73ffffffffffffffffffffffffffffffffffffffff1614612676576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266d90614b41565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036126e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126dc906151fa565b60405180910390fd5b6126ee816139cf565b50565b601c5481565b600c5481565b612705612a69565b73ffffffffffffffffffffffffffffffffffffffff16612723611b7b565b73ffffffffffffffffffffffffffffffffffffffff1614612779576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277090614b41565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006127c7612a69565b73ffffffffffffffffffffffffffffffffffffffff166127e5611b7b565b73ffffffffffffffffffffffffffffffffffffffff161461283b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283290614b41565b60405180910390fd5b60115460125461284b9190614d56565b421161288c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288390615266565b60405180910390fd5b6103e88211156128d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c8906152f8565b60405180910390fd5b4260128190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b815260040161293391906148c4565b602060405180830381865afa158015612950573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612974919061532d565b9050600061299f6127106129918685613b3690919063ffffffff16565b613b4c90919063ffffffff16565b905060008111156129d8576129d77f000000000000000000000000000000000000000000000000000000000000000061dead83613b62565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015612a4557600080fd5b505af1158015612a59573d6000803e3d6000fd5b5050505060019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612ae0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad7906153cc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b469061545e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612c2d919061481a565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612ca9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ca0906154f0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612d18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0f90615582565b60405180910390fd5b60008103612d3157612d2c83836000613b62565b6139ca565b601360009054906101000a900460ff16156133f457612d4e611b7b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612dbc5750612d8c611b7b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612df55750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612e2f575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612e485750600560149054906101000a900460ff16155b156133f357601360019054906101000a900460ff16612f4257602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612f025750602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612f41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f38906155ee565b60405180910390fd5b5b601560009054906101000a900460ff161561310a57612f5f611b7b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612fe657507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561303e57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156131095743601460003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106130c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130bb906156a6565b60405180910390fd5b43601460003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131ad5750602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561325457600b548111156131f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ee90615738565b60405180910390fd5b600c54613203836115a0565b8261320e9190614d56565b111561324f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613246906157a4565b60405180910390fd5b6133f2565b602360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156132f75750602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561334657600b54811115613341576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161333890615836565b60405180910390fd5b6133f1565b602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166133f057600c546133a3836115a0565b826133ae9190614d56565b11156133ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133e6906157a4565b60405180910390fd5b5b5b5b5b5b60006133ff306115a0565b9050600060095482101590508080156134245750601360029054906101000a900460ff165b801561343d5750600560149054906101000a900460ff16155b80156134935750602360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156134e95750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561353f5750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613583576001600560146101000a81548160ff021916908315150217905550613567613de1565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156135e95750602360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156136015750600e60009054906101000a900460ff165b801561361c5750600f546010546136189190614d56565b4210155b80156136725750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156136815761367f6140b0565b505b6000600560149054906101000a900460ff16159050602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806137375750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561374157600090505b600081156139ba57602360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156137a457506000601a54115b15613871576137d160646137c3601a5488613b3690919063ffffffff16565b613b4c90919063ffffffff16565b9050601a54601c54826137e49190614b90565b6137ee9190614c01565b601f60008282546137ff9190614d56565b92505081905550601a54601d54826138179190614b90565b6138219190614c01565b602060008282546138329190614d56565b92505081905550601a54601b548261384a9190614b90565b6138549190614c01565b601e60008282546138659190614d56565b92505081905550613996565b602360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156138cc57506000601654115b15613995576138f960646138eb60165488613b3690919063ffffffff16565b613b4c90919063ffffffff16565b90506016546018548261390c9190614b90565b6139169190614c01565b601f60008282546139279190614d56565b925050819055506016546019548261393f9190614b90565b6139499190614c01565b6020600082825461395a9190614d56565b92505081905550601654601754826139729190614b90565b61397c9190614c01565b601e600082825461398d9190614d56565b925050819055505b5b60008111156139ab576139aa873083613b62565b5b80856139b79190615856565b94505b6139c5878787613b62565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b60008183613b449190614b90565b905092915050565b60008183613b5a9190614c01565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613bd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613bc8906154f0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613c40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c3790615582565b60405180910390fd5b613c4b83838361424a565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613cd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613cc8906158fc565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613d649190614d56565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613dc8919061481a565b60405180910390a3613ddb84848461424f565b50505050565b6000613dec306115a0565b90506000602054601e54601f54613e039190614d56565b613e0d9190614d56565b9050600080831480613e1f5750600082145b15613e2c575050506140ae565b600a54831115613e3c57600a5492505b6000600283601f5486613e4f9190614b90565b613e599190614c01565b613e639190614c01565b90506000613e7a828661425490919063ffffffff16565b90506000479050613e8a8261426a565b6000613e9f824761425490919063ffffffff16565b90506000613eca87613ebc601e5485613b3690919063ffffffff16565b613b4c90919063ffffffff16565b90506000613ef588613ee760205486613b3690919063ffffffff16565b613b4c90919063ffffffff16565b90506000818385613f069190615856565b613f109190615856565b90506000601f819055506000601e819055506000602081905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613f709061594d565b60006040518083038185875af1925050503d8060008114613fad576040519150601f19603f3d011682016040523d82523d6000602084013e613fb2565b606091505b505080985050600087118015613fc85750600081115b1561401557613fd787826144a7565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601f5460405161400c93929190615962565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161405b9061594d565b60006040518083038185875af1925050503d8060008114614098576040519150601f19603f3d011682016040523d82523d6000602084013e61409d565b606091505b505080985050505050505050505050505b565b60004260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b815260040161411491906148c4565b602060405180830381865afa158015614131573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614155919061532d565b90506000614182612710614174600d5485613b3690919063ffffffff16565b613b4c90919063ffffffff16565b905060008111156141bb576141ba7f000000000000000000000000000000000000000000000000000000000000000061dead83613b62565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561422857600080fd5b505af115801561423c573d6000803e3d6000fd5b505050506001935050505090565b505050565b505050565b600081836142629190615856565b905092915050565b6000600267ffffffffffffffff81111561428757614286615999565b5b6040519080825280602002602001820160405280156142b55781602001602082028036833780820191505090505b50905030816000815181106142cd576142cc6159c8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015614372573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906143969190615a0c565b816001815181106143aa576143a96159c8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061440f307f000000000000000000000000000000000000000000000000000000000000000084612a71565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401614471959493929190615b32565b600060405180830381600087803b15801561448b57600080fd5b505af115801561449f573d6000803e3d6000fd5b505050505050565b6144d2307f000000000000000000000000000000000000000000000000000000000000000084612a71565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161455996959493929190615b8c565b60606040518083038185885af1158015614577573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061459c9190615bed565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156145dd5780820151818401526020810190506145c2565b60008484015250505050565b6000601f19601f8301169050919050565b6000614605826145a3565b61460f81856145ae565b935061461f8185602086016145bf565b614628816145e9565b840191505092915050565b6000602082019050818103600083015261464d81846145fa565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006146858261465a565b9050919050565b6146958161467a565b81146146a057600080fd5b50565b6000813590506146b28161468c565b92915050565b6000819050919050565b6146cb816146b8565b81146146d657600080fd5b50565b6000813590506146e8816146c2565b92915050565b6000806040838503121561470557614704614655565b5b6000614713858286016146a3565b9250506020614724858286016146d9565b9150509250929050565b60008115159050919050565b6147438161472e565b82525050565b600060208201905061475e600083018461473a565b92915050565b60006020828403121561477a57614779614655565b5b6000614788848285016146a3565b91505092915050565b6000819050919050565b60006147b66147b16147ac8461465a565b614791565b61465a565b9050919050565b60006147c88261479b565b9050919050565b60006147da826147bd565b9050919050565b6147ea816147cf565b82525050565b600060208201905061480560008301846147e1565b92915050565b614814816146b8565b82525050565b600060208201905061482f600083018461480b565b92915050565b60006020828403121561484b5761484a614655565b5b6000614859848285016146d9565b91505092915050565b60008060006060848603121561487b5761487a614655565b5b6000614889868287016146a3565b935050602061489a868287016146a3565b92505060406148ab868287016146d9565b9150509250925092565b6148be8161467a565b82525050565b60006020820190506148d960008301846148b5565b92915050565b600060ff82169050919050565b6148f5816148df565b82525050565b600060208201905061491060008301846148ec565b92915050565b61491f8161472e565b811461492a57600080fd5b50565b60008135905061493c81614916565b92915050565b60008060006060848603121561495b5761495a614655565b5b6000614969868287016146d9565b935050602061497a868287016146d9565b925050604061498b8682870161492d565b9150509250925092565b600080604083850312156149ac576149ab614655565b5b60006149ba858286016146a3565b92505060206149cb8582860161492d565b9150509250929050565b6000806000606084860312156149ee576149ed614655565b5b60006149fc868287016146d9565b9350506020614a0d868287016146d9565b9250506040614a1e868287016146d9565b9150509250925092565b600060208284031215614a3e57614a3d614655565b5b6000614a4c8482850161492d565b91505092915050565b60008060408385031215614a6c57614a6b614655565b5b6000614a7a858286016146a3565b9250506020614a8b858286016146a3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614adc57607f821691505b602082108103614aef57614aee614a95565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614b2b6020836145ae565b9150614b3682614af5565b602082019050919050565b60006020820190508181036000830152614b5a81614b1e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614b9b826146b8565b9150614ba6836146b8565b9250828202614bb4816146b8565b91508282048414831517614bcb57614bca614b61565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614c0c826146b8565b9150614c17836146b8565b925082614c2757614c26614bd2565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614c8e602f836145ae565b9150614c9982614c32565b604082019050919050565b60006020820190508181036000830152614cbd81614c81565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614d206028836145ae565b9150614d2b82614cc4565b604082019050919050565b60006020820190508181036000830152614d4f81614d13565b9050919050565b6000614d61826146b8565b9150614d6c836146b8565b9250828201905080821115614d8457614d83614b61565b5b92915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614de66033836145ae565b9150614df182614d8a565b604082019050919050565b60006020820190508181036000830152614e1581614dd9565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614e786030836145ae565b9150614e8382614e1c565b604082019050919050565b60006020820190508181036000830152614ea781614e6b565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614f0a6039836145ae565b9150614f1582614eae565b604082019050919050565b60006020820190508181036000830152614f3981614efd565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614f9c6025836145ae565b9150614fa782614f40565b604082019050919050565b60006020820190508181036000830152614fcb81614f8f565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061502e6024836145ae565b915061503982614fd2565b604082019050919050565b6000602082019050818103600083015261505d81615021565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006150c06035836145ae565b91506150cb82615064565b604082019050919050565b600060208201905081810360008301526150ef816150b3565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006151526034836145ae565b915061515d826150f6565b604082019050919050565b6000602082019050818103600083015261518181615145565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006151e46026836145ae565b91506151ef82615188565b604082019050919050565b60006020820190508181036000830152615213816151d7565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b60006152506020836145ae565b915061525b8261521a565b602082019050919050565b6000602082019050818103600083015261527f81615243565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b60006152e2602a836145ae565b91506152ed82615286565b604082019050919050565b60006020820190508181036000830152615311816152d5565b9050919050565b600081519050615327816146c2565b92915050565b60006020828403121561534357615342614655565b5b600061535184828501615318565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006153b66024836145ae565b91506153c18261535a565b604082019050919050565b600060208201905081810360008301526153e5816153a9565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006154486022836145ae565b9150615453826153ec565b604082019050919050565b600060208201905081810360008301526154778161543b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006154da6025836145ae565b91506154e58261547e565b604082019050919050565b60006020820190508181036000830152615509816154cd565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061556c6023836145ae565b915061557782615510565b604082019050919050565b6000602082019050818103600083015261559b8161555f565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006155d86016836145ae565b91506155e3826155a2565b602082019050919050565b60006020820190508181036000830152615607816155cb565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006156906049836145ae565b915061569b8261560e565b606082019050919050565b600060208201905081810360008301526156bf81615683565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006157226035836145ae565b915061572d826156c6565b604082019050919050565b6000602082019050818103600083015261575181615715565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061578e6013836145ae565b915061579982615758565b602082019050919050565b600060208201905081810360008301526157bd81615781565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006158206036836145ae565b915061582b826157c4565b604082019050919050565b6000602082019050818103600083015261584f81615813565b9050919050565b6000615861826146b8565b915061586c836146b8565b925082820390508181111561588457615883614b61565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006158e66026836145ae565b91506158f18261588a565b604082019050919050565b60006020820190508181036000830152615915816158d9565b9050919050565b600081905092915050565b50565b600061593760008361591c565b915061594282615927565b600082019050919050565b60006159588261592a565b9150819050919050565b6000606082019050615977600083018661480b565b615984602083018561480b565b615991604083018461480b565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050615a068161468c565b92915050565b600060208284031215615a2257615a21614655565b5b6000615a30848285016159f7565b91505092915050565b6000819050919050565b6000615a5e615a59615a5484615a39565b614791565b6146b8565b9050919050565b615a6e81615a43565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615aa98161467a565b82525050565b6000615abb8383615aa0565b60208301905092915050565b6000602082019050919050565b6000615adf82615a74565b615ae98185615a7f565b9350615af483615a90565b8060005b83811015615b25578151615b0c8882615aaf565b9750615b1783615ac7565b925050600181019050615af8565b5085935050505092915050565b600060a082019050615b47600083018861480b565b615b546020830187615a65565b8181036040830152615b668186615ad4565b9050615b7560608301856148b5565b615b82608083018461480b565b9695505050505050565b600060c082019050615ba160008301896148b5565b615bae602083018861480b565b615bbb6040830187615a65565b615bc86060830186615a65565b615bd560808301856148b5565b615be260a083018461480b565b979650505050505050565b600080600060608486031215615c0657615c05614655565b5b6000615c1486828701615318565b9350506020615c2586828701615318565b9250506040615c3686828701615318565b915050925092509256fea26469706673582212207f064832962a9125c1dacf07b48424c08a0531b792bf04cc33da2d144b5294c464736f6c63430008130033

Deployed Bytecode

0x6080604052600436106103dd5760003560e01c80638a8c523c116101fd578063bbc0c74211610118578063dd62ed3e116100ab578063f2fde38b1161007a578063f2fde38b14610ec2578063f637434214610eeb578063f8b45b0514610f16578063fbc10c5514610f41578063fe72b27a14610f6a576103e4565b8063dd62ed3e14610e04578063e2f4560514610e41578063e884f26014610e6c578063f11a24d314610e97576103e4565b8063c876d0b9116100e7578063c876d0b914610d46578063c8c8ebe414610d71578063d257b34f14610d9c578063d85ba06314610dd9576103e4565b8063bbc0c74214610ca0578063c024666814610ccb578063c17b5b8c14610cf4578063c18bc19514610d1d576103e4565b80639ec22c0e11610190578063a4c82a001161015f578063a4c82a0014610bd2578063a9059cbb14610bfd578063aacebbe314610c3a578063b62496f514610c63576103e4565b80639ec22c0e14610b145780639fccce3214610b3f578063a0d82dc514610b6a578063a457c2d714610b95576103e4565b8063924de9b7116101cc578063924de9b714610a6c57806395d89b4114610a955780639a7a23d614610ac05780639c3b4fdc14610ae9576103e4565b80638a8c523c146109d45780638da5cb5b146109eb5780638ea5220f14610a165780639213691314610a41576103e4565b806339509351116102f8578063715018a61161028b57806375f0a8741161025a57806375f0a874146108ed57806377c18352146109185780637af8ed9c146109435780637bce5a04146109805780638095d564146109ab576103e4565b8063715018a614610859578063730c188814610870578063751039fc146108995780637571336a146108c4576103e4565b80636303516c116102c75780636303516c1461079b5780636a486a8e146107c65780636ddd1713146107f157806370a082311461081c576103e4565b806339509351146106cb57806349bd5a5e146107085780634a62bb65146107335780634fbee1931461075e576103e4565b80631a8145bb1161037057806327c8f8351161033f57806327c8f8351461061f5780632c3e486c1461064a5780632e82f1a014610675578063313ce567146106a0576103e4565b80631a8145bb146105635780631f3fed8f1461058e578063203e727e146105b957806323b872dd146105e2576103e4565b806318160ddd116103ac57806318160ddd146104b95780631816467f146104e4578063184c16c51461050d578063199ffc7214610538576103e4565b806306fdde03146103e9578063095ea7b31461041457806310d5de53146104515780631694505e1461048e576103e4565b366103e457005b600080fd5b3480156103f557600080fd5b506103fe610fa7565b60405161040b9190614633565b60405180910390f35b34801561042057600080fd5b5061043b600480360381019061043691906146ee565b611039565b6040516104489190614749565b60405180910390f35b34801561045d57600080fd5b5061047860048036038101906104739190614764565b611057565b6040516104859190614749565b60405180910390f35b34801561049a57600080fd5b506104a3611077565b6040516104b091906147f0565b60405180910390f35b3480156104c557600080fd5b506104ce61109b565b6040516104db919061481a565b60405180910390f35b3480156104f057600080fd5b5061050b60048036038101906105069190614764565b6110a5565b005b34801561051957600080fd5b506105226111e1565b60405161052f919061481a565b60405180910390f35b34801561054457600080fd5b5061054d6111e7565b60405161055a919061481a565b60405180910390f35b34801561056f57600080fd5b506105786111ed565b604051610585919061481a565b60405180910390f35b34801561059a57600080fd5b506105a36111f3565b6040516105b0919061481a565b60405180910390f35b3480156105c557600080fd5b506105e060048036038101906105db9190614835565b6111f9565b005b3480156105ee57600080fd5b5061060960048036038101906106049190614862565b611308565b6040516106169190614749565b60405180910390f35b34801561062b57600080fd5b50610634611400565b60405161064191906148c4565b60405180910390f35b34801561065657600080fd5b5061065f611406565b60405161066c919061481a565b60405180910390f35b34801561068157600080fd5b5061068a61140c565b6040516106979190614749565b60405180910390f35b3480156106ac57600080fd5b506106b561141f565b6040516106c291906148fb565b60405180910390f35b3480156106d757600080fd5b506106f260048036038101906106ed91906146ee565b611428565b6040516106ff9190614749565b60405180910390f35b34801561071457600080fd5b5061071d6114d4565b60405161072a91906148c4565b60405180910390f35b34801561073f57600080fd5b506107486114f8565b6040516107559190614749565b60405180910390f35b34801561076a57600080fd5b5061078560048036038101906107809190614764565b61150b565b6040516107929190614749565b60405180910390f35b3480156107a757600080fd5b506107b0611561565b6040516107bd91906148c4565b60405180910390f35b3480156107d257600080fd5b506107db611587565b6040516107e8919061481a565b60405180910390f35b3480156107fd57600080fd5b5061080661158d565b6040516108139190614749565b60405180910390f35b34801561082857600080fd5b50610843600480360381019061083e9190614764565b6115a0565b604051610850919061481a565b60405180910390f35b34801561086557600080fd5b5061086e6115e8565b005b34801561087c57600080fd5b5061089760048036038101906108929190614942565b611670565b005b3480156108a557600080fd5b506108ae6117b0565b6040516108bb9190614749565b60405180910390f35b3480156108d057600080fd5b506108eb60048036038101906108e69190614995565b611850565b005b3480156108f957600080fd5b50610902611927565b60405161090f91906148c4565b60405180910390f35b34801561092457600080fd5b5061092d61194d565b60405161093a919061481a565b60405180910390f35b34801561094f57600080fd5b5061096a60048036038101906109659190614835565b611953565b6040516109779190614749565b60405180910390f35b34801561098c57600080fd5b50610995611a01565b6040516109a2919061481a565b60405180910390f35b3480156109b757600080fd5b506109d260048036038101906109cd91906149d5565b611a07565b005b3480156109e057600080fd5b506109e9611ac0565b005b3480156109f757600080fd5b50610a00611b7b565b604051610a0d91906148c4565b60405180910390f35b348015610a2257600080fd5b50610a2b611ba5565b604051610a3891906148c4565b60405180910390f35b348015610a4d57600080fd5b50610a56611bcb565b604051610a63919061481a565b60405180910390f35b348015610a7857600080fd5b50610a936004803603810190610a8e9190614a28565b611bd1565b005b348015610aa157600080fd5b50610aaa611c6a565b604051610ab79190614633565b60405180910390f35b348015610acc57600080fd5b50610ae76004803603810190610ae29190614995565b611cfc565b005b348015610af557600080fd5b50610afe611e14565b604051610b0b919061481a565b60405180910390f35b348015610b2057600080fd5b50610b29611e1a565b604051610b36919061481a565b60405180910390f35b348015610b4b57600080fd5b50610b54611e20565b604051610b61919061481a565b60405180910390f35b348015610b7657600080fd5b50610b7f611e26565b604051610b8c919061481a565b60405180910390f35b348015610ba157600080fd5b50610bbc6004803603810190610bb791906146ee565b611e2c565b604051610bc99190614749565b60405180910390f35b348015610bde57600080fd5b50610be7611f17565b604051610bf4919061481a565b60405180910390f35b348015610c0957600080fd5b50610c246004803603810190610c1f91906146ee565b611f1d565b604051610c319190614749565b60405180910390f35b348015610c4657600080fd5b50610c616004803603810190610c5c9190614764565b611f3b565b005b348015610c6f57600080fd5b50610c8a6004803603810190610c859190614764565b612077565b604051610c979190614749565b60405180910390f35b348015610cac57600080fd5b50610cb5612097565b604051610cc29190614749565b60405180910390f35b348015610cd757600080fd5b50610cf26004803603810190610ced9190614995565b6120aa565b005b348015610d0057600080fd5b50610d1b6004803603810190610d1691906149d5565b6121cf565b005b348015610d2957600080fd5b50610d446004803603810190610d3f9190614835565b612288565b005b348015610d5257600080fd5b50610d5b612371565b604051610d689190614749565b60405180910390f35b348015610d7d57600080fd5b50610d86612384565b604051610d93919061481a565b60405180910390f35b348015610da857600080fd5b50610dc36004803603810190610dbe9190614835565b61238a565b604051610dd09190614749565b60405180910390f35b348015610de557600080fd5b50610dee6124c1565b604051610dfb919061481a565b60405180910390f35b348015610e1057600080fd5b50610e2b6004803603810190610e269190614a55565b6124c7565b604051610e38919061481a565b60405180910390f35b348015610e4d57600080fd5b50610e5661254e565b604051610e63919061481a565b60405180910390f35b348015610e7857600080fd5b50610e81612554565b604051610e8e9190614749565b60405180910390f35b348015610ea357600080fd5b50610eac6125f4565b604051610eb9919061481a565b60405180910390f35b348015610ece57600080fd5b50610ee96004803603810190610ee49190614764565b6125fa565b005b348015610ef757600080fd5b50610f006126f1565b604051610f0d919061481a565b60405180910390f35b348015610f2257600080fd5b50610f2b6126f7565b604051610f38919061481a565b60405180910390f35b348015610f4d57600080fd5b50610f686004803603810190610f639190614764565b6126fd565b005b348015610f7657600080fd5b50610f916004803603810190610f8c9190614835565b6127bd565b604051610f9e9190614749565b60405180910390f35b606060038054610fb690614ac4565b80601f0160208091040260200160405190810160405280929190818152602001828054610fe290614ac4565b801561102f5780601f106110045761010080835404028352916020019161102f565b820191906000526020600020905b81548152906001019060200180831161101257829003601f168201915b5050505050905090565b600061104d611046612a69565b8484612a71565b6001905092915050565b60226020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b6110ad612a69565b73ffffffffffffffffffffffffffffffffffffffff166110cb611b7b565b73ffffffffffffffffffffffffffffffffffffffff1614611121576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111890614b41565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60115481565b600d5481565b601f5481565b601e5481565b611201612a69565b73ffffffffffffffffffffffffffffffffffffffff1661121f611b7b565b73ffffffffffffffffffffffffffffffffffffffff1614611275576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126c90614b41565b60405180910390fd5b670de0b6b3a76400006103e8600161128b61109b565b6112959190614b90565b61129f9190614c01565b6112a99190614c01565b8110156112eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e290614ca4565b60405180910390fd5b670de0b6b3a7640000816112ff9190614b90565b600b8190555050565b6000611315848484612c3a565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611360612a69565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156113e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d790614d36565b60405180910390fd5b6113f4856113ec612a69565b858403612a71565b60019150509392505050565b61dead81565b600f5481565b600e60009054906101000a900460ff1681565b60006012905090565b60006114ca611435612a69565b848460016000611443612a69565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114c59190614d56565b612a71565b6001905092915050565b7f000000000000000000000000ea3252e1b62cb0764a99da489f84c15e70128bae81565b601360009054906101000a900460ff1681565b6000602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601a5481565b601360029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115f0612a69565b73ffffffffffffffffffffffffffffffffffffffff1661160e611b7b565b73ffffffffffffffffffffffffffffffffffffffff1614611664576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165b90614b41565b60405180910390fd5b61166e60006139cf565b565b611678612a69565b73ffffffffffffffffffffffffffffffffffffffff16611696611b7b565b73ffffffffffffffffffffffffffffffffffffffff16146116ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e390614b41565b60405180910390fd5b610258831015611731576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172890614dfc565b60405180910390fd5b6103e88211158015611744575060008210155b611783576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177a90614e8e565b60405180910390fd5b82600f8190555081600d8190555080600e60006101000a81548160ff021916908315150217905550505050565b60006117ba612a69565b73ffffffffffffffffffffffffffffffffffffffff166117d8611b7b565b73ffffffffffffffffffffffffffffffffffffffff161461182e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182590614b41565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b611858612a69565b73ffffffffffffffffffffffffffffffffffffffff16611876611b7b565b73ffffffffffffffffffffffffffffffffffffffff16146118cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c390614b41565b60405180910390fd5b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5481565b600061195d612a69565b73ffffffffffffffffffffffffffffffffffffffff1661197b611b7b565b73ffffffffffffffffffffffffffffffffffffffff16146119d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c890614b41565b60405180910390fd5b620186a06119dd61109b565b836119e89190614b90565b6119f29190614c01565b600a8190555060019050919050565b60175481565b611a0f612a69565b73ffffffffffffffffffffffffffffffffffffffff16611a2d611b7b565b73ffffffffffffffffffffffffffffffffffffffff1614611a83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7a90614b41565b60405180910390fd5b826017819055508160188190555080601981905550601954601854601754611aab9190614d56565b611ab59190614d56565b601681905550505050565b611ac8612a69565b73ffffffffffffffffffffffffffffffffffffffff16611ae6611b7b565b73ffffffffffffffffffffffffffffffffffffffff1614611b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3390614b41565b60405180910390fd5b6001601360016101000a81548160ff0219169083151502179055506001601360026101000a81548160ff02191690831515021790555042601081905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601b5481565b611bd9612a69565b73ffffffffffffffffffffffffffffffffffffffff16611bf7611b7b565b73ffffffffffffffffffffffffffffffffffffffff1614611c4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4490614b41565b60405180910390fd5b80601360026101000a81548160ff02191690831515021790555050565b606060048054611c7990614ac4565b80601f0160208091040260200160405190810160405280929190818152602001828054611ca590614ac4565b8015611cf25780601f10611cc757610100808354040283529160200191611cf2565b820191906000526020600020905b815481529060010190602001808311611cd557829003601f168201915b5050505050905090565b611d04612a69565b73ffffffffffffffffffffffffffffffffffffffff16611d22611b7b565b73ffffffffffffffffffffffffffffffffffffffff1614611d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6f90614b41565b60405180910390fd5b7f000000000000000000000000ea3252e1b62cb0764a99da489f84c15e70128bae73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfd90614f20565b60405180910390fd5b611e108282613a95565b5050565b60195481565b60125481565b60205481565b601d5481565b60008060016000611e3b612a69565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611ef8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eef90614fb2565b60405180910390fd5b611f0c611f03612a69565b85858403612a71565b600191505092915050565b60105481565b6000611f31611f2a612a69565b8484612c3a565b6001905092915050565b611f43612a69565b73ffffffffffffffffffffffffffffffffffffffff16611f61611b7b565b73ffffffffffffffffffffffffffffffffffffffff1614611fb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fae90614b41565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60236020528060005260406000206000915054906101000a900460ff1681565b601360019054906101000a900460ff1681565b6120b2612a69565b73ffffffffffffffffffffffffffffffffffffffff166120d0611b7b565b73ffffffffffffffffffffffffffffffffffffffff1614612126576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211d90614b41565b60405180910390fd5b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516121c39190614749565b60405180910390a25050565b6121d7612a69565b73ffffffffffffffffffffffffffffffffffffffff166121f5611b7b565b73ffffffffffffffffffffffffffffffffffffffff161461224b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224290614b41565b60405180910390fd5b82601b8190555081601c8190555080601d81905550601d54601c54601b546122739190614d56565b61227d9190614d56565b601a81905550505050565b612290612a69565b73ffffffffffffffffffffffffffffffffffffffff166122ae611b7b565b73ffffffffffffffffffffffffffffffffffffffff1614612304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fb90614b41565b60405180910390fd5b6005811015612348576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233f90615044565b60405180910390fd5b6103e861235361109b565b8261235e9190614b90565b6123689190614c01565b600c8190555050565b601560009054906101000a900460ff1681565b600b5481565b6000612394612a69565b73ffffffffffffffffffffffffffffffffffffffff166123b2611b7b565b73ffffffffffffffffffffffffffffffffffffffff1614612408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ff90614b41565b60405180910390fd5b600182101561244c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612443906150d6565b60405180910390fd5b6101f4821115612491576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248890615168565b60405180910390fd5b620186a061249d61109b565b836124a89190614b90565b6124b29190614c01565b60098190555060019050919050565b60165481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061255e612a69565b73ffffffffffffffffffffffffffffffffffffffff1661257c611b7b565b73ffffffffffffffffffffffffffffffffffffffff16146125d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c990614b41565b60405180910390fd5b6000601560006101000a81548160ff0219169083151502179055506001905090565b60185481565b612602612a69565b73ffffffffffffffffffffffffffffffffffffffff16612620611b7b565b73ffffffffffffffffffffffffffffffffffffffff1614612676576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266d90614b41565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036126e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126dc906151fa565b60405180910390fd5b6126ee816139cf565b50565b601c5481565b600c5481565b612705612a69565b73ffffffffffffffffffffffffffffffffffffffff16612723611b7b565b73ffffffffffffffffffffffffffffffffffffffff1614612779576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277090614b41565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006127c7612a69565b73ffffffffffffffffffffffffffffffffffffffff166127e5611b7b565b73ffffffffffffffffffffffffffffffffffffffff161461283b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283290614b41565b60405180910390fd5b60115460125461284b9190614d56565b421161288c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288390615266565b60405180910390fd5b6103e88211156128d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c8906152f8565b60405180910390fd5b4260128190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000ea3252e1b62cb0764a99da489f84c15e70128bae6040518263ffffffff1660e01b815260040161293391906148c4565b602060405180830381865afa158015612950573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612974919061532d565b9050600061299f6127106129918685613b3690919063ffffffff16565b613b4c90919063ffffffff16565b905060008111156129d8576129d77f000000000000000000000000ea3252e1b62cb0764a99da489f84c15e70128bae61dead83613b62565b5b60007f000000000000000000000000ea3252e1b62cb0764a99da489f84c15e70128bae90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015612a4557600080fd5b505af1158015612a59573d6000803e3d6000fd5b5050505060019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612ae0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad7906153cc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b469061545e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612c2d919061481a565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612ca9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ca0906154f0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612d18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0f90615582565b60405180910390fd5b60008103612d3157612d2c83836000613b62565b6139ca565b601360009054906101000a900460ff16156133f457612d4e611b7b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612dbc5750612d8c611b7b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612df55750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612e2f575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612e485750600560149054906101000a900460ff16155b156133f357601360019054906101000a900460ff16612f4257602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612f025750602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612f41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f38906155ee565b60405180910390fd5b5b601560009054906101000a900460ff161561310a57612f5f611b7b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612fe657507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561303e57507f000000000000000000000000ea3252e1b62cb0764a99da489f84c15e70128bae73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156131095743601460003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106130c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130bb906156a6565b60405180910390fd5b43601460003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131ad5750602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561325457600b548111156131f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ee90615738565b60405180910390fd5b600c54613203836115a0565b8261320e9190614d56565b111561324f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613246906157a4565b60405180910390fd5b6133f2565b602360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156132f75750602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561334657600b54811115613341576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161333890615836565b60405180910390fd5b6133f1565b602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166133f057600c546133a3836115a0565b826133ae9190614d56565b11156133ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133e6906157a4565b60405180910390fd5b5b5b5b5b5b60006133ff306115a0565b9050600060095482101590508080156134245750601360029054906101000a900460ff165b801561343d5750600560149054906101000a900460ff16155b80156134935750602360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156134e95750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561353f5750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613583576001600560146101000a81548160ff021916908315150217905550613567613de1565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156135e95750602360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156136015750600e60009054906101000a900460ff165b801561361c5750600f546010546136189190614d56565b4210155b80156136725750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156136815761367f6140b0565b505b6000600560149054906101000a900460ff16159050602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806137375750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561374157600090505b600081156139ba57602360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156137a457506000601a54115b15613871576137d160646137c3601a5488613b3690919063ffffffff16565b613b4c90919063ffffffff16565b9050601a54601c54826137e49190614b90565b6137ee9190614c01565b601f60008282546137ff9190614d56565b92505081905550601a54601d54826138179190614b90565b6138219190614c01565b602060008282546138329190614d56565b92505081905550601a54601b548261384a9190614b90565b6138549190614c01565b601e60008282546138659190614d56565b92505081905550613996565b602360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156138cc57506000601654115b15613995576138f960646138eb60165488613b3690919063ffffffff16565b613b4c90919063ffffffff16565b90506016546018548261390c9190614b90565b6139169190614c01565b601f60008282546139279190614d56565b925050819055506016546019548261393f9190614b90565b6139499190614c01565b6020600082825461395a9190614d56565b92505081905550601654601754826139729190614b90565b61397c9190614c01565b601e600082825461398d9190614d56565b925050819055505b5b60008111156139ab576139aa873083613b62565b5b80856139b79190615856565b94505b6139c5878787613b62565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b60008183613b449190614b90565b905092915050565b60008183613b5a9190614c01565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613bd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613bc8906154f0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613c40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c3790615582565b60405180910390fd5b613c4b83838361424a565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613cd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613cc8906158fc565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613d649190614d56565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613dc8919061481a565b60405180910390a3613ddb84848461424f565b50505050565b6000613dec306115a0565b90506000602054601e54601f54613e039190614d56565b613e0d9190614d56565b9050600080831480613e1f5750600082145b15613e2c575050506140ae565b600a54831115613e3c57600a5492505b6000600283601f5486613e4f9190614b90565b613e599190614c01565b613e639190614c01565b90506000613e7a828661425490919063ffffffff16565b90506000479050613e8a8261426a565b6000613e9f824761425490919063ffffffff16565b90506000613eca87613ebc601e5485613b3690919063ffffffff16565b613b4c90919063ffffffff16565b90506000613ef588613ee760205486613b3690919063ffffffff16565b613b4c90919063ffffffff16565b90506000818385613f069190615856565b613f109190615856565b90506000601f819055506000601e819055506000602081905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613f709061594d565b60006040518083038185875af1925050503d8060008114613fad576040519150601f19603f3d011682016040523d82523d6000602084013e613fb2565b606091505b505080985050600087118015613fc85750600081115b1561401557613fd787826144a7565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601f5460405161400c93929190615962565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161405b9061594d565b60006040518083038185875af1925050503d8060008114614098576040519150601f19603f3d011682016040523d82523d6000602084013e61409d565b606091505b505080985050505050505050505050505b565b60004260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000ea3252e1b62cb0764a99da489f84c15e70128bae6040518263ffffffff1660e01b815260040161411491906148c4565b602060405180830381865afa158015614131573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614155919061532d565b90506000614182612710614174600d5485613b3690919063ffffffff16565b613b4c90919063ffffffff16565b905060008111156141bb576141ba7f000000000000000000000000ea3252e1b62cb0764a99da489f84c15e70128bae61dead83613b62565b5b60007f000000000000000000000000ea3252e1b62cb0764a99da489f84c15e70128bae90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561422857600080fd5b505af115801561423c573d6000803e3d6000fd5b505050506001935050505090565b505050565b505050565b600081836142629190615856565b905092915050565b6000600267ffffffffffffffff81111561428757614286615999565b5b6040519080825280602002602001820160405280156142b55781602001602082028036833780820191505090505b50905030816000815181106142cd576142cc6159c8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015614372573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906143969190615a0c565b816001815181106143aa576143a96159c8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061440f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612a71565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401614471959493929190615b32565b600060405180830381600087803b15801561448b57600080fd5b505af115801561449f573d6000803e3d6000fd5b505050505050565b6144d2307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612a71565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161455996959493929190615b8c565b60606040518083038185885af1158015614577573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061459c9190615bed565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156145dd5780820151818401526020810190506145c2565b60008484015250505050565b6000601f19601f8301169050919050565b6000614605826145a3565b61460f81856145ae565b935061461f8185602086016145bf565b614628816145e9565b840191505092915050565b6000602082019050818103600083015261464d81846145fa565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006146858261465a565b9050919050565b6146958161467a565b81146146a057600080fd5b50565b6000813590506146b28161468c565b92915050565b6000819050919050565b6146cb816146b8565b81146146d657600080fd5b50565b6000813590506146e8816146c2565b92915050565b6000806040838503121561470557614704614655565b5b6000614713858286016146a3565b9250506020614724858286016146d9565b9150509250929050565b60008115159050919050565b6147438161472e565b82525050565b600060208201905061475e600083018461473a565b92915050565b60006020828403121561477a57614779614655565b5b6000614788848285016146a3565b91505092915050565b6000819050919050565b60006147b66147b16147ac8461465a565b614791565b61465a565b9050919050565b60006147c88261479b565b9050919050565b60006147da826147bd565b9050919050565b6147ea816147cf565b82525050565b600060208201905061480560008301846147e1565b92915050565b614814816146b8565b82525050565b600060208201905061482f600083018461480b565b92915050565b60006020828403121561484b5761484a614655565b5b6000614859848285016146d9565b91505092915050565b60008060006060848603121561487b5761487a614655565b5b6000614889868287016146a3565b935050602061489a868287016146a3565b92505060406148ab868287016146d9565b9150509250925092565b6148be8161467a565b82525050565b60006020820190506148d960008301846148b5565b92915050565b600060ff82169050919050565b6148f5816148df565b82525050565b600060208201905061491060008301846148ec565b92915050565b61491f8161472e565b811461492a57600080fd5b50565b60008135905061493c81614916565b92915050565b60008060006060848603121561495b5761495a614655565b5b6000614969868287016146d9565b935050602061497a868287016146d9565b925050604061498b8682870161492d565b9150509250925092565b600080604083850312156149ac576149ab614655565b5b60006149ba858286016146a3565b92505060206149cb8582860161492d565b9150509250929050565b6000806000606084860312156149ee576149ed614655565b5b60006149fc868287016146d9565b9350506020614a0d868287016146d9565b9250506040614a1e868287016146d9565b9150509250925092565b600060208284031215614a3e57614a3d614655565b5b6000614a4c8482850161492d565b91505092915050565b60008060408385031215614a6c57614a6b614655565b5b6000614a7a858286016146a3565b9250506020614a8b858286016146a3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614adc57607f821691505b602082108103614aef57614aee614a95565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614b2b6020836145ae565b9150614b3682614af5565b602082019050919050565b60006020820190508181036000830152614b5a81614b1e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614b9b826146b8565b9150614ba6836146b8565b9250828202614bb4816146b8565b91508282048414831517614bcb57614bca614b61565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614c0c826146b8565b9150614c17836146b8565b925082614c2757614c26614bd2565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614c8e602f836145ae565b9150614c9982614c32565b604082019050919050565b60006020820190508181036000830152614cbd81614c81565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614d206028836145ae565b9150614d2b82614cc4565b604082019050919050565b60006020820190508181036000830152614d4f81614d13565b9050919050565b6000614d61826146b8565b9150614d6c836146b8565b9250828201905080821115614d8457614d83614b61565b5b92915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614de66033836145ae565b9150614df182614d8a565b604082019050919050565b60006020820190508181036000830152614e1581614dd9565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614e786030836145ae565b9150614e8382614e1c565b604082019050919050565b60006020820190508181036000830152614ea781614e6b565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614f0a6039836145ae565b9150614f1582614eae565b604082019050919050565b60006020820190508181036000830152614f3981614efd565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614f9c6025836145ae565b9150614fa782614f40565b604082019050919050565b60006020820190508181036000830152614fcb81614f8f565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061502e6024836145ae565b915061503982614fd2565b604082019050919050565b6000602082019050818103600083015261505d81615021565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006150c06035836145ae565b91506150cb82615064565b604082019050919050565b600060208201905081810360008301526150ef816150b3565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006151526034836145ae565b915061515d826150f6565b604082019050919050565b6000602082019050818103600083015261518181615145565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006151e46026836145ae565b91506151ef82615188565b604082019050919050565b60006020820190508181036000830152615213816151d7565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b60006152506020836145ae565b915061525b8261521a565b602082019050919050565b6000602082019050818103600083015261527f81615243565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b60006152e2602a836145ae565b91506152ed82615286565b604082019050919050565b60006020820190508181036000830152615311816152d5565b9050919050565b600081519050615327816146c2565b92915050565b60006020828403121561534357615342614655565b5b600061535184828501615318565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006153b66024836145ae565b91506153c18261535a565b604082019050919050565b600060208201905081810360008301526153e5816153a9565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006154486022836145ae565b9150615453826153ec565b604082019050919050565b600060208201905081810360008301526154778161543b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006154da6025836145ae565b91506154e58261547e565b604082019050919050565b60006020820190508181036000830152615509816154cd565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061556c6023836145ae565b915061557782615510565b604082019050919050565b6000602082019050818103600083015261559b8161555f565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006155d86016836145ae565b91506155e3826155a2565b602082019050919050565b60006020820190508181036000830152615607816155cb565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006156906049836145ae565b915061569b8261560e565b606082019050919050565b600060208201905081810360008301526156bf81615683565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006157226035836145ae565b915061572d826156c6565b604082019050919050565b6000602082019050818103600083015261575181615715565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061578e6013836145ae565b915061579982615758565b602082019050919050565b600060208201905081810360008301526157bd81615781565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006158206036836145ae565b915061582b826157c4565b604082019050919050565b6000602082019050818103600083015261584f81615813565b9050919050565b6000615861826146b8565b915061586c836146b8565b925082820390508181111561588457615883614b61565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006158e66026836145ae565b91506158f18261588a565b604082019050919050565b60006020820190508181036000830152615915816158d9565b9050919050565b600081905092915050565b50565b600061593760008361591c565b915061594282615927565b600082019050919050565b60006159588261592a565b9150819050919050565b6000606082019050615977600083018661480b565b615984602083018561480b565b615991604083018461480b565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050615a068161468c565b92915050565b600060208284031215615a2257615a21614655565b5b6000615a30848285016159f7565b91505092915050565b6000819050919050565b6000615a5e615a59615a5484615a39565b614791565b6146b8565b9050919050565b615a6e81615a43565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615aa98161467a565b82525050565b6000615abb8383615aa0565b60208301905092915050565b6000602082019050919050565b6000615adf82615a74565b615ae98185615a7f565b9350615af483615a90565b8060005b83811015615b25578151615b0c8882615aaf565b9750615b1783615ac7565b925050600181019050615af8565b5085935050505092915050565b600060a082019050615b47600083018861480b565b615b546020830187615a65565b8181036040830152615b668186615ad4565b9050615b7560608301856148b5565b615b82608083018461480b565b9695505050505050565b600060c082019050615ba160008301896148b5565b615bae602083018861480b565b615bbb6040830187615a65565b615bc86060830186615a65565b615bd560808301856148b5565b615be260a083018461480b565b979650505050505050565b600080600060608486031215615c0657615c05614655565b5b6000615c1486828701615318565b9350506020615c2586828701615318565b9250506040615c3686828701615318565b915050925092509256fea26469706673582212207f064832962a9125c1dacf07b48424c08a0531b792bf04cc33da2d144b5294c464736f6c63430008130033

Deployed Bytecode Sourcemap

27579:21075:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6166:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8333:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29267:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27656:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7286:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38101:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28281:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28110:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29051:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29011;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34442:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8984:480;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27759:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28191:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28152:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7128:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9873:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27714:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28379:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38266:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27919:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28866:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28459:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7457:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1472:103;;;;;;;;;;;;;:::i;:::-;;46306:555;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32977:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35262:159;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27851:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27991:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34078:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28759:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35862:332;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32747:155;;;;;;;;;;;;;:::i;:::-;;821:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27888:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28901:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35539:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6385:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37242:296;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28833:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28335:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29091:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28977:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10591:401;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28243:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7797:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37742:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29488:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28419:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36925:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36418:340;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34842:232;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28677:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28035:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33475:459;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28725:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8035:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27951:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33169:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28796:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1730:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28939:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28077:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37973:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47637:1014;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6166:100;6220:13;6253:5;6246:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6166:100;:::o;8333:169::-;8416:4;8433:39;8442:12;:10;:12::i;:::-;8456:7;8465:6;8433:8;:39::i;:::-;8490:4;8483:11;;8333:169;;;;:::o;29267:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;27656:51::-;;;:::o;7286:108::-;7347:7;7374:12;;7367:19;;7286:108;:::o;38101:157::-;1052:12;:10;:12::i;:::-;1041:23;;:7;:5;:7::i;:::-;:23;;;1033:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38208:9:::1;;;;;;;;;;;38180:38;;38197:9;38180:38;;;;;;;;;;;;38241:9;38229;;:21;;;;;;;;;;;;;;;;;;38101:157:::0;:::o;28281:47::-;;;;:::o;28110:35::-;;;;:::o;29051:33::-;;;;:::o;29011:::-;;;;:::o;34442:275::-;1052:12;:10;:12::i;:::-;1041:23;;:7;:5;:7::i;:::-;:23;;;1033:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34579:4:::1;34571;34566:1;34550:13;:11;:13::i;:::-;:17;;;;:::i;:::-;34549:26;;;;:::i;:::-;34548:35;;;;:::i;:::-;34538:6;:45;;34516:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;34702:6;34692;:17;;;;:::i;:::-;34669:20;:40;;;;34442:275:::0;:::o;8984:480::-;9124:4;9141:36;9151:6;9159:9;9170:6;9141:9;:36::i;:::-;9190:24;9217:11;:19;9229:6;9217:19;;;;;;;;;;;;;;;:33;9237:12;:10;:12::i;:::-;9217:33;;;;;;;;;;;;;;;;9190:60;;9289:6;9269:16;:26;;9261:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;9368:57;9377:6;9385:12;:10;:12::i;:::-;9418:6;9399:16;:25;9368:8;:57::i;:::-;9452:4;9445:11;;;8984:480;;;;;:::o;27759:53::-;27805:6;27759:53;:::o;28191:45::-;;;;:::o;28152:32::-;;;;;;;;;;;;;:::o;7128:93::-;7186:5;7211:2;7204:9;;7128:93;:::o;9873:215::-;9961:4;9978:80;9987:12;:10;:12::i;:::-;10001:7;10047:10;10010:11;:25;10022:12;:10;:12::i;:::-;10010:25;;;;;;;;;;;;;;;:34;10036:7;10010:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;9978:8;:80::i;:::-;10076:4;10069:11;;9873:215;;;;:::o;27714:38::-;;;:::o;28379:33::-;;;;;;;;;;;;;:::o;38266:126::-;38332:4;38356:19;:28;38376:7;38356:28;;;;;;;;;;;;;;;;;;;;;;;;;38349:35;;38266:126;;;:::o;27919:23::-;;;;;;;;;;;;;:::o;28866:28::-;;;;:::o;28459:31::-;;;;;;;;;;;;;:::o;7457:127::-;7531:7;7558:9;:18;7568:7;7558:18;;;;;;;;;;;;;;;;7551:25;;7457:127;;;:::o;1472:103::-;1052:12;:10;:12::i;:::-;1041:23;;:7;:5;:7::i;:::-;:23;;;1033:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1537:30:::1;1564:1;1537:18;:30::i;:::-;1472:103::o:0;46306:555::-;1052:12;:10;:12::i;:::-;1041:23;;:7;:5;:7::i;:::-;:23;;;1033:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46508:3:::1;46485:19;:26;;46463:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;46635:4;46623:8;:16;;:33;;;;;46655:1;46643:8;:13;;46623:33;46601:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;46761:19;46743:15;:37;;;;46810:8;46791:16;:27;;;;46845:8;46829:13;;:24;;;;;;;;;;;;;;;;;;46306:555:::0;;;:::o;32977:121::-;33029:4;1052:12;:10;:12::i;:::-;1041:23;;:7;:5;:7::i;:::-;:23;;;1033:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33063:5:::1;33046:14;;:22;;;;;;;;;;;;;;;;;;33086:4;33079:11;;32977:121:::0;:::o;35262:159::-;1052:12;:10;:12::i;:::-;1041:23;;:7;:5;:7::i;:::-;:23;;;1033:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35409:4:::1;35367:31;:39;35399:6;35367:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35262:159:::0;;:::o;27851:30::-;;;;;;;;;;;;;:::o;27991:35::-;;;;:::o;34078:206::-;34176:4;1052:12;:10;:12::i;:::-;1041:23;;:7;:5;:7::i;:::-;:23;;;1033:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34248:6:::1;34233:13;:11;:13::i;:::-;34221:9;:25;;;;:::i;:::-;:33;;;;:::i;:::-;34198:20;:56;;;;34272:4;34265:11;;34078:206:::0;;;:::o;28759:30::-;;;;:::o;35862:332::-;1052:12;:10;:12::i;:::-;1041:23;;:7;:5;:7::i;:::-;:23;;;1033:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36030:13:::1;36012:15;:31;;;;36072:13;36054:15;:31;;;;36108:7;36096:9;:19;;;;36177:9;;36159:15;;36141;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;36126:12;:60;;;;35862:332:::0;;;:::o;32747:155::-;1052:12;:10;:12::i;:::-;1041:23;;:7;:5;:7::i;:::-;:23;;;1033:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32818:4:::1;32802:13;;:20;;;;;;;;;;;;;;;;;;32847:4;32833:11;;:18;;;;;;;;;;;;;;;;;;32879:15;32862:14;:32;;;;32747:155::o:0;821:87::-;867:7;894:6;;;;;;;;;;;887:13;;821:87;:::o;27888:24::-;;;;;;;;;;;;;:::o;28901:31::-;;;;:::o;35539:100::-;1052:12;:10;:12::i;:::-;1041:23;;:7;:5;:7::i;:::-;:23;;;1033:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35624:7:::1;35610:11;;:21;;;;;;;;;;;;;;;;;;35539:100:::0;:::o;6385:104::-;6441:13;6474:7;6467:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6385:104;:::o;37242:296::-;1052:12;:10;:12::i;:::-;1041:23;;:7;:5;:7::i;:::-;:23;;;1033:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37378:13:::1;37370:21;;:4;:21;;::::0;37348:128:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;37489:41;37518:4;37524:5;37489:28;:41::i;:::-;37242:296:::0;;:::o;28833:24::-;;;;:::o;28335:35::-;;;;:::o;29091:27::-;;;;:::o;28977:25::-;;;;:::o;10591:401::-;10684:4;10701:24;10728:11;:25;10740:12;:10;:12::i;:::-;10728:25;;;;;;;;;;;;;;;:34;10754:7;10728:34;;;;;;;;;;;;;;;;10701:61;;10801:15;10781:16;:35;;10773:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10886:67;10895:12;:10;:12::i;:::-;10909:7;10937:15;10918:16;:34;10886:8;:67::i;:::-;10980:4;10973:11;;;10591:401;;;;:::o;28243:29::-;;;;:::o;7797:175::-;7883:4;7900:42;7910:12;:10;:12::i;:::-;7924:9;7935:6;7900:9;:42::i;:::-;7960:4;7953:11;;7797:175;;;;:::o;37742:223::-;1052:12;:10;:12::i;:::-;1041:23;;:7;:5;:7::i;:::-;:23;;;1033:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37894:15:::1;;;;;;;;;;;37851:59;;37874:18;37851:59;;;;;;;;;;;;37939:18;37921:15;;:36;;;;;;;;;;;;;;;;;;37742:223:::0;:::o;29488:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;28419:33::-;;;;;;;;;;;;;:::o;36925:182::-;1052:12;:10;:12::i;:::-;1041:23;;:7;:5;:7::i;:::-;:23;;;1033:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37041:8:::1;37010:19;:28;37030:7;37010:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;37081:7;37065:34;;;37090:8;37065:34;;;;;;:::i;:::-;;;;;;;;36925:182:::0;;:::o;36418:340::-;1052:12;:10;:12::i;:::-;1041:23;;:7;:5;:7::i;:::-;:23;;;1033:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36588:13:::1;36569:16;:32;;;;36631:13;36612:16;:32;;;;36668:7;36655:10;:20;;;;36740:10;;36721:16;;36702;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;36686:13;:64;;;;36418:340:::0;;;:::o;34842:232::-;1052:12;:10;:12::i;:::-;1041:23;;:7;:5;:7::i;:::-;:23;;;1033:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34951:1:::1;34941:6;:11;;34919:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;35062:4;35048:13;:11;:13::i;:::-;35039:6;:22;;;;:::i;:::-;:27;;;;:::i;:::-;35027:9;:39;;;;34842:232:::0;:::o;28677:39::-;;;;;;;;;;;;;:::o;28035:35::-;;;;:::o;33475:459::-;33571:4;1052:12;:10;:12::i;:::-;1041:23;;:7;:5;:7::i;:::-;:23;;;1033:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33628:1:::1;33615:9;:14;;33593:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;33756:3;33743:9;:16;;33721:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;33898:6;33883:13;:11;:13::i;:::-;33871:9;:25;;;;:::i;:::-;:33;;;;:::i;:::-;33850:18;:54;;;;33922:4;33915:11;;33475:459:::0;;;:::o;28725:27::-;;;;:::o;8035:151::-;8124:7;8151:11;:18;8163:5;8151:18;;;;;;;;;;;;;;;:27;8170:7;8151:27;;;;;;;;;;;;;;;;8144:34;;8035:151;;;;:::o;27951:33::-;;;;:::o;33169:135::-;33229:4;1052:12;:10;:12::i;:::-;1041:23;;:7;:5;:7::i;:::-;:23;;;1033:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33269:5:::1;33246:20;;:28;;;;;;;;;;;;;;;;;;33292:4;33285:11;;33169:135:::0;:::o;28796:30::-;;;;:::o;1730:201::-;1052:12;:10;:12::i;:::-;1041:23;;:7;:5;:7::i;:::-;:23;;;1033:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1839:1:::1;1819:22;;:8;:22;;::::0;1811:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;1895:28;1914:8;1895:18;:28::i;:::-;1730:201:::0;:::o;28939:31::-;;;;:::o;28077:24::-;;;;:::o;37973:120::-;1052:12;:10;:12::i;:::-;1041:23;;:7;:5;:7::i;:::-;:23;;;1033:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38074:11:::1;38063:8;;:22;;;;;;;;;;;;;;;;;;37973:120:::0;:::o;47637:1014::-;47736:4;1052:12;:10;:12::i;:::-;1041:23;;:7;:5;:7::i;:::-;:23;;;1033:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47821:19:::1;;47798:20;;:42;;;;:::i;:::-;47780:15;:60;47758:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;47930:4;47919:7;:15;;47911:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;48015:15;47992:20;:38;;;;48085:28;48116:4;:14;;;48131:13;48116:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48085:60;;48195:20;48218:44;48256:5;48218:33;48243:7;48218:20;:24;;:33;;;;:::i;:::-;:37;;:44;;;;:::i;:::-;48195:67;;48382:1;48367:12;:16;48363:110;;;48400:61;48416:13;48439:6;48448:12;48400:15;:61::i;:::-;48363:110;48548:19;48585:13;48548:51;;48610:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;48639:4;48632:11;;;;;47637:1014:::0;;;:::o;195:98::-;248:7;275:10;268:17;;195:98;:::o;14239:380::-;14392:1;14375:19;;:5;:19;;;14367:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14473:1;14454:21;;:7;:21;;;14446:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14557:6;14527:11;:18;14539:5;14527:18;;;;;;;;;;;;;;;:27;14546:7;14527:27;;;;;;;;;;;;;;;:36;;;;14595:7;14579:32;;14588:5;14579:32;;;14604:6;14579:32;;;;;;:::i;:::-;;;;;;;;14239:380;;;:::o;38450:4991::-;38598:1;38582:18;;:4;:18;;;38574:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38675:1;38661:16;;:2;:16;;;38653:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;38744:1;38734:6;:11;38730:93;;38762:28;38778:4;38784:2;38788:1;38762:15;:28::i;:::-;38805:7;;38730:93;38839:14;;;;;;;;;;;38835:2483;;;38900:7;:5;:7::i;:::-;38892:15;;:4;:15;;;;:49;;;;;38934:7;:5;:7::i;:::-;38928:13;;:2;:13;;;;38892:49;:86;;;;;38976:1;38962:16;;:2;:16;;;;38892:86;:128;;;;;39013:6;38999:21;;:2;:21;;;;38892:128;:158;;;;;39042:8;;;;;;;;;;;39041:9;38892:158;38870:2437;;;39090:13;;;;;;;;;;;39085:223;;39162:19;:25;39182:4;39162:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;39191:19;:23;39211:2;39191:23;;;;;;;;;;;;;;;;;;;;;;;;;39162:52;39128:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;39085:223;39464:20;;;;;;;;;;;39460:637;;;39545:7;:5;:7::i;:::-;39539:13;;:2;:13;;;;:72;;;;;39595:15;39581:30;;:2;:30;;;;39539:72;:129;;;;;39654:13;39640:28;;:2;:28;;;;39539:129;39509:569;;;39828:12;39757:28;:39;39786:9;39757:39;;;;;;;;;;;;;;;;:83;39719:254;;;;;;;;;;;;:::i;:::-;;;;;;;;;40042:12;40000:28;:39;40029:9;40000:39;;;;;;;;;;;;;;;:54;;;;39509:569;39460:637;40171:25;:31;40197:4;40171:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;40228:31;:35;40260:2;40228:35;;;;;;;;;;;;;;;;;;;;;;;;;40227:36;40171:92;40145:1147;;;40350:20;;40340:6;:30;;40306:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;40558:9;;40541:13;40551:2;40541:9;:13::i;:::-;40532:6;:22;;;;:::i;:::-;:35;;40498:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;40145:1147;;;40736:25;:29;40762:2;40736:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;40791:31;:37;40823:4;40791:37;;;;;;;;;;;;;;;;;;;;;;;;;40790:38;40736:92;40710:582;;;40915:20;;40905:6;:30;;40871:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;40710:582;;;41072:31;:35;41104:2;41072:35;;;;;;;;;;;;;;;;;;;;;;;;;41067:225;;41192:9;;41175:13;41185:2;41175:9;:13::i;:::-;41166:6;:22;;;;:::i;:::-;:35;;41132:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;41067:225;40710:582;40145:1147;38870:2437;38835:2483;41330:28;41361:24;41379:4;41361:9;:24::i;:::-;41330:55;;41398:12;41437:18;;41413:20;:42;;41398:57;;41486:7;:35;;;;;41510:11;;;;;;;;;;;41486:35;:61;;;;;41539:8;;;;;;;;;;;41538:9;41486:61;:110;;;;;41565:25;:31;41591:4;41565:31;;;;;;;;;;;;;;;;;;;;;;;;;41564:32;41486:110;:153;;;;;41614:19;:25;41634:4;41614:25;;;;;;;;;;;;;;;;;;;;;;;;;41613:26;41486:153;:194;;;;;41657:19;:23;41677:2;41657:23;;;;;;;;;;;;;;;;;;;;;;;;;41656:24;41486:194;41468:326;;;41718:4;41707:8;;:15;;;;;;;;;;;;;;;;;;41739:10;:8;:10::i;:::-;41777:5;41766:8;;:16;;;;;;;;;;;;;;;;;;41468:326;41825:8;;;;;;;;;;;41824:9;:51;;;;;41846:25;:29;41872:2;41846:29;;;;;;;;;;;;;;;;;;;;;;;;;41824:51;:77;;;;;41888:13;;;;;;;;;;;41824:77;:141;;;;;41950:15;;41933:14;;:32;;;;:::i;:::-;41914:15;:51;;41824:141;:180;;;;;41979:19;:25;41999:4;41979:25;;;;;;;;;;;;;;;;;;;;;;;;;41978:26;41824:180;41806:266;;;42031:29;:27;:29::i;:::-;;41806:266;42084:12;42100:8;;;;;;;;;;;42099:9;42084:24;;42210:19;:25;42230:4;42210:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42239:19;:23;42259:2;42239:23;;;;;;;;;;;;;;;;;;;;;;;;;42210:52;42206:100;;;42289:5;42279:15;;42206:100;42318:12;42423:7;42419:969;;;42475:25;:29;42501:2;42475:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;42524:1;42508:13;;:17;42475:50;42471:768;;;42553:34;42583:3;42553:25;42564:13;;42553:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;42546:41;;42656:13;;42636:16;;42629:4;:23;;;;:::i;:::-;42628:41;;;;:::i;:::-;42606:18;;:63;;;;;;;:::i;:::-;;;;;;;;42726:13;;42712:10;;42705:4;:17;;;;:::i;:::-;42704:35;;;;:::i;:::-;42688:12;;:51;;;;;;;:::i;:::-;;;;;;;;42808:13;;42788:16;;42781:4;:23;;;;:::i;:::-;42780:41;;;;:::i;:::-;42758:18;;:63;;;;;;;:::i;:::-;;;;;;;;42471:768;;;42883:25;:31;42909:4;42883:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;42933:1;42918:12;;:16;42883:51;42879:360;;;42962:33;42991:3;42962:24;42973:12;;42962:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;42955:40;;43063:12;;43044:15;;43037:4;:22;;;;:::i;:::-;43036:39;;;;:::i;:::-;43014:18;;:61;;;;;;;:::i;:::-;;;;;;;;43131:12;;43118:9;;43111:4;:16;;;;:::i;:::-;43110:33;;;;:::i;:::-;43094:12;;:49;;;;;;;:::i;:::-;;;;;;;;43211:12;;43192:15;;43185:4;:22;;;;:::i;:::-;43184:39;;;;:::i;:::-;43162:18;;:61;;;;;;;:::i;:::-;;;;;;;;42879:360;42471:768;43266:1;43259:4;:8;43255:91;;;43288:42;43304:4;43318;43325;43288:15;:42::i;:::-;43255:91;43372:4;43362:14;;;;;:::i;:::-;;;42419:969;43400:33;43416:4;43422:2;43426:6;43400:15;:33::i;:::-;38563:4878;;;;38450:4991;;;;:::o;2091:191::-;2165:16;2184:6;;;;;;;;;;;2165:25;;2210:8;2201:6;;:17;;;;;;;;;;;;;;;;;;2265:8;2234:40;;2255:8;2234:40;;;;;;;;;;;;2154:128;2091:191;:::o;37546:188::-;37663:5;37629:25;:31;37655:4;37629:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;37720:5;37686:40;;37714:4;37686:40;;;;;;;;;;;;37546:188;;:::o;19064:98::-;19122:7;19153:1;19149;:5;;;;:::i;:::-;19142:12;;19064:98;;;;:::o;19463:::-;19521:7;19552:1;19548;:5;;;;:::i;:::-;19541:12;;19463:98;;;;:::o;11482:721::-;11640:1;11622:20;;:6;:20;;;11614:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;11724:1;11703:23;;:9;:23;;;11695:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;11779:47;11800:6;11808:9;11819:6;11779:20;:47::i;:::-;11839:21;11863:9;:17;11873:6;11863:17;;;;;;;;;;;;;;;;11839:41;;11916:6;11899:13;:23;;11891:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;12029:6;12013:13;:22;11993:9;:17;12003:6;11993:17;;;;;;;;;;;;;;;:42;;;;12077:6;12053:9;:20;12063:9;12053:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;12118:9;12101:35;;12110:6;12101:35;;;12129:6;12101:35;;;;;;:::i;:::-;;;;;;;;12149:46;12169:6;12177:9;12188:6;12149:19;:46::i;:::-;11603:600;11482:721;;;:::o;44568:1730::-;44607:23;44633:24;44651:4;44633:9;:24::i;:::-;44607:50;;44668:25;44756:12;;44726:18;;44696;;:48;;;;:::i;:::-;:72;;;;:::i;:::-;44668:100;;44779:12;44827:1;44808:15;:20;:46;;;;44853:1;44832:17;:22;44808:46;44804:85;;;44871:7;;;;;44804:85;44923:20;;44905:15;:38;44901:109;;;44978:20;;44960:38;;44901:109;45071:23;45176:1;45147:17;45116:18;;45098:15;:36;;;;:::i;:::-;45097:67;;;;:::i;:::-;:80;;;;:::i;:::-;45071:106;;45188:26;45217:36;45237:15;45217;:19;;:36;;;;:::i;:::-;45188:65;;45266:25;45294:21;45266:49;;45328:36;45345:18;45328:16;:36::i;:::-;45377:18;45398:44;45424:17;45398:21;:25;;:44;;;;:::i;:::-;45377:65;;45455:23;45481:81;45534:17;45481:34;45496:18;;45481:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;45455:107;;45573:17;45593:51;45626:17;45593:28;45608:12;;45593:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;45573:71;;45657:23;45714:9;45696:15;45683:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;45657:66;;45757:1;45736:18;:22;;;;45790:1;45769:18;:22;;;;45817:1;45802:12;:16;;;;45853:9;;;;;;;;;;;45845:23;;45876:9;45845:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45831:59;;;;;45925:1;45907:15;:19;:42;;;;;45948:1;45930:15;:19;45907:42;45903:278;;;45966:46;45979:15;45996;45966:12;:46::i;:::-;46032:137;46065:18;46102:15;46136:18;;46032:137;;;;;;;;:::i;:::-;;;;;;;;45903:278;46215:15;;;;;;;;;;;46207:29;;46254:21;46207:83;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46193:97;;;;;44596:1702;;;;;;;;;;44568:1730;:::o;46869:760::-;46926:4;46960:15;46943:14;:32;;;;47030:28;47061:4;:14;;;47076:13;47061:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47030:60;;47140:20;47163:77;47224:5;47163:42;47188:16;;47163:20;:24;;:42;;;;:::i;:::-;:46;;:77;;;;:::i;:::-;47140:100;;47360:1;47345:12;:16;47341:110;;;47378:61;47394:13;47417:6;47426:12;47378:15;:61::i;:::-;47341:110;47526:19;47563:13;47526:51;;47588:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47617:4;47610:11;;;;;46869:760;:::o;15219:125::-;;;;:::o;15948:124::-;;;;:::o;18707:98::-;18765:7;18796:1;18792;:5;;;;:::i;:::-;18785:12;;18707:98;;;;:::o;43449:589::-;43575:21;43613:1;43599:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43575:40;;43644:4;43626;43631:1;43626:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;43670:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43660:4;43665:1;43660:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;43705:62;43722:4;43737:15;43755:11;43705:8;:62::i;:::-;43806:15;:66;;;43887:11;43913:1;43957:4;43984;44004:15;43806:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43504:534;43449:589;:::o;44046:514::-;44194:62;44211:4;44226:15;44244:11;44194:8;:62::i;:::-;44299:15;:31;;;44338:9;44371:4;44391:11;44417:1;44460;44503:8;;;;;;;;;;;44526:15;44299:253;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;44046:514;;:::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;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:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:60::-;3809:3;3830:5;3823:12;;3781:60;;;:::o;3847:142::-;3897:9;3930:53;3948:34;3957:24;3975:5;3957:24;:::i;:::-;3948:34;:::i;:::-;3930:53;:::i;:::-;3917:66;;3847:142;;;:::o;3995:126::-;4045:9;4078:37;4109:5;4078:37;:::i;:::-;4065:50;;3995:126;;;:::o;4127:153::-;4204:9;4237:37;4268:5;4237:37;:::i;:::-;4224:50;;4127:153;;;:::o;4286:185::-;4400:64;4458:5;4400:64;:::i;:::-;4395:3;4388:77;4286:185;;:::o;4477:276::-;4597:4;4635:2;4624:9;4620:18;4612:26;;4648:98;4743:1;4732:9;4728:17;4719:6;4648:98;:::i;:::-;4477:276;;;;:::o;4759:118::-;4846:24;4864:5;4846:24;:::i;:::-;4841:3;4834:37;4759:118;;:::o;4883:222::-;4976:4;5014:2;5003:9;4999:18;4991:26;;5027:71;5095:1;5084:9;5080:17;5071:6;5027:71;:::i;:::-;4883:222;;;;:::o;5111:329::-;5170:6;5219:2;5207:9;5198:7;5194:23;5190:32;5187:119;;;5225:79;;:::i;:::-;5187:119;5345:1;5370:53;5415:7;5406:6;5395:9;5391:22;5370:53;:::i;:::-;5360:63;;5316:117;5111:329;;;;:::o;5446:619::-;5523:6;5531;5539;5588:2;5576:9;5567:7;5563:23;5559:32;5556:119;;;5594:79;;:::i;:::-;5556:119;5714:1;5739:53;5784:7;5775:6;5764:9;5760:22;5739:53;:::i;:::-;5729:63;;5685:117;5841:2;5867:53;5912:7;5903:6;5892:9;5888:22;5867:53;:::i;:::-;5857:63;;5812:118;5969:2;5995:53;6040:7;6031:6;6020:9;6016:22;5995:53;:::i;:::-;5985:63;;5940:118;5446:619;;;;;:::o;6071:118::-;6158:24;6176:5;6158:24;:::i;:::-;6153:3;6146:37;6071:118;;:::o;6195:222::-;6288:4;6326:2;6315:9;6311:18;6303:26;;6339:71;6407:1;6396:9;6392:17;6383:6;6339:71;:::i;:::-;6195:222;;;;:::o;6423:86::-;6458:7;6498:4;6491:5;6487:16;6476:27;;6423:86;;;:::o;6515:112::-;6598:22;6614:5;6598:22;:::i;:::-;6593:3;6586:35;6515:112;;:::o;6633:214::-;6722:4;6760:2;6749:9;6745:18;6737:26;;6773:67;6837:1;6826:9;6822:17;6813:6;6773:67;:::i;:::-;6633:214;;;;:::o;6853:116::-;6923:21;6938:5;6923:21;:::i;:::-;6916:5;6913:32;6903:60;;6959:1;6956;6949:12;6903:60;6853:116;:::o;6975:133::-;7018:5;7056:6;7043:20;7034:29;;7072:30;7096:5;7072:30;:::i;:::-;6975:133;;;;:::o;7114:613::-;7188:6;7196;7204;7253:2;7241:9;7232:7;7228:23;7224:32;7221:119;;;7259:79;;:::i;:::-;7221:119;7379:1;7404:53;7449:7;7440:6;7429:9;7425:22;7404:53;:::i;:::-;7394:63;;7350:117;7506:2;7532:53;7577:7;7568:6;7557:9;7553:22;7532:53;:::i;:::-;7522:63;;7477:118;7634:2;7660:50;7702:7;7693:6;7682:9;7678:22;7660:50;:::i;:::-;7650:60;;7605:115;7114:613;;;;;:::o;7733:468::-;7798:6;7806;7855:2;7843:9;7834:7;7830:23;7826:32;7823:119;;;7861:79;;:::i;:::-;7823:119;7981:1;8006:53;8051:7;8042:6;8031:9;8027:22;8006:53;:::i;:::-;7996:63;;7952:117;8108:2;8134:50;8176:7;8167:6;8156:9;8152:22;8134:50;:::i;:::-;8124:60;;8079:115;7733:468;;;;;:::o;8207:619::-;8284:6;8292;8300;8349:2;8337:9;8328:7;8324:23;8320:32;8317:119;;;8355:79;;:::i;:::-;8317:119;8475:1;8500:53;8545:7;8536:6;8525:9;8521:22;8500:53;:::i;:::-;8490:63;;8446:117;8602:2;8628:53;8673:7;8664:6;8653:9;8649:22;8628:53;:::i;:::-;8618:63;;8573:118;8730:2;8756:53;8801:7;8792:6;8781:9;8777:22;8756:53;:::i;:::-;8746:63;;8701:118;8207:619;;;;;:::o;8832:323::-;8888:6;8937:2;8925:9;8916:7;8912:23;8908:32;8905:119;;;8943:79;;:::i;:::-;8905:119;9063:1;9088:50;9130:7;9121:6;9110:9;9106:22;9088:50;:::i;:::-;9078:60;;9034:114;8832:323;;;;:::o;9161:474::-;9229:6;9237;9286:2;9274:9;9265:7;9261:23;9257:32;9254:119;;;9292:79;;:::i;:::-;9254:119;9412:1;9437:53;9482:7;9473:6;9462:9;9458:22;9437:53;:::i;:::-;9427:63;;9383:117;9539:2;9565:53;9610:7;9601:6;9590:9;9586:22;9565:53;:::i;:::-;9555:63;;9510:118;9161:474;;;;;:::o;9641:180::-;9689:77;9686:1;9679:88;9786:4;9783:1;9776:15;9810:4;9807:1;9800:15;9827:320;9871:6;9908:1;9902:4;9898:12;9888:22;;9955:1;9949:4;9945:12;9976:18;9966:81;;10032:4;10024:6;10020:17;10010:27;;9966:81;10094:2;10086:6;10083:14;10063:18;10060:38;10057:84;;10113:18;;:::i;:::-;10057:84;9878:269;9827:320;;;:::o;10153:182::-;10293:34;10289:1;10281:6;10277:14;10270:58;10153:182;:::o;10341:366::-;10483:3;10504:67;10568:2;10563:3;10504:67;:::i;:::-;10497:74;;10580:93;10669:3;10580:93;:::i;:::-;10698:2;10693:3;10689:12;10682:19;;10341:366;;;:::o;10713:419::-;10879:4;10917:2;10906:9;10902:18;10894:26;;10966:9;10960:4;10956:20;10952:1;10941:9;10937:17;10930:47;10994:131;11120:4;10994:131;:::i;:::-;10986:139;;10713:419;;;:::o;11138:180::-;11186:77;11183:1;11176:88;11283:4;11280:1;11273:15;11307:4;11304:1;11297:15;11324:410;11364:7;11387:20;11405:1;11387:20;:::i;:::-;11382:25;;11421:20;11439:1;11421:20;:::i;:::-;11416:25;;11476:1;11473;11469:9;11498:30;11516:11;11498:30;:::i;:::-;11487:41;;11677:1;11668:7;11664:15;11661:1;11658:22;11638:1;11631:9;11611:83;11588:139;;11707:18;;:::i;:::-;11588:139;11372:362;11324:410;;;;:::o;11740:180::-;11788:77;11785:1;11778:88;11885:4;11882:1;11875:15;11909:4;11906:1;11899:15;11926:185;11966:1;11983:20;12001:1;11983:20;:::i;:::-;11978:25;;12017:20;12035:1;12017:20;:::i;:::-;12012:25;;12056:1;12046:35;;12061:18;;:::i;:::-;12046:35;12103:1;12100;12096:9;12091:14;;11926:185;;;;:::o;12117:234::-;12257:34;12253:1;12245:6;12241:14;12234:58;12326:17;12321:2;12313:6;12309:15;12302:42;12117:234;:::o;12357:366::-;12499:3;12520:67;12584:2;12579:3;12520:67;:::i;:::-;12513:74;;12596:93;12685:3;12596:93;:::i;:::-;12714:2;12709:3;12705:12;12698:19;;12357:366;;;:::o;12729:419::-;12895:4;12933:2;12922:9;12918:18;12910:26;;12982:9;12976:4;12972:20;12968:1;12957:9;12953:17;12946:47;13010:131;13136:4;13010:131;:::i;:::-;13002:139;;12729:419;;;:::o;13154:227::-;13294:34;13290:1;13282:6;13278:14;13271:58;13363:10;13358:2;13350:6;13346:15;13339:35;13154:227;:::o;13387:366::-;13529:3;13550:67;13614:2;13609:3;13550:67;:::i;:::-;13543:74;;13626:93;13715:3;13626:93;:::i;:::-;13744:2;13739:3;13735:12;13728:19;;13387:366;;;:::o;13759:419::-;13925:4;13963:2;13952:9;13948:18;13940:26;;14012:9;14006:4;14002:20;13998:1;13987:9;13983:17;13976:47;14040:131;14166:4;14040:131;:::i;:::-;14032:139;;13759:419;;;:::o;14184:191::-;14224:3;14243:20;14261:1;14243:20;:::i;:::-;14238:25;;14277:20;14295:1;14277:20;:::i;:::-;14272:25;;14320:1;14317;14313:9;14306:16;;14341:3;14338:1;14335:10;14332:36;;;14348:18;;:::i;:::-;14332:36;14184:191;;;;:::o;14381:238::-;14521:34;14517:1;14509:6;14505:14;14498:58;14590:21;14585:2;14577:6;14573:15;14566:46;14381:238;:::o;14625:366::-;14767:3;14788:67;14852:2;14847:3;14788:67;:::i;:::-;14781:74;;14864:93;14953:3;14864:93;:::i;:::-;14982:2;14977:3;14973:12;14966:19;;14625:366;;;:::o;14997:419::-;15163:4;15201:2;15190:9;15186:18;15178:26;;15250:9;15244:4;15240:20;15236:1;15225:9;15221:17;15214:47;15278:131;15404:4;15278:131;:::i;:::-;15270:139;;14997:419;;;:::o;15422:235::-;15562:34;15558:1;15550:6;15546:14;15539:58;15631:18;15626:2;15618:6;15614:15;15607:43;15422:235;:::o;15663:366::-;15805:3;15826:67;15890:2;15885:3;15826:67;:::i;:::-;15819:74;;15902:93;15991:3;15902:93;:::i;:::-;16020:2;16015:3;16011:12;16004:19;;15663:366;;;:::o;16035:419::-;16201:4;16239:2;16228:9;16224:18;16216:26;;16288:9;16282:4;16278:20;16274:1;16263:9;16259:17;16252:47;16316:131;16442:4;16316:131;:::i;:::-;16308:139;;16035:419;;;:::o;16460:244::-;16600:34;16596:1;16588:6;16584:14;16577:58;16669:27;16664:2;16656:6;16652:15;16645:52;16460:244;:::o;16710:366::-;16852:3;16873:67;16937:2;16932:3;16873:67;:::i;:::-;16866:74;;16949:93;17038:3;16949:93;:::i;:::-;17067:2;17062:3;17058:12;17051:19;;16710:366;;;:::o;17082:419::-;17248:4;17286:2;17275:9;17271:18;17263:26;;17335:9;17329:4;17325:20;17321:1;17310:9;17306:17;17299:47;17363:131;17489:4;17363:131;:::i;:::-;17355:139;;17082:419;;;:::o;17507:224::-;17647:34;17643:1;17635:6;17631:14;17624:58;17716:7;17711:2;17703:6;17699:15;17692:32;17507:224;:::o;17737:366::-;17879:3;17900:67;17964:2;17959:3;17900:67;:::i;:::-;17893:74;;17976:93;18065:3;17976:93;:::i;:::-;18094:2;18089:3;18085:12;18078:19;;17737:366;;;:::o;18109:419::-;18275:4;18313:2;18302:9;18298:18;18290:26;;18362:9;18356:4;18352:20;18348:1;18337:9;18333:17;18326:47;18390:131;18516:4;18390:131;:::i;:::-;18382:139;;18109:419;;;:::o;18534:223::-;18674:34;18670:1;18662:6;18658:14;18651:58;18743:6;18738:2;18730:6;18726:15;18719:31;18534:223;:::o;18763:366::-;18905:3;18926:67;18990:2;18985:3;18926:67;:::i;:::-;18919:74;;19002:93;19091:3;19002:93;:::i;:::-;19120:2;19115:3;19111:12;19104:19;;18763:366;;;:::o;19135:419::-;19301:4;19339:2;19328:9;19324:18;19316:26;;19388:9;19382:4;19378:20;19374:1;19363:9;19359:17;19352:47;19416:131;19542:4;19416:131;:::i;:::-;19408:139;;19135:419;;;:::o;19560:240::-;19700:34;19696:1;19688:6;19684:14;19677:58;19769:23;19764:2;19756:6;19752:15;19745:48;19560:240;:::o;19806:366::-;19948:3;19969:67;20033:2;20028:3;19969:67;:::i;:::-;19962:74;;20045:93;20134:3;20045:93;:::i;:::-;20163:2;20158:3;20154:12;20147:19;;19806:366;;;:::o;20178:419::-;20344:4;20382:2;20371:9;20367:18;20359:26;;20431:9;20425:4;20421:20;20417:1;20406:9;20402:17;20395:47;20459:131;20585:4;20459:131;:::i;:::-;20451:139;;20178:419;;;:::o;20603:239::-;20743:34;20739:1;20731:6;20727:14;20720:58;20812:22;20807:2;20799:6;20795:15;20788:47;20603:239;:::o;20848:366::-;20990:3;21011:67;21075:2;21070:3;21011:67;:::i;:::-;21004:74;;21087:93;21176:3;21087:93;:::i;:::-;21205:2;21200:3;21196:12;21189:19;;20848:366;;;:::o;21220:419::-;21386:4;21424:2;21413:9;21409:18;21401:26;;21473:9;21467:4;21463:20;21459:1;21448:9;21444:17;21437:47;21501:131;21627:4;21501:131;:::i;:::-;21493:139;;21220:419;;;:::o;21645:225::-;21785:34;21781:1;21773:6;21769:14;21762:58;21854:8;21849:2;21841:6;21837:15;21830:33;21645:225;:::o;21876:366::-;22018:3;22039:67;22103:2;22098:3;22039:67;:::i;:::-;22032:74;;22115:93;22204:3;22115:93;:::i;:::-;22233:2;22228:3;22224:12;22217:19;;21876:366;;;:::o;22248:419::-;22414:4;22452:2;22441:9;22437:18;22429:26;;22501:9;22495:4;22491:20;22487:1;22476:9;22472:17;22465:47;22529:131;22655:4;22529:131;:::i;:::-;22521:139;;22248:419;;;:::o;22673:182::-;22813:34;22809:1;22801:6;22797:14;22790:58;22673:182;:::o;22861:366::-;23003:3;23024:67;23088:2;23083:3;23024:67;:::i;:::-;23017:74;;23100:93;23189:3;23100:93;:::i;:::-;23218:2;23213:3;23209:12;23202:19;;22861:366;;;:::o;23233:419::-;23399:4;23437:2;23426:9;23422:18;23414:26;;23486:9;23480:4;23476:20;23472:1;23461:9;23457:17;23450:47;23514:131;23640:4;23514:131;:::i;:::-;23506:139;;23233:419;;;:::o;23658:229::-;23798:34;23794:1;23786:6;23782:14;23775:58;23867:12;23862:2;23854:6;23850:15;23843:37;23658:229;:::o;23893:366::-;24035:3;24056:67;24120:2;24115:3;24056:67;:::i;:::-;24049:74;;24132:93;24221:3;24132:93;:::i;:::-;24250:2;24245:3;24241:12;24234:19;;23893:366;;;:::o;24265:419::-;24431:4;24469:2;24458:9;24454:18;24446:26;;24518:9;24512:4;24508:20;24504:1;24493:9;24489:17;24482:47;24546:131;24672:4;24546:131;:::i;:::-;24538:139;;24265:419;;;:::o;24690:143::-;24747:5;24778:6;24772:13;24763:22;;24794:33;24821:5;24794:33;:::i;:::-;24690:143;;;;:::o;24839:351::-;24909:6;24958:2;24946:9;24937:7;24933:23;24929:32;24926:119;;;24964:79;;:::i;:::-;24926:119;25084:1;25109:64;25165:7;25156:6;25145:9;25141:22;25109:64;:::i;:::-;25099:74;;25055:128;24839:351;;;;:::o;25196:223::-;25336:34;25332:1;25324:6;25320:14;25313:58;25405:6;25400:2;25392:6;25388:15;25381:31;25196:223;:::o;25425:366::-;25567:3;25588:67;25652:2;25647:3;25588:67;:::i;:::-;25581:74;;25664:93;25753:3;25664:93;:::i;:::-;25782:2;25777:3;25773:12;25766:19;;25425:366;;;:::o;25797:419::-;25963:4;26001:2;25990:9;25986:18;25978:26;;26050:9;26044:4;26040:20;26036:1;26025:9;26021:17;26014:47;26078:131;26204:4;26078:131;:::i;:::-;26070:139;;25797:419;;;:::o;26222:221::-;26362:34;26358:1;26350:6;26346:14;26339:58;26431:4;26426:2;26418:6;26414:15;26407:29;26222:221;:::o;26449:366::-;26591:3;26612:67;26676:2;26671:3;26612:67;:::i;:::-;26605:74;;26688:93;26777:3;26688:93;:::i;:::-;26806:2;26801:3;26797:12;26790:19;;26449:366;;;:::o;26821:419::-;26987:4;27025:2;27014:9;27010:18;27002:26;;27074:9;27068:4;27064:20;27060:1;27049:9;27045:17;27038:47;27102:131;27228:4;27102:131;:::i;:::-;27094:139;;26821:419;;;:::o;27246:224::-;27386:34;27382:1;27374:6;27370:14;27363:58;27455:7;27450:2;27442:6;27438:15;27431:32;27246:224;:::o;27476:366::-;27618:3;27639:67;27703:2;27698:3;27639:67;:::i;:::-;27632:74;;27715:93;27804:3;27715:93;:::i;:::-;27833:2;27828:3;27824:12;27817:19;;27476:366;;;:::o;27848:419::-;28014:4;28052:2;28041:9;28037:18;28029:26;;28101:9;28095:4;28091:20;28087:1;28076:9;28072:17;28065:47;28129:131;28255:4;28129:131;:::i;:::-;28121:139;;27848:419;;;:::o;28273:222::-;28413:34;28409:1;28401:6;28397:14;28390:58;28482:5;28477:2;28469:6;28465:15;28458:30;28273:222;:::o;28501:366::-;28643:3;28664:67;28728:2;28723:3;28664:67;:::i;:::-;28657:74;;28740:93;28829:3;28740:93;:::i;:::-;28858:2;28853:3;28849:12;28842:19;;28501:366;;;:::o;28873:419::-;29039:4;29077:2;29066:9;29062:18;29054:26;;29126:9;29120:4;29116:20;29112:1;29101:9;29097:17;29090:47;29154:131;29280:4;29154:131;:::i;:::-;29146:139;;28873:419;;;:::o;29298:172::-;29438:24;29434:1;29426:6;29422:14;29415:48;29298:172;:::o;29476:366::-;29618:3;29639:67;29703:2;29698:3;29639:67;:::i;:::-;29632:74;;29715:93;29804:3;29715:93;:::i;:::-;29833:2;29828:3;29824:12;29817:19;;29476:366;;;:::o;29848:419::-;30014:4;30052:2;30041:9;30037:18;30029:26;;30101:9;30095:4;30091:20;30087:1;30076:9;30072:17;30065:47;30129:131;30255:4;30129:131;:::i;:::-;30121:139;;29848:419;;;:::o;30273:297::-;30413:34;30409:1;30401:6;30397:14;30390:58;30482:34;30477:2;30469:6;30465:15;30458:59;30551:11;30546:2;30538:6;30534:15;30527:36;30273:297;:::o;30576:366::-;30718:3;30739:67;30803:2;30798:3;30739:67;:::i;:::-;30732:74;;30815:93;30904:3;30815:93;:::i;:::-;30933:2;30928:3;30924:12;30917:19;;30576:366;;;:::o;30948:419::-;31114:4;31152:2;31141:9;31137:18;31129:26;;31201:9;31195:4;31191:20;31187:1;31176:9;31172:17;31165:47;31229:131;31355:4;31229:131;:::i;:::-;31221:139;;30948:419;;;:::o;31373:240::-;31513:34;31509:1;31501:6;31497:14;31490:58;31582:23;31577:2;31569:6;31565:15;31558:48;31373:240;:::o;31619:366::-;31761:3;31782:67;31846:2;31841:3;31782:67;:::i;:::-;31775:74;;31858:93;31947:3;31858:93;:::i;:::-;31976:2;31971:3;31967:12;31960:19;;31619:366;;;:::o;31991:419::-;32157:4;32195:2;32184:9;32180:18;32172:26;;32244:9;32238:4;32234:20;32230:1;32219:9;32215:17;32208:47;32272:131;32398:4;32272:131;:::i;:::-;32264:139;;31991:419;;;:::o;32416:169::-;32556:21;32552:1;32544:6;32540:14;32533:45;32416:169;:::o;32591:366::-;32733:3;32754:67;32818:2;32813:3;32754:67;:::i;:::-;32747:74;;32830:93;32919:3;32830:93;:::i;:::-;32948:2;32943:3;32939:12;32932:19;;32591:366;;;:::o;32963:419::-;33129:4;33167:2;33156:9;33152:18;33144:26;;33216:9;33210:4;33206:20;33202:1;33191:9;33187:17;33180:47;33244:131;33370:4;33244:131;:::i;:::-;33236:139;;32963:419;;;:::o;33388:241::-;33528:34;33524:1;33516:6;33512:14;33505:58;33597:24;33592:2;33584:6;33580:15;33573:49;33388:241;:::o;33635:366::-;33777:3;33798:67;33862:2;33857:3;33798:67;:::i;:::-;33791:74;;33874:93;33963:3;33874:93;:::i;:::-;33992:2;33987:3;33983:12;33976:19;;33635:366;;;:::o;34007:419::-;34173:4;34211:2;34200:9;34196:18;34188:26;;34260:9;34254:4;34250:20;34246:1;34235:9;34231:17;34224:47;34288:131;34414:4;34288:131;:::i;:::-;34280:139;;34007:419;;;:::o;34432:194::-;34472:4;34492:20;34510:1;34492:20;:::i;:::-;34487:25;;34526:20;34544:1;34526:20;:::i;:::-;34521:25;;34570:1;34567;34563:9;34555:17;;34594:1;34588:4;34585:11;34582:37;;;34599:18;;:::i;:::-;34582:37;34432:194;;;;:::o;34632:225::-;34772:34;34768:1;34760:6;34756:14;34749:58;34841:8;34836:2;34828:6;34824:15;34817:33;34632:225;:::o;34863:366::-;35005:3;35026:67;35090:2;35085:3;35026:67;:::i;:::-;35019:74;;35102:93;35191:3;35102:93;:::i;:::-;35220:2;35215:3;35211:12;35204:19;;34863:366;;;:::o;35235:419::-;35401:4;35439:2;35428:9;35424:18;35416:26;;35488:9;35482:4;35478:20;35474:1;35463:9;35459:17;35452:47;35516:131;35642:4;35516:131;:::i;:::-;35508:139;;35235:419;;;:::o;35660:147::-;35761:11;35798:3;35783:18;;35660:147;;;;:::o;35813:114::-;;:::o;35933:398::-;36092:3;36113:83;36194:1;36189:3;36113:83;:::i;:::-;36106:90;;36205:93;36294:3;36205:93;:::i;:::-;36323:1;36318:3;36314:11;36307:18;;35933:398;;;:::o;36337:379::-;36521:3;36543:147;36686:3;36543:147;:::i;:::-;36536:154;;36707:3;36700:10;;36337:379;;;:::o;36722:442::-;36871:4;36909:2;36898:9;36894:18;36886:26;;36922:71;36990:1;36979:9;36975:17;36966:6;36922:71;:::i;:::-;37003:72;37071:2;37060:9;37056:18;37047:6;37003:72;:::i;:::-;37085;37153:2;37142:9;37138:18;37129:6;37085:72;:::i;:::-;36722:442;;;;;;:::o;37170:180::-;37218:77;37215:1;37208:88;37315:4;37312:1;37305:15;37339:4;37336:1;37329:15;37356:180;37404:77;37401:1;37394:88;37501:4;37498:1;37491:15;37525:4;37522:1;37515:15;37542:143;37599:5;37630:6;37624:13;37615:22;;37646:33;37673:5;37646:33;:::i;:::-;37542:143;;;;:::o;37691:351::-;37761:6;37810:2;37798:9;37789:7;37785:23;37781:32;37778:119;;;37816:79;;:::i;:::-;37778:119;37936:1;37961:64;38017:7;38008:6;37997:9;37993:22;37961:64;:::i;:::-;37951:74;;37907:128;37691:351;;;;:::o;38048:85::-;38093:7;38122:5;38111:16;;38048:85;;;:::o;38139:158::-;38197:9;38230:61;38248:42;38257:32;38283:5;38257:32;:::i;:::-;38248:42;:::i;:::-;38230:61;:::i;:::-;38217:74;;38139:158;;;:::o;38303:147::-;38398:45;38437:5;38398:45;:::i;:::-;38393:3;38386:58;38303:147;;:::o;38456:114::-;38523:6;38557:5;38551:12;38541:22;;38456:114;;;:::o;38576:184::-;38675:11;38709:6;38704:3;38697:19;38749:4;38744:3;38740:14;38725:29;;38576:184;;;;:::o;38766:132::-;38833:4;38856:3;38848:11;;38886:4;38881:3;38877:14;38869:22;;38766:132;;;:::o;38904:108::-;38981:24;38999:5;38981:24;:::i;:::-;38976:3;38969:37;38904:108;;:::o;39018:179::-;39087:10;39108:46;39150:3;39142:6;39108:46;:::i;:::-;39186:4;39181:3;39177:14;39163:28;;39018:179;;;;:::o;39203:113::-;39273:4;39305;39300:3;39296:14;39288:22;;39203:113;;;:::o;39352:732::-;39471:3;39500:54;39548:5;39500:54;:::i;:::-;39570:86;39649:6;39644:3;39570:86;:::i;:::-;39563:93;;39680:56;39730:5;39680:56;:::i;:::-;39759:7;39790:1;39775:284;39800:6;39797:1;39794:13;39775:284;;;39876:6;39870:13;39903:63;39962:3;39947:13;39903:63;:::i;:::-;39896:70;;39989:60;40042:6;39989:60;:::i;:::-;39979:70;;39835:224;39822:1;39819;39815:9;39810:14;;39775:284;;;39779:14;40075:3;40068:10;;39476:608;;;39352:732;;;;:::o;40090:831::-;40353:4;40391:3;40380:9;40376:19;40368:27;;40405:71;40473:1;40462:9;40458:17;40449:6;40405:71;:::i;:::-;40486:80;40562:2;40551:9;40547:18;40538:6;40486:80;:::i;:::-;40613:9;40607:4;40603:20;40598:2;40587:9;40583:18;40576:48;40641:108;40744:4;40735:6;40641:108;:::i;:::-;40633:116;;40759:72;40827:2;40816:9;40812:18;40803:6;40759:72;:::i;:::-;40841:73;40909:3;40898:9;40894:19;40885:6;40841:73;:::i;:::-;40090:831;;;;;;;;:::o;40927:807::-;41176:4;41214:3;41203:9;41199:19;41191:27;;41228:71;41296:1;41285:9;41281:17;41272:6;41228:71;:::i;:::-;41309:72;41377:2;41366:9;41362:18;41353:6;41309:72;:::i;:::-;41391:80;41467:2;41456:9;41452:18;41443:6;41391:80;:::i;:::-;41481;41557:2;41546:9;41542:18;41533:6;41481:80;:::i;:::-;41571:73;41639:3;41628:9;41624:19;41615:6;41571:73;:::i;:::-;41654;41722:3;41711:9;41707:19;41698:6;41654:73;:::i;:::-;40927:807;;;;;;;;;:::o;41740:663::-;41828:6;41836;41844;41893:2;41881:9;41872:7;41868:23;41864:32;41861:119;;;41899:79;;:::i;:::-;41861:119;42019:1;42044:64;42100:7;42091:6;42080:9;42076:22;42044:64;:::i;:::-;42034:74;;41990:128;42157:2;42183:64;42239:7;42230:6;42219:9;42215:22;42183:64;:::i;:::-;42173:74;;42128:129;42296:2;42322:64;42378:7;42369:6;42358:9;42354:22;42322:64;:::i;:::-;42312:74;;42267:129;41740:663;;;;;:::o

Swarm Source

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