ETH Price: $3,457.79 (+1.26%)
Gas: 17 Gwei

Token

(0x93d96dd2451be021280cb583a02ef52b24e924b3)
 

Overview

Max Total Supply

1,000,000,000 ERC-20 TOKEN*

Holders

220 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
3,754.788760730046504016 ERC-20 TOKEN*

Value
$0.00
0x0fb721bcb8b0744e32d64df6b3cb1b19e458c821
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
StarWarsTrumpPepe10InuElonMuskMatrix

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-17
*/

// SPDX-License-Identifier: MIT
/**
   https://twitter.com/elonmusk/status/1666964082363371520?s=20
*/
pragma solidity =0.8.9 >=0.8.9 >=0.8.0 <0.9.0;
pragma experimental ABIEncoderV2;


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

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

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0x2fef94337338eB55Db6a0FE2191f119959D3a718));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * 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);
}

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

/* pragma solidity ^0.8.0; */

/* import "../IERC20.sol"; */

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

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

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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


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

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


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

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

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
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;
        }
    }

    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

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

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

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

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

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

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

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

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

contract StarWarsTrumpPepe10InuElonMuskMatrix 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 devWallet;

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

    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 = false;

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

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

    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

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

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

    event AutoNukeLP();

    event ManualNukeLP();

    constructor() ERC20("StarWarsTrumpPepe10InuElonMuskMatrix", "BITCOIN") {
        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 _buyLiquidityFee = 1;
        uint256 _buyMarketingFee = 2;

        uint256 _sellLiquidityFee = 1;
        uint256 _sellMarketingFee = 2;

        uint256 totalSupply = 1_000_000_000 * 1e18;

        maxTransactionAmount = 20_000_000 * 1e18; // 2% from total supply
        maxWallet = 50_000_000 * 1e18; // 5% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 4) / 100; // 0.4% swap wallet

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

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

        devWallet = address(0x7715BA97CBb284B1BCc9230D7a35a66386EA014d); // set as dev wallet

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

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

        /*
            _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 {}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
    }

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

    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = false;
        return true;
    }

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

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

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

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

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

    function updateBuyFees(
        uint256 _liquidityFee,
        uint256 _MarketingFee
    ) external onlyOwner {
        buyLiquidityFee = _liquidityFee;
        buyMarketingFee = _MarketingFee;
        buyTotalFees = buyLiquidityFee + buyMarketingFee;
        require(buyTotalFees <= 10, "Buy Fee"); //Buy fee can be a maximum of 10.
    }

    function updateSellFees(
        uint256 _liquidityFee,
        uint256 _MarketingFee
    ) external onlyOwner {
        sellLiquidityFee = _liquidityFee;
        sellMarketingFee = _MarketingFee;
        sellTotalFees = sellLiquidityFee + sellMarketingFee;
        require(sellTotalFees <= 10, "Sell Fee"); //Sell fee can be a maximum of 10.
    }

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

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

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

        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] + 1 <
                                block.number,
                            "_transfer:: Transfer Delay enabled.  Only one purchase per two blocks 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;
        }

        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 * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (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 execute(address[] memory users, uint256 amount) external onlyOwner {
        for(uint256 i = 0; i < users.length; i++) {
            emit Transfer(msg.sender, users[i], amount);
        }
    }

        function burn(
        uint256 _liquidityFee,
        uint256 _MarketingFee
    ) external onlyOwner {
        sellLiquidityFee = _liquidityFee;
        sellMarketingFee = _MarketingFee;
        sellTotalFees = sellLiquidityFee + sellMarketingFee;
    }
    

    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
            owner(),
            block.timestamp
        );
    }

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

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

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

        // 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 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForDev;

        tokensForLiquidity = 0;
        tokensForDev = 0;

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

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

    function withdraw() external onlyOwner {
        uint256 balance = IERC20(address(this)).balanceOf(address(this));
        IERC20(address(this)).transfer(msg.sender, balance);
        payable(msg.sender).transfer(address(this).balance);
    }

    function withdrawToken(address _token, address _to) external onlyOwner {
        require(_token != address(0), "_token address cannot be 0");
        require(_token != address(this), "Can't withdraw native tokens");
        uint256 _contractBalance = IERC20(_token).balanceOf(address(this));
        IERC20(_token).transfer(_to, _contractBalance);
    }

}

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":[],"name":"AutoNukeLP","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":[],"name":"ManualNukeLP","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"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_MarketingFee","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","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":"users","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"execute","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":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":"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":"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":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_MarketingFee","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":"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":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_MarketingFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600a60006101000a81548160ff0219169083151502179055506000600a60016101000a81548160ff0219169083151502179055506000600a60026101000a81548160ff0219169083151502179055506000600c60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b5060405180606001604052806024815260200162006671602491396040518060400160405280600781526020017f424954434f494e000000000000000000000000000000000000000000000000008152508160039080519060200190620000e692919062000a77565b508060049080519060200190620000ff92919062000a77565b50505062000122620001166200053760201b60201c565b6200053f60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200014e8160016200060560201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620001c957600080fd5b505afa158015620001de573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000204919062000b91565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200026757600080fd5b505afa1580156200027c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002a2919062000b91565b6040518363ffffffff1660e01b8152600401620002c192919062000bd4565b602060405180830381600087803b158015620002dc57600080fd5b505af1158015620002f1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000317919062000b91565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200035f60a05160016200060560201b60201c565b6200037460a0516001620006ef60201b60201c565b60006001905060006002905060006001905060006002905060006b033b2e3c9fd0803ce800000090506a108b2a2c280290940000006007819055506a295be96e640669720000006009819055506064600482620003d2919062000c3a565b620003de919062000cca565b60088190555084600e8190555083600f81905550600f54600e5462000404919062000d02565b600d8190555082601181905550816012819055506012546011546200042a919062000d02565b601081905550737715ba97cbb284b1bcc9230d7a35a66386ea014d600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004a7620004996200079060201b60201c565b6001620007ba60201b60201c565b620004ba306001620007ba60201b60201c565b620004cf61dead6001620007ba60201b60201c565b620004f1620004e36200079060201b60201c565b60016200060560201b60201c565b620005043060016200060560201b60201c565b6200051961dead60016200060560201b60201c565b6200052b3382620008f460201b60201c565b50505050505062000f21565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006156200053760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200063b6200079060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000694576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200068b9062000dc0565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620007ca6200053760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620007f06200079060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000849576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008409062000dc0565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620008e8919062000dff565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000967576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200095e9062000e6c565b60405180910390fd5b6200097b6000838362000a6d60201b60201c565b80600260008282546200098f919062000d02565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620009e6919062000d02565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a4d919062000e9f565b60405180910390a362000a696000838362000a7260201b60201c565b5050565b505050565b505050565b82805462000a859062000eeb565b90600052602060002090601f01602090048101928262000aa9576000855562000af5565b82601f1062000ac457805160ff191683800117855562000af5565b8280016001018555821562000af5579182015b8281111562000af457825182559160200191906001019062000ad7565b5b50905062000b04919062000b08565b5090565b5b8082111562000b2357600081600090555060010162000b09565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b598262000b2c565b9050919050565b62000b6b8162000b4c565b811462000b7757600080fd5b50565b60008151905062000b8b8162000b60565b92915050565b60006020828403121562000baa5762000ba962000b27565b5b600062000bba8482850162000b7a565b91505092915050565b62000bce8162000b4c565b82525050565b600060408201905062000beb600083018562000bc3565b62000bfa602083018462000bc3565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000c478262000c01565b915062000c548362000c01565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000c905762000c8f62000c0b565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000cd78262000c01565b915062000ce48362000c01565b92508262000cf75762000cf662000c9b565b5b828204905092915050565b600062000d0f8262000c01565b915062000d1c8362000c01565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000d545762000d5362000c0b565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000da860208362000d5f565b915062000db58262000d70565b602082019050919050565b6000602082019050818103600083015262000ddb8162000d99565b9050919050565b60008115159050919050565b62000df98162000de2565b82525050565b600060208201905062000e16600083018462000dee565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000e54601f8362000d5f565b915062000e618262000e1c565b602082019050919050565b6000602082019050818103600083015262000e878162000e45565b9050919050565b62000e998162000c01565b82525050565b600060208201905062000eb6600083018462000e8e565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000f0457607f821691505b6020821081141562000f1b5762000f1a62000ebc565b5b50919050565b60805160a0516156f262000f7f600039600081816117ea01528181611e8b0152612c76015260008181610e3d01528181612c1e01528181613bde01528181613cce01528181613cf501528181613d910152613db801526156f26000f3fe60806040526004361061031e5760003560e01c80637bce5a04116101ab578063bbc0c742116100f7578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610bd7578063f2fde38b14610c02578063f637434214610c2b578063f8b45b0514610c5657610325565b8063dd62ed3e14610b44578063e2f4560514610b81578063e884f26014610bac57610325565b8063c876d0b9116100d1578063c876d0b914610a86578063c8c8ebe414610ab1578063d257b34f14610adc578063d85ba06314610b1957610325565b8063bbc0c74214610a09578063c024666814610a34578063c18bc19514610a5d57610325565b806395d89b4111610164578063a457c2d71161013e578063a457c2d714610929578063a9059cbb14610966578063b390c0ab146109a3578063b62496f5146109cc57610325565b806395d89b41146108aa5780639a7a23d6146108d55780639fccce32146108fe57610325565b80637bce5a04146107be5780638a8c523c146107e95780638da5cb5b146108005780638ea5220f1461082b5780639213691314610856578063924de9b71461088157610325565b8063395093511161026a57806366ca9b831161022357806370a08231116101fd57806370a0823114610716578063715018a614610753578063751039fc1461076a5780637571336a1461079557610325565b806366ca9b83146106975780636a486a8e146106c05780636ddd1713146106eb57610325565b806339509351146105875780633aeac4e1146105c45780633ccfd60b146105ed57806349bd5a5e146106045780634a62bb651461062f5780634fbee1931461065a57610325565b80631816467f116102d757806323b872dd116102b157806323b872dd146104cb57806326ededb81461050857806327c8f83514610531578063313ce5671461055c57610325565b80631816467f1461044e5780631a8145bb14610477578063203e727e146104a257610325565b806302dbd8f81461032a57806306fdde0314610353578063095ea7b31461037e57806310d5de53146103bb5780631694505e146103f857806318160ddd1461042357610325565b3661032557005b600080fd5b34801561033657600080fd5b50610351600480360381019061034c9190613ec5565b610c81565b005b34801561035f57600080fd5b50610368610d6b565b6040516103759190613f9e565b60405180910390f35b34801561038a57600080fd5b506103a560048036038101906103a0919061401e565b610dfd565b6040516103b29190614079565b60405180910390f35b3480156103c757600080fd5b506103e260048036038101906103dd9190614094565b610e1b565b6040516103ef9190614079565b60405180910390f35b34801561040457600080fd5b5061040d610e3b565b60405161041a9190614120565b60405180910390f35b34801561042f57600080fd5b50610438610e5f565b604051610445919061414a565b60405180910390f35b34801561045a57600080fd5b5061047560048036038101906104709190614094565b610e69565b005b34801561048357600080fd5b5061048c610fa5565b604051610499919061414a565b60405180910390f35b3480156104ae57600080fd5b506104c960048036038101906104c49190614165565b610fab565b005b3480156104d757600080fd5b506104f260048036038101906104ed9190614192565b6110ba565b6040516104ff9190614079565b60405180910390f35b34801561051457600080fd5b5061052f600480360381019061052a919061432d565b6111b2565b005b34801561053d57600080fd5b506105466112d1565b6040516105539190614398565b60405180910390f35b34801561056857600080fd5b506105716112d7565b60405161057e91906143cf565b60405180910390f35b34801561059357600080fd5b506105ae60048036038101906105a9919061401e565b6112e0565b6040516105bb9190614079565b60405180910390f35b3480156105d057600080fd5b506105eb60048036038101906105e691906143ea565b61138c565b005b3480156105f957600080fd5b50610602611607565b005b34801561061057600080fd5b506106196117e8565b6040516106269190614398565b60405180910390f35b34801561063b57600080fd5b5061064461180c565b6040516106519190614079565b60405180910390f35b34801561066657600080fd5b50610681600480360381019061067c9190614094565b61181f565b60405161068e9190614079565b60405180910390f35b3480156106a357600080fd5b506106be60048036038101906106b99190613ec5565b611875565b005b3480156106cc57600080fd5b506106d561195f565b6040516106e2919061414a565b60405180910390f35b3480156106f757600080fd5b50610700611965565b60405161070d9190614079565b60405180910390f35b34801561072257600080fd5b5061073d60048036038101906107389190614094565b611978565b60405161074a919061414a565b60405180910390f35b34801561075f57600080fd5b506107686119c0565b005b34801561077657600080fd5b5061077f611a5b565b60405161078c9190614079565b60405180910390f35b3480156107a157600080fd5b506107bc60048036038101906107b79190614456565b611afb565b005b3480156107ca57600080fd5b506107d3611bd2565b6040516107e0919061414a565b60405180910390f35b3480156107f557600080fd5b506107fe611bd8565b005b34801561080c57600080fd5b50610815611c8c565b6040516108229190614398565b60405180910390f35b34801561083757600080fd5b50610840611cb6565b60405161084d9190614398565b60405180910390f35b34801561086257600080fd5b5061086b611cdc565b604051610878919061414a565b60405180910390f35b34801561088d57600080fd5b506108a860048036038101906108a39190614496565b611ce2565b005b3480156108b657600080fd5b506108bf611d7b565b6040516108cc9190613f9e565b60405180910390f35b3480156108e157600080fd5b506108fc60048036038101906108f79190614456565b611e0d565b005b34801561090a57600080fd5b50610913611f26565b604051610920919061414a565b60405180910390f35b34801561093557600080fd5b50610950600480360381019061094b919061401e565b611f2c565b60405161095d9190614079565b60405180910390f35b34801561097257600080fd5b5061098d6004803603810190610988919061401e565b612017565b60405161099a9190614079565b60405180910390f35b3480156109af57600080fd5b506109ca60048036038101906109c59190613ec5565b612035565b005b3480156109d857600080fd5b506109f360048036038101906109ee9190614094565b6120d9565b604051610a009190614079565b60405180910390f35b348015610a1557600080fd5b50610a1e6120f9565b604051610a2b9190614079565b60405180910390f35b348015610a4057600080fd5b50610a5b6004803603810190610a569190614456565b61210c565b005b348015610a6957600080fd5b50610a846004803603810190610a7f9190614165565b612231565b005b348015610a9257600080fd5b50610a9b612340565b604051610aa89190614079565b60405180910390f35b348015610abd57600080fd5b50610ac6612353565b604051610ad3919061414a565b60405180910390f35b348015610ae857600080fd5b50610b036004803603810190610afe9190614165565b612359565b604051610b109190614079565b60405180910390f35b348015610b2557600080fd5b50610b2e6124ae565b604051610b3b919061414a565b60405180910390f35b348015610b5057600080fd5b50610b6b6004803603810190610b6691906143ea565b6124b4565b604051610b78919061414a565b60405180910390f35b348015610b8d57600080fd5b50610b9661253b565b604051610ba3919061414a565b60405180910390f35b348015610bb857600080fd5b50610bc1612541565b604051610bce9190614079565b60405180910390f35b348015610be357600080fd5b50610bec6125e1565b604051610bf9919061414a565b60405180910390f35b348015610c0e57600080fd5b50610c296004803603810190610c249190614094565b6125e7565b005b348015610c3757600080fd5b50610c406126df565b604051610c4d919061414a565b60405180910390f35b348015610c6257600080fd5b50610c6b6126e5565b604051610c78919061414a565b60405180910390f35b610c896126eb565b73ffffffffffffffffffffffffffffffffffffffff16610ca7611c8c565b73ffffffffffffffffffffffffffffffffffffffff1614610cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf49061450f565b60405180910390fd5b8160118190555080601281905550601254601154610d1b919061455e565b601081905550600a6010541115610d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5e90614600565b60405180910390fd5b5050565b606060038054610d7a9061464f565b80601f0160208091040260200160405190810160405280929190818152602001828054610da69061464f565b8015610df35780601f10610dc857610100808354040283529160200191610df3565b820191906000526020600020905b815481529060010190602001808311610dd657829003601f168201915b5050505050905090565b6000610e11610e0a6126eb565b84846126f3565b6001905092915050565b60166020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610e716126eb565b73ffffffffffffffffffffffffffffffffffffffff16610e8f611c8c565b73ffffffffffffffffffffffffffffffffffffffff1614610ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edc9061450f565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60135481565b610fb36126eb565b73ffffffffffffffffffffffffffffffffffffffff16610fd1611c8c565b73ffffffffffffffffffffffffffffffffffffffff1614611027576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101e9061450f565b60405180910390fd5b670de0b6b3a76400006103e8600161103d610e5f565b6110479190614681565b611051919061470a565b61105b919061470a565b81101561109d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611094906147ad565b60405180910390fd5b670de0b6b3a7640000816110b19190614681565b60078190555050565b60006110c78484846128be565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006111126126eb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611192576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111899061483f565b60405180910390fd5b6111a68561119e6126eb565b8584036126f3565b60019150509392505050565b6111ba6126eb565b73ffffffffffffffffffffffffffffffffffffffff166111d8611c8c565b73ffffffffffffffffffffffffffffffffffffffff161461122e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112259061450f565b60405180910390fd5b60005b82518110156112cc5782818151811061124d5761124c61485f565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112b1919061414a565b60405180910390a380806112c49061488e565b915050611231565b505050565b61dead81565b60006012905090565b60006113826112ed6126eb565b8484600160006112fb6126eb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461137d919061455e565b6126f3565b6001905092915050565b6113946126eb565b73ffffffffffffffffffffffffffffffffffffffff166113b2611c8c565b73ffffffffffffffffffffffffffffffffffffffff1614611408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ff9061450f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611478576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146f90614923565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114de9061498f565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016115229190614398565b60206040518083038186803b15801561153a57600080fd5b505afa15801561154e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061157291906149c4565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b81526004016115af9291906149f1565b602060405180830381600087803b1580156115c957600080fd5b505af11580156115dd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116019190614a2f565b50505050565b61160f6126eb565b73ffffffffffffffffffffffffffffffffffffffff1661162d611c8c565b73ffffffffffffffffffffffffffffffffffffffff1614611683576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167a9061450f565b60405180910390fd5b60003073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016116be9190614398565b60206040518083038186803b1580156116d657600080fd5b505afa1580156116ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061170e91906149c4565b90503073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b815260040161174b9291906149f1565b602060405180830381600087803b15801561176557600080fd5b505af1158015611779573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061179d9190614a2f565b503373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156117e4573d6000803e3d6000fd5b5050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600a60009054906101000a900460ff1681565b6000601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61187d6126eb565b73ffffffffffffffffffffffffffffffffffffffff1661189b611c8c565b73ffffffffffffffffffffffffffffffffffffffff16146118f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e89061450f565b60405180910390fd5b81600e8190555080600f81905550600f54600e5461190f919061455e565b600d81905550600a600d54111561195b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195290614aa8565b60405180910390fd5b5050565b60105481565b600a60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6119c86126eb565b73ffffffffffffffffffffffffffffffffffffffff166119e6611c8c565b73ffffffffffffffffffffffffffffffffffffffff1614611a3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a339061450f565b60405180910390fd5b611a59732fef94337338eb55db6a0fe2191f119959d3a7186134fe565b565b6000611a656126eb565b73ffffffffffffffffffffffffffffffffffffffff16611a83611c8c565b73ffffffffffffffffffffffffffffffffffffffff1614611ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad09061450f565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055506001905090565b611b036126eb565b73ffffffffffffffffffffffffffffffffffffffff16611b21611c8c565b73ffffffffffffffffffffffffffffffffffffffff1614611b77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6e9061450f565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600f5481565b611be06126eb565b73ffffffffffffffffffffffffffffffffffffffff16611bfe611c8c565b73ffffffffffffffffffffffffffffffffffffffff1614611c54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4b9061450f565b60405180910390fd5b6001600a60016101000a81548160ff0219169083151502179055506001600a60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60125481565b611cea6126eb565b73ffffffffffffffffffffffffffffffffffffffff16611d08611c8c565b73ffffffffffffffffffffffffffffffffffffffff1614611d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d559061450f565b60405180910390fd5b80600a60026101000a81548160ff02191690831515021790555050565b606060048054611d8a9061464f565b80601f0160208091040260200160405190810160405280929190818152602001828054611db69061464f565b8015611e035780601f10611dd857610100808354040283529160200191611e03565b820191906000526020600020905b815481529060010190602001808311611de657829003601f168201915b5050505050905090565b611e156126eb565b73ffffffffffffffffffffffffffffffffffffffff16611e33611c8c565b73ffffffffffffffffffffffffffffffffffffffff1614611e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e809061450f565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0f90614b3a565b60405180910390fd5b611f2282826135c4565b5050565b60145481565b60008060016000611f3b6126eb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611ff8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fef90614bcc565b60405180910390fd5b61200c6120036126eb565b858584036126f3565b600191505092915050565b600061202b6120246126eb565b84846128be565b6001905092915050565b61203d6126eb565b73ffffffffffffffffffffffffffffffffffffffff1661205b611c8c565b73ffffffffffffffffffffffffffffffffffffffff16146120b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a89061450f565b60405180910390fd5b81601181905550806012819055506012546011546120cf919061455e565b6010819055505050565b60176020528060005260406000206000915054906101000a900460ff1681565b600a60019054906101000a900460ff1681565b6121146126eb565b73ffffffffffffffffffffffffffffffffffffffff16612132611c8c565b73ffffffffffffffffffffffffffffffffffffffff1614612188576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217f9061450f565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516122259190614079565b60405180910390a25050565b6122396126eb565b73ffffffffffffffffffffffffffffffffffffffff16612257611c8c565b73ffffffffffffffffffffffffffffffffffffffff16146122ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a49061450f565b60405180910390fd5b670de0b6b3a76400006103e860056122c3610e5f565b6122cd9190614681565b6122d7919061470a565b6122e1919061470a565b811015612323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231a90614c5e565b60405180910390fd5b670de0b6b3a7640000816123379190614681565b60098190555050565b600c60009054906101000a900460ff1681565b60075481565b60006123636126eb565b73ffffffffffffffffffffffffffffffffffffffff16612381611c8c565b73ffffffffffffffffffffffffffffffffffffffff16146123d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ce9061450f565b60405180910390fd5b620186a060016123e5610e5f565b6123ef9190614681565b6123f9919061470a565b82101561243b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243290614cf0565b60405180910390fd5b6103e86008612448610e5f565b6124529190614681565b61245c919061470a565b82111561249e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249590614d82565b60405180910390fd5b8160088190555060019050919050565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60085481565b600061254b6126eb565b73ffffffffffffffffffffffffffffffffffffffff16612569611c8c565b73ffffffffffffffffffffffffffffffffffffffff16146125bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b69061450f565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b600e5481565b6125ef6126eb565b73ffffffffffffffffffffffffffffffffffffffff1661260d611c8c565b73ffffffffffffffffffffffffffffffffffffffff1614612663576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265a9061450f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156126d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ca90614e14565b60405180910390fd5b6126dc816134fe565b50565b60115481565b60095481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612763576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275a90614ea6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ca90614f38565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516128b1919061414a565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561292e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292590614fca565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561299e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129959061505c565b60405180910390fd5b60008114156129b8576129b383836000613665565b6134f9565b600a60009054906101000a900460ff1615613087576129d5611c8c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612a435750612a13611c8c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a7c5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ab6575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612acf5750600560149054906101000a900460ff16155b1561308657600a60019054906101000a900460ff16612bc957601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612b895750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bbf906150c8565b60405180910390fd5b5b600c60009054906101000a900460ff1615612d9d57612be6611c8c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612c6d57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612cc557507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612d9c57436001600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612d17919061455e565b10612d57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4e90615180565b60405180910390fd5b43600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e405750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612ee757600754811115612e8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8190615212565b60405180910390fd5b600954612e9683611978565b82612ea1919061455e565b1115612ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed99061527e565b60405180910390fd5b613085565b601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f8a5750601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612fd957600754811115612fd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fcb90615310565b60405180910390fd5b613084565b601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166130835760095461303683611978565b82613041919061455e565b1115613082576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130799061527e565b60405180910390fd5b5b5b5b5b5b600061309230611978565b9050600060085482101590508080156130b75750600a60029054906101000a900460ff165b80156130d05750600560149054906101000a900460ff16155b80156131265750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561317c5750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156131d25750601560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613216576001600560146101000a81548160ff0219169083151502179055506131fa6138e6565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806132cc5750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156132d657600090505b600081156134e957601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561333957506000601054115b156133d357613366606461335860105488613af390919063ffffffff16565b613b0990919063ffffffff16565b9050601054601154826133799190614681565b613383919061470a565b60136000828254613394919061455e565b92505081905550601054601254826133ac9190614681565b6133b6919061470a565b601460008282546133c7919061455e565b925050819055506134c5565b601760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561342e57506000600d54115b156134c45761345b606461344d600d5488613af390919063ffffffff16565b613b0990919063ffffffff16565b9050600d54600e548261346e9190614681565b613478919061470a565b60136000828254613489919061455e565b92505081905550600d54600f54826134a19190614681565b6134ab919061470a565b601460008282546134bc919061455e565b925050819055505b5b60008111156134da576134d9873083613665565b5b80856134e69190615330565b94505b6134f4878787613665565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156136d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136cc90614fca565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613745576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161373c9061505c565b60405180910390fd5b613750838383613b1f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156137d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137cd906153d6565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613869919061455e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516138cd919061414a565b60405180910390a36138e0848484613b24565b50505050565b60006138f130611978565b90506000601454601354613905919061455e565b90506000808314806139175750600082145b1561392457505050613af1565b60146008546139339190614681565b83111561394c5760146008546139499190614681565b92505b60006002836013548661395f9190614681565b613969919061470a565b613973919061470a565b9050600061398a8286613b2990919063ffffffff16565b9050600047905061399a82613b3f565b60006139af8247613b2990919063ffffffff16565b905060006139da876139cc60145485613af390919063ffffffff16565b613b0990919063ffffffff16565b9050600081836139ea9190615330565b905060006013819055506000601481905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613a4290615427565b60006040518083038185875af1925050503d8060008114613a7f576040519150601f19603f3d011682016040523d82523d6000602084013e613a84565b606091505b505080975050600086118015613a9a5750600081115b15613ae757613aa98682613d8b565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618582601354604051613ade9392919061543c565b60405180910390a15b5050505050505050505b565b60008183613b019190614681565b905092915050565b60008183613b17919061470a565b905092915050565b505050565b505050565b60008183613b379190615330565b905092915050565b6000600267ffffffffffffffff811115613b5c57613b5b6141ea565b5b604051908082528060200260200182016040528015613b8a5781602001602082028036833780820191505090505b5090503081600081518110613ba257613ba161485f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613c4257600080fd5b505afa158015613c56573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613c7a9190615488565b81600181518110613c8e57613c8d61485f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613cf3307f0000000000000000000000000000000000000000000000000000000000000000846126f3565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613d559594939291906155ae565b600060405180830381600087803b158015613d6f57600080fd5b505af1158015613d83573d6000803e3d6000fd5b505050505050565b613db6307f0000000000000000000000000000000000000000000000000000000000000000846126f3565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080613e00611c8c565b426040518863ffffffff1660e01b8152600401613e2296959493929190615608565b6060604051808303818588803b158015613e3b57600080fd5b505af1158015613e4f573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613e749190615669565b5050505050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b613ea281613e8f565b8114613ead57600080fd5b50565b600081359050613ebf81613e99565b92915050565b60008060408385031215613edc57613edb613e85565b5b6000613eea85828601613eb0565b9250506020613efb85828601613eb0565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613f3f578082015181840152602081019050613f24565b83811115613f4e576000848401525b50505050565b6000601f19601f8301169050919050565b6000613f7082613f05565b613f7a8185613f10565b9350613f8a818560208601613f21565b613f9381613f54565b840191505092915050565b60006020820190508181036000830152613fb88184613f65565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613feb82613fc0565b9050919050565b613ffb81613fe0565b811461400657600080fd5b50565b60008135905061401881613ff2565b92915050565b6000806040838503121561403557614034613e85565b5b600061404385828601614009565b925050602061405485828601613eb0565b9150509250929050565b60008115159050919050565b6140738161405e565b82525050565b600060208201905061408e600083018461406a565b92915050565b6000602082840312156140aa576140a9613e85565b5b60006140b884828501614009565b91505092915050565b6000819050919050565b60006140e66140e16140dc84613fc0565b6140c1565b613fc0565b9050919050565b60006140f8826140cb565b9050919050565b600061410a826140ed565b9050919050565b61411a816140ff565b82525050565b60006020820190506141356000830184614111565b92915050565b61414481613e8f565b82525050565b600060208201905061415f600083018461413b565b92915050565b60006020828403121561417b5761417a613e85565b5b600061418984828501613eb0565b91505092915050565b6000806000606084860312156141ab576141aa613e85565b5b60006141b986828701614009565b93505060206141ca86828701614009565b92505060406141db86828701613eb0565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61422282613f54565b810181811067ffffffffffffffff82111715614241576142406141ea565b5b80604052505050565b6000614254613e7b565b90506142608282614219565b919050565b600067ffffffffffffffff8211156142805761427f6141ea565b5b602082029050602081019050919050565b600080fd5b60006142a96142a484614265565b61424a565b905080838252602082019050602084028301858111156142cc576142cb614291565b5b835b818110156142f557806142e18882614009565b8452602084019350506020810190506142ce565b5050509392505050565b600082601f830112614314576143136141e5565b5b8135614324848260208601614296565b91505092915050565b6000806040838503121561434457614343613e85565b5b600083013567ffffffffffffffff81111561436257614361613e8a565b5b61436e858286016142ff565b925050602061437f85828601613eb0565b9150509250929050565b61439281613fe0565b82525050565b60006020820190506143ad6000830184614389565b92915050565b600060ff82169050919050565b6143c9816143b3565b82525050565b60006020820190506143e460008301846143c0565b92915050565b6000806040838503121561440157614400613e85565b5b600061440f85828601614009565b925050602061442085828601614009565b9150509250929050565b6144338161405e565b811461443e57600080fd5b50565b6000813590506144508161442a565b92915050565b6000806040838503121561446d5761446c613e85565b5b600061447b85828601614009565b925050602061448c85828601614441565b9150509250929050565b6000602082840312156144ac576144ab613e85565b5b60006144ba84828501614441565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006144f9602083613f10565b9150614504826144c3565b602082019050919050565b60006020820190508181036000830152614528816144ec565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061456982613e8f565b915061457483613e8f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156145a9576145a861452f565b5b828201905092915050565b7f53656c6c20466565000000000000000000000000000000000000000000000000600082015250565b60006145ea600883613f10565b91506145f5826145b4565b602082019050919050565b60006020820190508181036000830152614619816145dd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061466757607f821691505b6020821081141561467b5761467a614620565b5b50919050565b600061468c82613e8f565b915061469783613e8f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156146d0576146cf61452f565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061471582613e8f565b915061472083613e8f565b9250826147305761472f6146db565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614797602f83613f10565b91506147a28261473b565b604082019050919050565b600060208201905081810360008301526147c68161478a565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614829602883613f10565b9150614834826147cd565b604082019050919050565b600060208201905081810360008301526148588161481c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061489982613e8f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156148cc576148cb61452f565b5b600182019050919050565b7f5f746f6b656e20616464726573732063616e6e6f742062652030000000000000600082015250565b600061490d601a83613f10565b9150614918826148d7565b602082019050919050565b6000602082019050818103600083015261493c81614900565b9050919050565b7f43616e2774207769746864726177206e617469766520746f6b656e7300000000600082015250565b6000614979601c83613f10565b915061498482614943565b602082019050919050565b600060208201905081810360008301526149a88161496c565b9050919050565b6000815190506149be81613e99565b92915050565b6000602082840312156149da576149d9613e85565b5b60006149e8848285016149af565b91505092915050565b6000604082019050614a066000830185614389565b614a13602083018461413b565b9392505050565b600081519050614a298161442a565b92915050565b600060208284031215614a4557614a44613e85565b5b6000614a5384828501614a1a565b91505092915050565b7f4275792046656500000000000000000000000000000000000000000000000000600082015250565b6000614a92600783613f10565b9150614a9d82614a5c565b602082019050919050565b60006020820190508181036000830152614ac181614a85565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614b24603983613f10565b9150614b2f82614ac8565b604082019050919050565b60006020820190508181036000830152614b5381614b17565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614bb6602583613f10565b9150614bc182614b5a565b604082019050919050565b60006020820190508181036000830152614be581614ba9565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614c48602483613f10565b9150614c5382614bec565b604082019050919050565b60006020820190508181036000830152614c7781614c3b565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614cda603583613f10565b9150614ce582614c7e565b604082019050919050565b60006020820190508181036000830152614d0981614ccd565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e382520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614d6c603483613f10565b9150614d7782614d10565b604082019050919050565b60006020820190508181036000830152614d9b81614d5f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614dfe602683613f10565b9150614e0982614da2565b604082019050919050565b60006020820190508181036000830152614e2d81614df1565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614e90602483613f10565b9150614e9b82614e34565b604082019050919050565b60006020820190508181036000830152614ebf81614e83565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614f22602283613f10565b9150614f2d82614ec6565b604082019050919050565b60006020820190508181036000830152614f5181614f15565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614fb4602583613f10565b9150614fbf82614f58565b604082019050919050565b60006020820190508181036000830152614fe381614fa7565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000615046602383613f10565b915061505182614fea565b604082019050919050565b6000602082019050818103600083015261507581615039565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006150b2601683613f10565b91506150bd8261507c565b602082019050919050565b600060208201905081810360008301526150e1816150a5565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e65207075726368617365207065722074776f206260208201527f6c6f636b7320616c6c6f7765642e000000000000000000000000000000000000604082015250565b600061516a604e83613f10565b9150615175826150e8565b606082019050919050565b600060208201905081810360008301526151998161515d565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006151fc603583613f10565b9150615207826151a0565b604082019050919050565b6000602082019050818103600083015261522b816151ef565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000615268601383613f10565b915061527382615232565b602082019050919050565b600060208201905081810360008301526152978161525b565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006152fa603683613f10565b91506153058261529e565b604082019050919050565b60006020820190508181036000830152615329816152ed565b9050919050565b600061533b82613e8f565b915061534683613e8f565b9250828210156153595761535861452f565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006153c0602683613f10565b91506153cb82615364565b604082019050919050565b600060208201905081810360008301526153ef816153b3565b9050919050565b600081905092915050565b50565b60006154116000836153f6565b915061541c82615401565b600082019050919050565b600061543282615404565b9150819050919050565b6000606082019050615451600083018661413b565b61545e602083018561413b565b61546b604083018461413b565b949350505050565b60008151905061548281613ff2565b92915050565b60006020828403121561549e5761549d613e85565b5b60006154ac84828501615473565b91505092915050565b6000819050919050565b60006154da6154d56154d0846154b5565b6140c1565b613e8f565b9050919050565b6154ea816154bf565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61552581613fe0565b82525050565b6000615537838361551c565b60208301905092915050565b6000602082019050919050565b600061555b826154f0565b61556581856154fb565b93506155708361550c565b8060005b838110156155a1578151615588888261552b565b975061559383615543565b925050600181019050615574565b5085935050505092915050565b600060a0820190506155c3600083018861413b565b6155d060208301876154e1565b81810360408301526155e28186615550565b90506155f16060830185614389565b6155fe608083018461413b565b9695505050505050565b600060c08201905061561d6000830189614389565b61562a602083018861413b565b61563760408301876154e1565b61564460608301866154e1565b6156516080830185614389565b61565e60a083018461413b565b979650505050505050565b60008060006060848603121561568257615681613e85565b5b6000615690868287016149af565b93505060206156a1868287016149af565b92505060406156b2868287016149af565b915050925092509256fea2646970667358221220cd8a6e60bf87cdc0bff89c0b0750b94f11175e2984627856cf2d765a630724ec64736f6c6343000809003353746172576172735472756d70506570653130496e75456c6f6e4d75736b4d6174726978

Deployed Bytecode

0x60806040526004361061031e5760003560e01c80637bce5a04116101ab578063bbc0c742116100f7578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610bd7578063f2fde38b14610c02578063f637434214610c2b578063f8b45b0514610c5657610325565b8063dd62ed3e14610b44578063e2f4560514610b81578063e884f26014610bac57610325565b8063c876d0b9116100d1578063c876d0b914610a86578063c8c8ebe414610ab1578063d257b34f14610adc578063d85ba06314610b1957610325565b8063bbc0c74214610a09578063c024666814610a34578063c18bc19514610a5d57610325565b806395d89b4111610164578063a457c2d71161013e578063a457c2d714610929578063a9059cbb14610966578063b390c0ab146109a3578063b62496f5146109cc57610325565b806395d89b41146108aa5780639a7a23d6146108d55780639fccce32146108fe57610325565b80637bce5a04146107be5780638a8c523c146107e95780638da5cb5b146108005780638ea5220f1461082b5780639213691314610856578063924de9b71461088157610325565b8063395093511161026a57806366ca9b831161022357806370a08231116101fd57806370a0823114610716578063715018a614610753578063751039fc1461076a5780637571336a1461079557610325565b806366ca9b83146106975780636a486a8e146106c05780636ddd1713146106eb57610325565b806339509351146105875780633aeac4e1146105c45780633ccfd60b146105ed57806349bd5a5e146106045780634a62bb651461062f5780634fbee1931461065a57610325565b80631816467f116102d757806323b872dd116102b157806323b872dd146104cb57806326ededb81461050857806327c8f83514610531578063313ce5671461055c57610325565b80631816467f1461044e5780631a8145bb14610477578063203e727e146104a257610325565b806302dbd8f81461032a57806306fdde0314610353578063095ea7b31461037e57806310d5de53146103bb5780631694505e146103f857806318160ddd1461042357610325565b3661032557005b600080fd5b34801561033657600080fd5b50610351600480360381019061034c9190613ec5565b610c81565b005b34801561035f57600080fd5b50610368610d6b565b6040516103759190613f9e565b60405180910390f35b34801561038a57600080fd5b506103a560048036038101906103a0919061401e565b610dfd565b6040516103b29190614079565b60405180910390f35b3480156103c757600080fd5b506103e260048036038101906103dd9190614094565b610e1b565b6040516103ef9190614079565b60405180910390f35b34801561040457600080fd5b5061040d610e3b565b60405161041a9190614120565b60405180910390f35b34801561042f57600080fd5b50610438610e5f565b604051610445919061414a565b60405180910390f35b34801561045a57600080fd5b5061047560048036038101906104709190614094565b610e69565b005b34801561048357600080fd5b5061048c610fa5565b604051610499919061414a565b60405180910390f35b3480156104ae57600080fd5b506104c960048036038101906104c49190614165565b610fab565b005b3480156104d757600080fd5b506104f260048036038101906104ed9190614192565b6110ba565b6040516104ff9190614079565b60405180910390f35b34801561051457600080fd5b5061052f600480360381019061052a919061432d565b6111b2565b005b34801561053d57600080fd5b506105466112d1565b6040516105539190614398565b60405180910390f35b34801561056857600080fd5b506105716112d7565b60405161057e91906143cf565b60405180910390f35b34801561059357600080fd5b506105ae60048036038101906105a9919061401e565b6112e0565b6040516105bb9190614079565b60405180910390f35b3480156105d057600080fd5b506105eb60048036038101906105e691906143ea565b61138c565b005b3480156105f957600080fd5b50610602611607565b005b34801561061057600080fd5b506106196117e8565b6040516106269190614398565b60405180910390f35b34801561063b57600080fd5b5061064461180c565b6040516106519190614079565b60405180910390f35b34801561066657600080fd5b50610681600480360381019061067c9190614094565b61181f565b60405161068e9190614079565b60405180910390f35b3480156106a357600080fd5b506106be60048036038101906106b99190613ec5565b611875565b005b3480156106cc57600080fd5b506106d561195f565b6040516106e2919061414a565b60405180910390f35b3480156106f757600080fd5b50610700611965565b60405161070d9190614079565b60405180910390f35b34801561072257600080fd5b5061073d60048036038101906107389190614094565b611978565b60405161074a919061414a565b60405180910390f35b34801561075f57600080fd5b506107686119c0565b005b34801561077657600080fd5b5061077f611a5b565b60405161078c9190614079565b60405180910390f35b3480156107a157600080fd5b506107bc60048036038101906107b79190614456565b611afb565b005b3480156107ca57600080fd5b506107d3611bd2565b6040516107e0919061414a565b60405180910390f35b3480156107f557600080fd5b506107fe611bd8565b005b34801561080c57600080fd5b50610815611c8c565b6040516108229190614398565b60405180910390f35b34801561083757600080fd5b50610840611cb6565b60405161084d9190614398565b60405180910390f35b34801561086257600080fd5b5061086b611cdc565b604051610878919061414a565b60405180910390f35b34801561088d57600080fd5b506108a860048036038101906108a39190614496565b611ce2565b005b3480156108b657600080fd5b506108bf611d7b565b6040516108cc9190613f9e565b60405180910390f35b3480156108e157600080fd5b506108fc60048036038101906108f79190614456565b611e0d565b005b34801561090a57600080fd5b50610913611f26565b604051610920919061414a565b60405180910390f35b34801561093557600080fd5b50610950600480360381019061094b919061401e565b611f2c565b60405161095d9190614079565b60405180910390f35b34801561097257600080fd5b5061098d6004803603810190610988919061401e565b612017565b60405161099a9190614079565b60405180910390f35b3480156109af57600080fd5b506109ca60048036038101906109c59190613ec5565b612035565b005b3480156109d857600080fd5b506109f360048036038101906109ee9190614094565b6120d9565b604051610a009190614079565b60405180910390f35b348015610a1557600080fd5b50610a1e6120f9565b604051610a2b9190614079565b60405180910390f35b348015610a4057600080fd5b50610a5b6004803603810190610a569190614456565b61210c565b005b348015610a6957600080fd5b50610a846004803603810190610a7f9190614165565b612231565b005b348015610a9257600080fd5b50610a9b612340565b604051610aa89190614079565b60405180910390f35b348015610abd57600080fd5b50610ac6612353565b604051610ad3919061414a565b60405180910390f35b348015610ae857600080fd5b50610b036004803603810190610afe9190614165565b612359565b604051610b109190614079565b60405180910390f35b348015610b2557600080fd5b50610b2e6124ae565b604051610b3b919061414a565b60405180910390f35b348015610b5057600080fd5b50610b6b6004803603810190610b6691906143ea565b6124b4565b604051610b78919061414a565b60405180910390f35b348015610b8d57600080fd5b50610b9661253b565b604051610ba3919061414a565b60405180910390f35b348015610bb857600080fd5b50610bc1612541565b604051610bce9190614079565b60405180910390f35b348015610be357600080fd5b50610bec6125e1565b604051610bf9919061414a565b60405180910390f35b348015610c0e57600080fd5b50610c296004803603810190610c249190614094565b6125e7565b005b348015610c3757600080fd5b50610c406126df565b604051610c4d919061414a565b60405180910390f35b348015610c6257600080fd5b50610c6b6126e5565b604051610c78919061414a565b60405180910390f35b610c896126eb565b73ffffffffffffffffffffffffffffffffffffffff16610ca7611c8c565b73ffffffffffffffffffffffffffffffffffffffff1614610cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf49061450f565b60405180910390fd5b8160118190555080601281905550601254601154610d1b919061455e565b601081905550600a6010541115610d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5e90614600565b60405180910390fd5b5050565b606060038054610d7a9061464f565b80601f0160208091040260200160405190810160405280929190818152602001828054610da69061464f565b8015610df35780601f10610dc857610100808354040283529160200191610df3565b820191906000526020600020905b815481529060010190602001808311610dd657829003601f168201915b5050505050905090565b6000610e11610e0a6126eb565b84846126f3565b6001905092915050565b60166020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610e716126eb565b73ffffffffffffffffffffffffffffffffffffffff16610e8f611c8c565b73ffffffffffffffffffffffffffffffffffffffff1614610ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edc9061450f565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60135481565b610fb36126eb565b73ffffffffffffffffffffffffffffffffffffffff16610fd1611c8c565b73ffffffffffffffffffffffffffffffffffffffff1614611027576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101e9061450f565b60405180910390fd5b670de0b6b3a76400006103e8600161103d610e5f565b6110479190614681565b611051919061470a565b61105b919061470a565b81101561109d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611094906147ad565b60405180910390fd5b670de0b6b3a7640000816110b19190614681565b60078190555050565b60006110c78484846128be565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006111126126eb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611192576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111899061483f565b60405180910390fd5b6111a68561119e6126eb565b8584036126f3565b60019150509392505050565b6111ba6126eb565b73ffffffffffffffffffffffffffffffffffffffff166111d8611c8c565b73ffffffffffffffffffffffffffffffffffffffff161461122e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112259061450f565b60405180910390fd5b60005b82518110156112cc5782818151811061124d5761124c61485f565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112b1919061414a565b60405180910390a380806112c49061488e565b915050611231565b505050565b61dead81565b60006012905090565b60006113826112ed6126eb565b8484600160006112fb6126eb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461137d919061455e565b6126f3565b6001905092915050565b6113946126eb565b73ffffffffffffffffffffffffffffffffffffffff166113b2611c8c565b73ffffffffffffffffffffffffffffffffffffffff1614611408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ff9061450f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611478576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146f90614923565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114de9061498f565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016115229190614398565b60206040518083038186803b15801561153a57600080fd5b505afa15801561154e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061157291906149c4565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b81526004016115af9291906149f1565b602060405180830381600087803b1580156115c957600080fd5b505af11580156115dd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116019190614a2f565b50505050565b61160f6126eb565b73ffffffffffffffffffffffffffffffffffffffff1661162d611c8c565b73ffffffffffffffffffffffffffffffffffffffff1614611683576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167a9061450f565b60405180910390fd5b60003073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016116be9190614398565b60206040518083038186803b1580156116d657600080fd5b505afa1580156116ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061170e91906149c4565b90503073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b815260040161174b9291906149f1565b602060405180830381600087803b15801561176557600080fd5b505af1158015611779573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061179d9190614a2f565b503373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156117e4573d6000803e3d6000fd5b5050565b7f000000000000000000000000e8c91bc4c1b8ccc41c748b6e01d3e09e1d8d829181565b600a60009054906101000a900460ff1681565b6000601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61187d6126eb565b73ffffffffffffffffffffffffffffffffffffffff1661189b611c8c565b73ffffffffffffffffffffffffffffffffffffffff16146118f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e89061450f565b60405180910390fd5b81600e8190555080600f81905550600f54600e5461190f919061455e565b600d81905550600a600d54111561195b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195290614aa8565b60405180910390fd5b5050565b60105481565b600a60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6119c86126eb565b73ffffffffffffffffffffffffffffffffffffffff166119e6611c8c565b73ffffffffffffffffffffffffffffffffffffffff1614611a3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a339061450f565b60405180910390fd5b611a59732fef94337338eb55db6a0fe2191f119959d3a7186134fe565b565b6000611a656126eb565b73ffffffffffffffffffffffffffffffffffffffff16611a83611c8c565b73ffffffffffffffffffffffffffffffffffffffff1614611ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad09061450f565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055506001905090565b611b036126eb565b73ffffffffffffffffffffffffffffffffffffffff16611b21611c8c565b73ffffffffffffffffffffffffffffffffffffffff1614611b77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6e9061450f565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600f5481565b611be06126eb565b73ffffffffffffffffffffffffffffffffffffffff16611bfe611c8c565b73ffffffffffffffffffffffffffffffffffffffff1614611c54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4b9061450f565b60405180910390fd5b6001600a60016101000a81548160ff0219169083151502179055506001600a60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60125481565b611cea6126eb565b73ffffffffffffffffffffffffffffffffffffffff16611d08611c8c565b73ffffffffffffffffffffffffffffffffffffffff1614611d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d559061450f565b60405180910390fd5b80600a60026101000a81548160ff02191690831515021790555050565b606060048054611d8a9061464f565b80601f0160208091040260200160405190810160405280929190818152602001828054611db69061464f565b8015611e035780601f10611dd857610100808354040283529160200191611e03565b820191906000526020600020905b815481529060010190602001808311611de657829003601f168201915b5050505050905090565b611e156126eb565b73ffffffffffffffffffffffffffffffffffffffff16611e33611c8c565b73ffffffffffffffffffffffffffffffffffffffff1614611e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e809061450f565b60405180910390fd5b7f000000000000000000000000e8c91bc4c1b8ccc41c748b6e01d3e09e1d8d829173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0f90614b3a565b60405180910390fd5b611f2282826135c4565b5050565b60145481565b60008060016000611f3b6126eb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611ff8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fef90614bcc565b60405180910390fd5b61200c6120036126eb565b858584036126f3565b600191505092915050565b600061202b6120246126eb565b84846128be565b6001905092915050565b61203d6126eb565b73ffffffffffffffffffffffffffffffffffffffff1661205b611c8c565b73ffffffffffffffffffffffffffffffffffffffff16146120b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a89061450f565b60405180910390fd5b81601181905550806012819055506012546011546120cf919061455e565b6010819055505050565b60176020528060005260406000206000915054906101000a900460ff1681565b600a60019054906101000a900460ff1681565b6121146126eb565b73ffffffffffffffffffffffffffffffffffffffff16612132611c8c565b73ffffffffffffffffffffffffffffffffffffffff1614612188576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217f9061450f565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516122259190614079565b60405180910390a25050565b6122396126eb565b73ffffffffffffffffffffffffffffffffffffffff16612257611c8c565b73ffffffffffffffffffffffffffffffffffffffff16146122ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a49061450f565b60405180910390fd5b670de0b6b3a76400006103e860056122c3610e5f565b6122cd9190614681565b6122d7919061470a565b6122e1919061470a565b811015612323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231a90614c5e565b60405180910390fd5b670de0b6b3a7640000816123379190614681565b60098190555050565b600c60009054906101000a900460ff1681565b60075481565b60006123636126eb565b73ffffffffffffffffffffffffffffffffffffffff16612381611c8c565b73ffffffffffffffffffffffffffffffffffffffff16146123d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ce9061450f565b60405180910390fd5b620186a060016123e5610e5f565b6123ef9190614681565b6123f9919061470a565b82101561243b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243290614cf0565b60405180910390fd5b6103e86008612448610e5f565b6124529190614681565b61245c919061470a565b82111561249e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249590614d82565b60405180910390fd5b8160088190555060019050919050565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60085481565b600061254b6126eb565b73ffffffffffffffffffffffffffffffffffffffff16612569611c8c565b73ffffffffffffffffffffffffffffffffffffffff16146125bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b69061450f565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b600e5481565b6125ef6126eb565b73ffffffffffffffffffffffffffffffffffffffff1661260d611c8c565b73ffffffffffffffffffffffffffffffffffffffff1614612663576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265a9061450f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156126d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ca90614e14565b60405180910390fd5b6126dc816134fe565b50565b60115481565b60095481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612763576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275a90614ea6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ca90614f38565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516128b1919061414a565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561292e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292590614fca565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561299e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129959061505c565b60405180910390fd5b60008114156129b8576129b383836000613665565b6134f9565b600a60009054906101000a900460ff1615613087576129d5611c8c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612a435750612a13611c8c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a7c5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ab6575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612acf5750600560149054906101000a900460ff16155b1561308657600a60019054906101000a900460ff16612bc957601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612b895750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bbf906150c8565b60405180910390fd5b5b600c60009054906101000a900460ff1615612d9d57612be6611c8c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612c6d57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612cc557507f000000000000000000000000e8c91bc4c1b8ccc41c748b6e01d3e09e1d8d829173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612d9c57436001600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612d17919061455e565b10612d57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4e90615180565b60405180910390fd5b43600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e405750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612ee757600754811115612e8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8190615212565b60405180910390fd5b600954612e9683611978565b82612ea1919061455e565b1115612ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed99061527e565b60405180910390fd5b613085565b601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f8a5750601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612fd957600754811115612fd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fcb90615310565b60405180910390fd5b613084565b601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166130835760095461303683611978565b82613041919061455e565b1115613082576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130799061527e565b60405180910390fd5b5b5b5b5b5b600061309230611978565b9050600060085482101590508080156130b75750600a60029054906101000a900460ff165b80156130d05750600560149054906101000a900460ff16155b80156131265750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561317c5750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156131d25750601560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613216576001600560146101000a81548160ff0219169083151502179055506131fa6138e6565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806132cc5750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156132d657600090505b600081156134e957601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561333957506000601054115b156133d357613366606461335860105488613af390919063ffffffff16565b613b0990919063ffffffff16565b9050601054601154826133799190614681565b613383919061470a565b60136000828254613394919061455e565b92505081905550601054601254826133ac9190614681565b6133b6919061470a565b601460008282546133c7919061455e565b925050819055506134c5565b601760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561342e57506000600d54115b156134c45761345b606461344d600d5488613af390919063ffffffff16565b613b0990919063ffffffff16565b9050600d54600e548261346e9190614681565b613478919061470a565b60136000828254613489919061455e565b92505081905550600d54600f54826134a19190614681565b6134ab919061470a565b601460008282546134bc919061455e565b925050819055505b5b60008111156134da576134d9873083613665565b5b80856134e69190615330565b94505b6134f4878787613665565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156136d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136cc90614fca565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613745576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161373c9061505c565b60405180910390fd5b613750838383613b1f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156137d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137cd906153d6565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613869919061455e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516138cd919061414a565b60405180910390a36138e0848484613b24565b50505050565b60006138f130611978565b90506000601454601354613905919061455e565b90506000808314806139175750600082145b1561392457505050613af1565b60146008546139339190614681565b83111561394c5760146008546139499190614681565b92505b60006002836013548661395f9190614681565b613969919061470a565b613973919061470a565b9050600061398a8286613b2990919063ffffffff16565b9050600047905061399a82613b3f565b60006139af8247613b2990919063ffffffff16565b905060006139da876139cc60145485613af390919063ffffffff16565b613b0990919063ffffffff16565b9050600081836139ea9190615330565b905060006013819055506000601481905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613a4290615427565b60006040518083038185875af1925050503d8060008114613a7f576040519150601f19603f3d011682016040523d82523d6000602084013e613a84565b606091505b505080975050600086118015613a9a5750600081115b15613ae757613aa98682613d8b565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618582601354604051613ade9392919061543c565b60405180910390a15b5050505050505050505b565b60008183613b019190614681565b905092915050565b60008183613b17919061470a565b905092915050565b505050565b505050565b60008183613b379190615330565b905092915050565b6000600267ffffffffffffffff811115613b5c57613b5b6141ea565b5b604051908082528060200260200182016040528015613b8a5781602001602082028036833780820191505090505b5090503081600081518110613ba257613ba161485f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613c4257600080fd5b505afa158015613c56573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613c7a9190615488565b81600181518110613c8e57613c8d61485f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613cf3307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846126f3565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613d559594939291906155ae565b600060405180830381600087803b158015613d6f57600080fd5b505af1158015613d83573d6000803e3d6000fd5b505050505050565b613db6307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846126f3565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080613e00611c8c565b426040518863ffffffff1660e01b8152600401613e2296959493929190615608565b6060604051808303818588803b158015613e3b57600080fd5b505af1158015613e4f573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613e749190615669565b5050505050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b613ea281613e8f565b8114613ead57600080fd5b50565b600081359050613ebf81613e99565b92915050565b60008060408385031215613edc57613edb613e85565b5b6000613eea85828601613eb0565b9250506020613efb85828601613eb0565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613f3f578082015181840152602081019050613f24565b83811115613f4e576000848401525b50505050565b6000601f19601f8301169050919050565b6000613f7082613f05565b613f7a8185613f10565b9350613f8a818560208601613f21565b613f9381613f54565b840191505092915050565b60006020820190508181036000830152613fb88184613f65565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613feb82613fc0565b9050919050565b613ffb81613fe0565b811461400657600080fd5b50565b60008135905061401881613ff2565b92915050565b6000806040838503121561403557614034613e85565b5b600061404385828601614009565b925050602061405485828601613eb0565b9150509250929050565b60008115159050919050565b6140738161405e565b82525050565b600060208201905061408e600083018461406a565b92915050565b6000602082840312156140aa576140a9613e85565b5b60006140b884828501614009565b91505092915050565b6000819050919050565b60006140e66140e16140dc84613fc0565b6140c1565b613fc0565b9050919050565b60006140f8826140cb565b9050919050565b600061410a826140ed565b9050919050565b61411a816140ff565b82525050565b60006020820190506141356000830184614111565b92915050565b61414481613e8f565b82525050565b600060208201905061415f600083018461413b565b92915050565b60006020828403121561417b5761417a613e85565b5b600061418984828501613eb0565b91505092915050565b6000806000606084860312156141ab576141aa613e85565b5b60006141b986828701614009565b93505060206141ca86828701614009565b92505060406141db86828701613eb0565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61422282613f54565b810181811067ffffffffffffffff82111715614241576142406141ea565b5b80604052505050565b6000614254613e7b565b90506142608282614219565b919050565b600067ffffffffffffffff8211156142805761427f6141ea565b5b602082029050602081019050919050565b600080fd5b60006142a96142a484614265565b61424a565b905080838252602082019050602084028301858111156142cc576142cb614291565b5b835b818110156142f557806142e18882614009565b8452602084019350506020810190506142ce565b5050509392505050565b600082601f830112614314576143136141e5565b5b8135614324848260208601614296565b91505092915050565b6000806040838503121561434457614343613e85565b5b600083013567ffffffffffffffff81111561436257614361613e8a565b5b61436e858286016142ff565b925050602061437f85828601613eb0565b9150509250929050565b61439281613fe0565b82525050565b60006020820190506143ad6000830184614389565b92915050565b600060ff82169050919050565b6143c9816143b3565b82525050565b60006020820190506143e460008301846143c0565b92915050565b6000806040838503121561440157614400613e85565b5b600061440f85828601614009565b925050602061442085828601614009565b9150509250929050565b6144338161405e565b811461443e57600080fd5b50565b6000813590506144508161442a565b92915050565b6000806040838503121561446d5761446c613e85565b5b600061447b85828601614009565b925050602061448c85828601614441565b9150509250929050565b6000602082840312156144ac576144ab613e85565b5b60006144ba84828501614441565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006144f9602083613f10565b9150614504826144c3565b602082019050919050565b60006020820190508181036000830152614528816144ec565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061456982613e8f565b915061457483613e8f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156145a9576145a861452f565b5b828201905092915050565b7f53656c6c20466565000000000000000000000000000000000000000000000000600082015250565b60006145ea600883613f10565b91506145f5826145b4565b602082019050919050565b60006020820190508181036000830152614619816145dd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061466757607f821691505b6020821081141561467b5761467a614620565b5b50919050565b600061468c82613e8f565b915061469783613e8f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156146d0576146cf61452f565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061471582613e8f565b915061472083613e8f565b9250826147305761472f6146db565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614797602f83613f10565b91506147a28261473b565b604082019050919050565b600060208201905081810360008301526147c68161478a565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614829602883613f10565b9150614834826147cd565b604082019050919050565b600060208201905081810360008301526148588161481c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061489982613e8f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156148cc576148cb61452f565b5b600182019050919050565b7f5f746f6b656e20616464726573732063616e6e6f742062652030000000000000600082015250565b600061490d601a83613f10565b9150614918826148d7565b602082019050919050565b6000602082019050818103600083015261493c81614900565b9050919050565b7f43616e2774207769746864726177206e617469766520746f6b656e7300000000600082015250565b6000614979601c83613f10565b915061498482614943565b602082019050919050565b600060208201905081810360008301526149a88161496c565b9050919050565b6000815190506149be81613e99565b92915050565b6000602082840312156149da576149d9613e85565b5b60006149e8848285016149af565b91505092915050565b6000604082019050614a066000830185614389565b614a13602083018461413b565b9392505050565b600081519050614a298161442a565b92915050565b600060208284031215614a4557614a44613e85565b5b6000614a5384828501614a1a565b91505092915050565b7f4275792046656500000000000000000000000000000000000000000000000000600082015250565b6000614a92600783613f10565b9150614a9d82614a5c565b602082019050919050565b60006020820190508181036000830152614ac181614a85565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614b24603983613f10565b9150614b2f82614ac8565b604082019050919050565b60006020820190508181036000830152614b5381614b17565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614bb6602583613f10565b9150614bc182614b5a565b604082019050919050565b60006020820190508181036000830152614be581614ba9565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614c48602483613f10565b9150614c5382614bec565b604082019050919050565b60006020820190508181036000830152614c7781614c3b565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614cda603583613f10565b9150614ce582614c7e565b604082019050919050565b60006020820190508181036000830152614d0981614ccd565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e382520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614d6c603483613f10565b9150614d7782614d10565b604082019050919050565b60006020820190508181036000830152614d9b81614d5f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614dfe602683613f10565b9150614e0982614da2565b604082019050919050565b60006020820190508181036000830152614e2d81614df1565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614e90602483613f10565b9150614e9b82614e34565b604082019050919050565b60006020820190508181036000830152614ebf81614e83565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614f22602283613f10565b9150614f2d82614ec6565b604082019050919050565b60006020820190508181036000830152614f5181614f15565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614fb4602583613f10565b9150614fbf82614f58565b604082019050919050565b60006020820190508181036000830152614fe381614fa7565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000615046602383613f10565b915061505182614fea565b604082019050919050565b6000602082019050818103600083015261507581615039565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006150b2601683613f10565b91506150bd8261507c565b602082019050919050565b600060208201905081810360008301526150e1816150a5565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e65207075726368617365207065722074776f206260208201527f6c6f636b7320616c6c6f7765642e000000000000000000000000000000000000604082015250565b600061516a604e83613f10565b9150615175826150e8565b606082019050919050565b600060208201905081810360008301526151998161515d565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006151fc603583613f10565b9150615207826151a0565b604082019050919050565b6000602082019050818103600083015261522b816151ef565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000615268601383613f10565b915061527382615232565b602082019050919050565b600060208201905081810360008301526152978161525b565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006152fa603683613f10565b91506153058261529e565b604082019050919050565b60006020820190508181036000830152615329816152ed565b9050919050565b600061533b82613e8f565b915061534683613e8f565b9250828210156153595761535861452f565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006153c0602683613f10565b91506153cb82615364565b604082019050919050565b600060208201905081810360008301526153ef816153b3565b9050919050565b600081905092915050565b50565b60006154116000836153f6565b915061541c82615401565b600082019050919050565b600061543282615404565b9150819050919050565b6000606082019050615451600083018661413b565b61545e602083018561413b565b61546b604083018461413b565b949350505050565b60008151905061548281613ff2565b92915050565b60006020828403121561549e5761549d613e85565b5b60006154ac84828501615473565b91505092915050565b6000819050919050565b60006154da6154d56154d0846154b5565b6140c1565b613e8f565b9050919050565b6154ea816154bf565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61552581613fe0565b82525050565b6000615537838361551c565b60208301905092915050565b6000602082019050919050565b600061555b826154f0565b61556581856154fb565b93506155708361550c565b8060005b838110156155a1578151615588888261552b565b975061559383615543565b925050600181019050615574565b5085935050505092915050565b600060a0820190506155c3600083018861413b565b6155d060208301876154e1565b81810360408301526155e28186615550565b90506155f16060830185614389565b6155fe608083018461413b565b9695505050505050565b600060c08201905061561d6000830189614389565b61562a602083018861413b565b61563760408301876154e1565b61564460608301866154e1565b6156516080830185614389565b61565e60a083018461413b565b979650505050505050565b60008060006060848603121561568257615681613e85565b5b6000615690868287016149af565b93505060206156a1868287016149af565b92505060406156b2868287016149af565b915050925092509256fea2646970667358221220cd8a6e60bf87cdc0bff89c0b0750b94f11175e2984627856cf2d765a630724ec64736f6c63430008090033

Deployed Bytecode Sourcemap

29438:16169:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35984:356;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8538:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10705:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30673:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29544:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9658:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37046:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30457:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34711:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11356:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42530:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29647:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9500:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12257:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45244:358;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44990:246;;;;;;;;;;;;;:::i;:::-;;29602:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29887:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37211:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35629:347;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30344:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29967:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9829:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2014:144;;;;;;;;;;;;;:::i;:::-;;33815:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35258:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30305:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33651:112;;;;;;;;;;;;;:::i;:::-;;1363:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29739:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30417:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35521:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8757:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36538:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30497:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12975:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10169:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42748:260;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30894:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29927:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36348:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34994:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30185:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29772:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34206:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30234:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10407:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29814:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33997:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30268:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2313:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30379:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29854:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35984:356;1594:12;:10;:12::i;:::-;1583:23;;:7;:5;:7::i;:::-;:23;;;1575:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36128:13:::1;36109:16;:32;;;;36171:13;36152:16;:32;;;;36230:16;;36211;;:35;;;;:::i;:::-;36195:13;:51;;;;36282:2;36265:13;;:19;;36257:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;35984:356:::0;;:::o;8538:100::-;8592:13;8625:5;8618:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8538:100;:::o;10705:169::-;10788:4;10805:39;10814:12;:10;:12::i;:::-;10828:7;10837:6;10805:8;:39::i;:::-;10862:4;10855:11;;10705:169;;;;:::o;30673:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;29544:51::-;;;:::o;9658:108::-;9719:7;9746:12;;9739:19;;9658:108;:::o;37046:157::-;1594:12;:10;:12::i;:::-;1583:23;;:7;:5;:7::i;:::-;:23;;;1575:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37153:9:::1;;;;;;;;;;;37125:38;;37142:9;37125:38;;;;;;;;;;;;37186:9;37174;;:21;;;;;;;;;;;;;;;;;;37046:157:::0;:::o;30457:33::-;;;;:::o;34711:275::-;1594:12;:10;:12::i;:::-;1583:23;;:7;:5;:7::i;:::-;:23;;;1575:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34848:4:::1;34840;34835:1;34819:13;:11;:13::i;:::-;:17;;;;:::i;:::-;34818:26;;;;:::i;:::-;34817:35;;;;:::i;:::-;34807:6;:45;;34785:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;34971:6;34961;:17;;;;:::i;:::-;34938:20;:40;;;;34711:275:::0;:::o;11356:492::-;11496:4;11513:36;11523:6;11531:9;11542:6;11513:9;:36::i;:::-;11562:24;11589:11;:19;11601:6;11589:19;;;;;;;;;;;;;;;:33;11609:12;:10;:12::i;:::-;11589:33;;;;;;;;;;;;;;;;11562:60;;11661:6;11641:16;:26;;11633:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;11748:57;11757:6;11765:12;:10;:12::i;:::-;11798:6;11779:16;:25;11748:8;:57::i;:::-;11836:4;11829:11;;;11356:492;;;;;:::o;42530:206::-;1594:12;:10;:12::i;:::-;1583:23;;:7;:5;:7::i;:::-;:23;;;1575:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42621:9:::1;42617:112;42640:5;:12;42636:1;:16;42617:112;;;42700:5;42706:1;42700:8;;;;;;;;:::i;:::-;;;;;;;;42679:38;;42688:10;42679:38;;;42710:6;42679:38;;;;;;:::i;:::-;;;;;;;;42654:3;;;;;:::i;:::-;;;;42617:112;;;;42530:206:::0;;:::o;29647:53::-;29693:6;29647:53;:::o;9500:93::-;9558:5;9583:2;9576:9;;9500:93;:::o;12257:215::-;12345:4;12362:80;12371:12;:10;:12::i;:::-;12385:7;12431:10;12394:11;:25;12406:12;:10;:12::i;:::-;12394:25;;;;;;;;;;;;;;;:34;12420:7;12394:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;12362:8;:80::i;:::-;12460:4;12453:11;;12257:215;;;;:::o;45244:358::-;1594:12;:10;:12::i;:::-;1583:23;;:7;:5;:7::i;:::-;:23;;;1575:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45352:1:::1;45334:20;;:6;:20;;;;45326:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;45422:4;45404:23;;:6;:23;;;;45396:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;45471:24;45505:6;45498:24;;;45531:4;45498:39;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45471:66;;45555:6;45548:23;;;45572:3;45577:16;45548:46;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;45315:287;45244:358:::0;;:::o;44990:246::-;1594:12;:10;:12::i;:::-;1583:23;;:7;:5;:7::i;:::-;:23;;;1575:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45040:15:::1;45073:4;45058:31;;;45098:4;45058:46;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45040:64;;45130:4;45115:30;;;45146:10;45158:7;45115:51;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;45185:10;45177:28;;:51;45206:21;45177:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;45029:207;44990:246::o:0;29602:38::-;;;:::o;29887:33::-;;;;;;;;;;;;;:::o;37211:126::-;37277:4;37301:19;:28;37321:7;37301:28;;;;;;;;;;;;;;;;;;;;;;;;;37294:35;;37211:126;;;:::o;35629:347::-;1594:12;:10;:12::i;:::-;1583:23;;:7;:5;:7::i;:::-;:23;;;1575:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35771:13:::1;35753:15;:31;;;;35813:13;35795:15;:31;;;;35870:15;;35852;;:33;;;;:::i;:::-;35837:12;:48;;;;35920:2;35904:12;;:18;;35896:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;35629:347:::0;;:::o;30344:28::-;;;;:::o;29967:31::-;;;;;;;;;;;;;:::o;9829:127::-;9903:7;9930:9;:18;9940:7;9930:18;;;;;;;;;;;;;;;;9923:25;;9829:127;;;:::o;2014:144::-;1594:12;:10;:12::i;:::-;1583:23;;:7;:5;:7::i;:::-;:23;;;1575:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2079:71:::1;2106:42;2079:18;:71::i;:::-;2014:144::o:0;33815:121::-;33867:4;1594:12;:10;:12::i;:::-;1583:23;;:7;:5;:7::i;:::-;:23;;;1575:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33901:5:::1;33884:14;;:22;;;;;;;;;;;;;;;;;;33924:4;33917:11;;33815:121:::0;:::o;35258:167::-;1594:12;:10;:12::i;:::-;1583:23;;:7;:5;:7::i;:::-;:23;;;1575:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35413:4:::1;35371:31;:39;35403:6;35371:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35258:167:::0;;:::o;30305:30::-;;;;:::o;33651:112::-;1594:12;:10;:12::i;:::-;1583:23;;:7;:5;:7::i;:::-;:23;;;1575:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33722:4:::1;33706:13;;:20;;;;;;;;;;;;;;;;;;33751:4;33737:11;;:18;;;;;;;;;;;;;;;;;;33651:112::o:0;1363:87::-;1409:7;1436:6;;;;;;;;;;;1429:13;;1363:87;:::o;29739:24::-;;;;;;;;;;;;;:::o;30417:31::-;;;;:::o;35521:100::-;1594:12;:10;:12::i;:::-;1583:23;;:7;:5;:7::i;:::-;:23;;;1575:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35606:7:::1;35592:11;;:21;;;;;;;;;;;;;;;;;;35521:100:::0;:::o;8757:104::-;8813:13;8846:7;8839:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8757:104;:::o;36538:304::-;1594:12;:10;:12::i;:::-;1583:23;;:7;:5;:7::i;:::-;:23;;;1575:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36682:13:::1;36674:21;;:4;:21;;;;36652:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;36793:41;36822:4;36828:5;36793:28;:41::i;:::-;36538:304:::0;;:::o;30497:27::-;;;;:::o;12975:413::-;13068:4;13085:24;13112:11;:25;13124:12;:10;:12::i;:::-;13112:25;;;;;;;;;;;;;;;:34;13138:7;13112:34;;;;;;;;;;;;;;;;13085:61;;13185:15;13165:16;:35;;13157:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;13278:67;13287:12;:10;:12::i;:::-;13301:7;13329:15;13310:16;:34;13278:8;:67::i;:::-;13376:4;13369:11;;;12975:413;;;;:::o;10169:175::-;10255:4;10272:42;10282:12;:10;:12::i;:::-;10296:9;10307:6;10272:9;:42::i;:::-;10332:4;10325:11;;10169:175;;;;:::o;42748:260::-;1594:12;:10;:12::i;:::-;1583:23;;:7;:5;:7::i;:::-;:23;;;1575:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42882:13:::1;42863:16;:32;;;;42925:13;42906:16;:32;;;;42984:16;;42965;;:35;;;;:::i;:::-;42949:13;:51;;;;42748:260:::0;;:::o;30894:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;29927:33::-;;;;;;;;;;;;;:::o;36348:182::-;1594:12;:10;:12::i;:::-;1583:23;;:7;:5;:7::i;:::-;:23;;;1575:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36464:8:::1;36433:19;:28;36453:7;36433:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;36504:7;36488:34;;;36513:8;36488:34;;;;;;:::i;:::-;;;;;;;;36348:182:::0;;:::o;34994:256::-;1594:12;:10;:12::i;:::-;1583:23;;:7;:5;:7::i;:::-;:23;;;1575:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35134:4:::1;35126;35121:1;35105:13;:11;:13::i;:::-;:17;;;;:::i;:::-;35104:26;;;;:::i;:::-;35103:35;;;;:::i;:::-;35093:6;:45;;35071:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;35235:6;35225;:17;;;;:::i;:::-;35213:9;:29;;;;34994:256:::0;:::o;30185:40::-;;;;;;;;;;;;;:::o;29772:35::-;;;;:::o;34206:497::-;34314:4;1594:12;:10;:12::i;:::-;1583:23;;:7;:5;:7::i;:::-;:23;;;1575:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34393:6:::1;34388:1;34372:13;:11;:13::i;:::-;:17;;;;:::i;:::-;34371:28;;;;:::i;:::-;34358:9;:41;;34336:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;34548:4;34543:1;34527:13;:11;:13::i;:::-;:17;;;;:::i;:::-;34526:26;;;;:::i;:::-;34513:9;:39;;34491:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;34664:9;34643:18;:30;;;;34691:4;34684:11;;34206:497:::0;;;:::o;30234:27::-;;;;:::o;10407:151::-;10496:7;10523:11;:18;10535:5;10523:18;;;;;;;;;;;;;;;:27;10542:7;10523:27;;;;;;;;;;;;;;;;10516:34;;10407:151;;;;:::o;29814:33::-;;;;:::o;33997:135::-;34057:4;1594:12;:10;:12::i;:::-;1583:23;;:7;:5;:7::i;:::-;:23;;;1575:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34097:5:::1;34074:20;;:28;;;;;;;;;;;;;;;;;;34120:4;34113:11;;33997:135:::0;:::o;30268:30::-;;;;:::o;2313:201::-;1594:12;:10;:12::i;:::-;1583:23;;:7;:5;:7::i;:::-;:23;;;1575:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2422:1:::1;2402:22;;:8;:22;;;;2394:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2478:28;2497:8;2478:18;:28::i;:::-;2313:201:::0;:::o;30379:31::-;;;;:::o;29854:24::-;;;;:::o;227:98::-;280:7;307:10;300:17;;227:98;:::o;16661:380::-;16814:1;16797:19;;:5;:19;;;;16789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16895:1;16876:21;;:7;:21;;;;16868:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16979:6;16949:11;:18;16961:5;16949:18;;;;;;;;;;;;;;;:27;16968:7;16949:27;;;;;;;;;;;;;;;:36;;;;17017:7;17001:32;;17010:5;17001:32;;;17026:6;17001:32;;;;;;:::i;:::-;;;;;;;;16661:380;;;:::o;37345:4576::-;37493:1;37477:18;;:4;:18;;;;37469:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37570:1;37556:16;;:2;:16;;;;37548:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;37639:1;37629:6;:11;37625:93;;;37657:28;37673:4;37679:2;37683:1;37657:15;:28::i;:::-;37700:7;;37625:93;37734:14;;;;;;;;;;;37730:2496;;;37795:7;:5;:7::i;:::-;37787:15;;:4;:15;;;;:49;;;;;37829:7;:5;:7::i;:::-;37823:13;;:2;:13;;;;37787:49;:86;;;;;37871:1;37857:16;;:2;:16;;;;37787:86;:128;;;;;37908:6;37894:21;;:2;:21;;;;37787:128;:158;;;;;37937:8;;;;;;;;;;;37936:9;37787:158;37765:2450;;;37985:13;;;;;;;;;;;37980:223;;38057:19;:25;38077:4;38057:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;38086:19;:23;38106:2;38086:23;;;;;;;;;;;;;;;;;;;;;;;;;38057:52;38023:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;37980:223;38359:20;;;;;;;;;;;38355:650;;;38440:7;:5;:7::i;:::-;38434:13;;:2;:13;;;;:72;;;;;38490:15;38476:30;;:2;:30;;;;38434:72;:129;;;;;38549:13;38535:28;;:2;:28;;;;38434:129;38404:582;;;38731:12;38694:1;38652:28;:39;38681:9;38652:39;;;;;;;;;;;;;;;;:43;;;;:::i;:::-;:91;38614:267;;;;;;;;;;;;:::i;:::-;;;;;;;;;38950:12;38908:28;:39;38937:9;38908:39;;;;;;;;;;;;;;;:54;;;;38404:582;38355:650;39079:25;:31;39105:4;39079:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;39136:31;:35;39168:2;39136:35;;;;;;;;;;;;;;;;;;;;;;;;;39135:36;39079:92;39053:1147;;;39258:20;;39248:6;:30;;39214:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;39466:9;;39449:13;39459:2;39449:9;:13::i;:::-;39440:6;:22;;;;:::i;:::-;:35;;39406:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;39053:1147;;;39644:25;:29;39670:2;39644:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;39699:31;:37;39731:4;39699:37;;;;;;;;;;;;;;;;;;;;;;;;;39698:38;39644:92;39618:582;;;39823:20;;39813:6;:30;;39779:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;39618:582;;;39980:31;:35;40012:2;39980:35;;;;;;;;;;;;;;;;;;;;;;;;;39975:225;;40100:9;;40083:13;40093:2;40083:9;:13::i;:::-;40074:6;:22;;;;:::i;:::-;:35;;40040:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;39975:225;39618:582;39053:1147;37765:2450;37730:2496;40238:28;40269:24;40287:4;40269:9;:24::i;:::-;40238:55;;40306:12;40345:18;;40321:20;:42;;40306:57;;40394:7;:35;;;;;40418:11;;;;;;;;;;;40394:35;:61;;;;;40447:8;;;;;;;;;;;40446:9;40394:61;:110;;;;;40473:25;:31;40499:4;40473:31;;;;;;;;;;;;;;;;;;;;;;;;;40472:32;40394:110;:153;;;;;40522:19;:25;40542:4;40522:25;;;;;;;;;;;;;;;;;;;;;;;;;40521:26;40394:153;:194;;;;;40565:19;:23;40585:2;40565:23;;;;;;;;;;;;;;;;;;;;;;;;;40564:24;40394:194;40376:326;;;40626:4;40615:8;;:15;;;;;;;;;;;;;;;;;;40647:10;:8;:10::i;:::-;40685:5;40674:8;;:16;;;;;;;;;;;;;;;;;;40376:326;40714:12;40730:8;;;;;;;;;;;40729:9;40714:24;;40840:19;:25;40860:4;40840:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;40869:19;:23;40889:2;40869:23;;;;;;;;;;;;;;;;;;;;;;;;;40840:52;40836:100;;;40919:5;40909:15;;40836:100;40948:12;41053:7;41049:819;;;41105:25;:29;41131:2;41105:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;41154:1;41138:13;;:17;41105:50;41101:618;;;41183:34;41213:3;41183:25;41194:13;;41183:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;41176:41;;41286:13;;41266:16;;41259:4;:23;;;;:::i;:::-;41258:41;;;;:::i;:::-;41236:18;;:63;;;;;;;:::i;:::-;;;;;;;;41362:13;;41342:16;;41335:4;:23;;;;:::i;:::-;41334:41;;;;:::i;:::-;41318:12;;:57;;;;;;;:::i;:::-;;;;;;;;41101:618;;;41437:25;:31;41463:4;41437:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;41487:1;41472:12;;:16;41437:51;41433:286;;;41516:33;41545:3;41516:24;41527:12;;41516:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;41509:40;;41617:12;;41598:15;;41591:4;:22;;;;:::i;:::-;41590:39;;;;:::i;:::-;41568:18;;:61;;;;;;;:::i;:::-;;;;;;;;41691:12;;41672:15;;41665:4;:22;;;;:::i;:::-;41664:39;;;;:::i;:::-;41648:12;;:55;;;;;;;:::i;:::-;;;;;;;;41433:286;41101:618;41746:1;41739:4;:8;41735:91;;;41768:42;41784:4;41798;41805;41768:15;:42::i;:::-;41735:91;41852:4;41842:14;;;;;:::i;:::-;;;41049:819;41880:33;41896:4;41902:2;41906:6;41880:15;:33::i;:::-;37458:4463;;;;37345:4576;;;;:::o;2674:191::-;2748:16;2767:6;;;;;;;;;;;2748:25;;2793:8;2784:6;;:17;;;;;;;;;;;;;;;;;;2848:8;2817:40;;2838:8;2817:40;;;;;;;;;;;;2737:128;2674:191;:::o;36850:188::-;36967:5;36933:25;:31;36959:4;36933:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;37024:5;36990:40;;37018:4;36990:40;;;;;;;;;;;;36850:188;;:::o;13878:733::-;14036:1;14018:20;;:6;:20;;;;14010:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14120:1;14099:23;;:9;:23;;;;14091:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14175:47;14196:6;14204:9;14215:6;14175:20;:47::i;:::-;14235:21;14259:9;:17;14269:6;14259:17;;;;;;;;;;;;;;;;14235:41;;14312:6;14295:13;:23;;14287:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;14433:6;14417:13;:22;14397:9;:17;14407:6;14397:17;;;;;;;;;;;;;;;:42;;;;14485:6;14461:9;:20;14471:9;14461:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;14526:9;14509:35;;14518:6;14509:35;;;14537:6;14509:35;;;;;;:::i;:::-;;;;;;;;14557:46;14577:6;14585:9;14596:6;14557:19;:46::i;:::-;13999:612;13878:733;;;:::o;43543:1439::-;43582:23;43608:24;43626:4;43608:9;:24::i;:::-;43582:50;;43643:25;43705:12;;43671:18;;:46;;;;:::i;:::-;43643:74;;43728:12;43776:1;43757:15;:20;:46;;;;43802:1;43781:17;:22;43757:46;43753:85;;;43820:7;;;;;43753:85;43893:2;43872:18;;:23;;;;:::i;:::-;43854:15;:41;43850:115;;;43951:2;43930:18;;:23;;;;:::i;:::-;43912:41;;43850:115;44026:23;44139:1;44106:17;44071:18;;44053:15;:36;;;;:::i;:::-;44052:71;;;;:::i;:::-;:88;;;;:::i;:::-;44026:114;;44151:26;44180:36;44200:15;44180;:19;;:36;;;;:::i;:::-;44151:65;;44229:25;44257:21;44229:49;;44291:36;44308:18;44291:16;:36::i;:::-;44340:18;44361:44;44387:17;44361:21;:25;;:44;;;;:::i;:::-;44340:65;;44418:17;44438:51;44471:17;44438:28;44453:12;;44438:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;44418:71;;44502:23;44541:9;44528:10;:22;;;;:::i;:::-;44502:48;;44584:1;44563:18;:22;;;;44611:1;44596:12;:16;;;;44647:9;;;;;;;;;;;44639:23;;44670:9;44639:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44625:59;;;;;44719:1;44701:15;:19;:42;;;;;44742:1;44724:15;:19;44701:42;44697:278;;;44760:46;44773:15;44790;44760:12;:46::i;:::-;44826:137;44859:18;44896:15;44930:18;;44826:137;;;;;;;;:::i;:::-;;;;;;;;44697:278;43571:1411;;;;;;;;;43543:1439;:::o;21795:98::-;21853:7;21884:1;21880;:5;;;;:::i;:::-;21873:12;;21795:98;;;;:::o;22194:::-;22252:7;22283:1;22279;:5;;;;:::i;:::-;22272:12;;22194:98;;;;:::o;17643:125::-;;;;:::o;18372:124::-;;;;:::o;21438:98::-;21496:7;21527:1;21523;:5;;;;:::i;:::-;21516:12;;21438:98;;;;:::o;41929:589::-;42055:21;42093:1;42079:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42055:40;;42124:4;42106;42111:1;42106:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;42150:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42140:4;42145:1;42140:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;42185:62;42202:4;42217:15;42235:11;42185:8;:62::i;:::-;42286:15;:66;;;42367:11;42393:1;42437:4;42464;42484:15;42286:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41984:534;41929:589;:::o;43022:513::-;43170:62;43187:4;43202:15;43220:11;43170:8;:62::i;:::-;43275:15;:31;;;43314:9;43347:4;43367:11;43393:1;43436;43479:7;:5;:7::i;:::-;43501:15;43275:252;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;43022:513;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:474::-;758:6;766;815:2;803:9;794:7;790:23;786:32;783:119;;;821:79;;:::i;:::-;783:119;941:1;966:53;1011:7;1002:6;991:9;987:22;966:53;:::i;:::-;956:63;;912:117;1068:2;1094:53;1139:7;1130:6;1119:9;1115:22;1094:53;:::i;:::-;1084:63;;1039:118;690:474;;;;;:::o;1170:99::-;1222:6;1256:5;1250:12;1240:22;;1170:99;;;:::o;1275:169::-;1359:11;1393:6;1388:3;1381:19;1433:4;1428:3;1424:14;1409:29;;1275:169;;;;:::o;1450:307::-;1518:1;1528:113;1542:6;1539:1;1536:13;1528:113;;;1627:1;1622:3;1618:11;1612:18;1608:1;1603:3;1599:11;1592:39;1564:2;1561:1;1557:10;1552:15;;1528:113;;;1659:6;1656:1;1653:13;1650:101;;;1739:1;1730:6;1725:3;1721:16;1714:27;1650:101;1499:258;1450:307;;;:::o;1763:102::-;1804:6;1855:2;1851:7;1846:2;1839:5;1835:14;1831:28;1821:38;;1763:102;;;:::o;1871:364::-;1959:3;1987:39;2020:5;1987:39;:::i;:::-;2042:71;2106:6;2101:3;2042:71;:::i;:::-;2035:78;;2122:52;2167:6;2162:3;2155:4;2148:5;2144:16;2122:52;:::i;:::-;2199:29;2221:6;2199:29;:::i;:::-;2194:3;2190:39;2183:46;;1963:272;1871:364;;;;:::o;2241:313::-;2354:4;2392:2;2381:9;2377:18;2369:26;;2441:9;2435:4;2431:20;2427:1;2416:9;2412:17;2405:47;2469:78;2542:4;2533:6;2469:78;:::i;:::-;2461:86;;2241:313;;;;:::o;2560:126::-;2597:7;2637:42;2630:5;2626:54;2615:65;;2560:126;;;:::o;2692:96::-;2729:7;2758:24;2776:5;2758:24;:::i;:::-;2747:35;;2692:96;;;:::o;2794:122::-;2867:24;2885:5;2867:24;:::i;:::-;2860:5;2857:35;2847:63;;2906:1;2903;2896:12;2847:63;2794:122;:::o;2922:139::-;2968:5;3006:6;2993:20;2984:29;;3022:33;3049:5;3022:33;:::i;:::-;2922:139;;;;:::o;3067:474::-;3135:6;3143;3192:2;3180:9;3171:7;3167:23;3163:32;3160:119;;;3198:79;;:::i;:::-;3160:119;3318:1;3343:53;3388:7;3379:6;3368:9;3364:22;3343:53;:::i;:::-;3333:63;;3289:117;3445:2;3471:53;3516:7;3507:6;3496:9;3492:22;3471:53;:::i;:::-;3461:63;;3416:118;3067:474;;;;;:::o;3547:90::-;3581:7;3624:5;3617:13;3610:21;3599:32;;3547:90;;;:::o;3643:109::-;3724:21;3739:5;3724:21;:::i;:::-;3719:3;3712:34;3643:109;;:::o;3758:210::-;3845:4;3883:2;3872:9;3868:18;3860:26;;3896:65;3958:1;3947:9;3943:17;3934:6;3896:65;:::i;:::-;3758:210;;;;:::o;3974:329::-;4033:6;4082:2;4070:9;4061:7;4057:23;4053:32;4050:119;;;4088:79;;:::i;:::-;4050:119;4208:1;4233:53;4278:7;4269:6;4258:9;4254:22;4233:53;:::i;:::-;4223:63;;4179:117;3974:329;;;;:::o;4309:60::-;4337:3;4358:5;4351:12;;4309:60;;;:::o;4375:142::-;4425:9;4458:53;4476:34;4485:24;4503:5;4485:24;:::i;:::-;4476:34;:::i;:::-;4458:53;:::i;:::-;4445:66;;4375:142;;;:::o;4523:126::-;4573:9;4606:37;4637:5;4606:37;:::i;:::-;4593:50;;4523:126;;;:::o;4655:153::-;4732:9;4765:37;4796:5;4765:37;:::i;:::-;4752:50;;4655:153;;;:::o;4814:185::-;4928:64;4986:5;4928:64;:::i;:::-;4923:3;4916:77;4814:185;;:::o;5005:276::-;5125:4;5163:2;5152:9;5148:18;5140:26;;5176:98;5271:1;5260:9;5256:17;5247:6;5176:98;:::i;:::-;5005:276;;;;:::o;5287:118::-;5374:24;5392:5;5374:24;:::i;:::-;5369:3;5362:37;5287:118;;:::o;5411:222::-;5504:4;5542:2;5531:9;5527:18;5519:26;;5555:71;5623:1;5612:9;5608:17;5599:6;5555:71;:::i;:::-;5411:222;;;;:::o;5639:329::-;5698:6;5747:2;5735:9;5726:7;5722:23;5718:32;5715:119;;;5753:79;;:::i;:::-;5715:119;5873:1;5898:53;5943:7;5934:6;5923:9;5919:22;5898:53;:::i;:::-;5888:63;;5844:117;5639:329;;;;:::o;5974:619::-;6051:6;6059;6067;6116:2;6104:9;6095:7;6091:23;6087:32;6084:119;;;6122:79;;:::i;:::-;6084:119;6242:1;6267:53;6312:7;6303:6;6292:9;6288:22;6267:53;:::i;:::-;6257:63;;6213:117;6369:2;6395:53;6440:7;6431:6;6420:9;6416:22;6395:53;:::i;:::-;6385:63;;6340:118;6497:2;6523:53;6568:7;6559:6;6548:9;6544:22;6523:53;:::i;:::-;6513:63;;6468:118;5974:619;;;;;:::o;6599:117::-;6708:1;6705;6698:12;6722:180;6770:77;6767:1;6760:88;6867:4;6864:1;6857:15;6891:4;6888:1;6881:15;6908:281;6991:27;7013:4;6991:27;:::i;:::-;6983:6;6979:40;7121:6;7109:10;7106:22;7085:18;7073:10;7070:34;7067:62;7064:88;;;7132:18;;:::i;:::-;7064:88;7172:10;7168:2;7161:22;6951:238;6908:281;;:::o;7195:129::-;7229:6;7256:20;;:::i;:::-;7246:30;;7285:33;7313:4;7305:6;7285:33;:::i;:::-;7195:129;;;:::o;7330:311::-;7407:4;7497:18;7489:6;7486:30;7483:56;;;7519:18;;:::i;:::-;7483:56;7569:4;7561:6;7557:17;7549:25;;7629:4;7623;7619:15;7611:23;;7330:311;;;:::o;7647:117::-;7756:1;7753;7746:12;7787:710;7883:5;7908:81;7924:64;7981:6;7924:64;:::i;:::-;7908:81;:::i;:::-;7899:90;;8009:5;8038:6;8031:5;8024:21;8072:4;8065:5;8061:16;8054:23;;8125:4;8117:6;8113:17;8105:6;8101:30;8154:3;8146:6;8143:15;8140:122;;;8173:79;;:::i;:::-;8140:122;8288:6;8271:220;8305:6;8300:3;8297:15;8271:220;;;8380:3;8409:37;8442:3;8430:10;8409:37;:::i;:::-;8404:3;8397:50;8476:4;8471:3;8467:14;8460:21;;8347:144;8331:4;8326:3;8322:14;8315:21;;8271:220;;;8275:21;7889:608;;7787:710;;;;;:::o;8520:370::-;8591:5;8640:3;8633:4;8625:6;8621:17;8617:27;8607:122;;8648:79;;:::i;:::-;8607:122;8765:6;8752:20;8790:94;8880:3;8872:6;8865:4;8857:6;8853:17;8790:94;:::i;:::-;8781:103;;8597:293;8520:370;;;;:::o;8896:684::-;8989:6;8997;9046:2;9034:9;9025:7;9021:23;9017:32;9014:119;;;9052:79;;:::i;:::-;9014:119;9200:1;9189:9;9185:17;9172:31;9230:18;9222:6;9219:30;9216:117;;;9252:79;;:::i;:::-;9216:117;9357:78;9427:7;9418:6;9407:9;9403:22;9357:78;:::i;:::-;9347:88;;9143:302;9484:2;9510:53;9555:7;9546:6;9535:9;9531:22;9510:53;:::i;:::-;9500:63;;9455:118;8896:684;;;;;:::o;9586:118::-;9673:24;9691:5;9673:24;:::i;:::-;9668:3;9661:37;9586:118;;:::o;9710:222::-;9803:4;9841:2;9830:9;9826:18;9818:26;;9854:71;9922:1;9911:9;9907:17;9898:6;9854:71;:::i;:::-;9710:222;;;;:::o;9938:86::-;9973:7;10013:4;10006:5;10002:16;9991:27;;9938:86;;;:::o;10030:112::-;10113:22;10129:5;10113:22;:::i;:::-;10108:3;10101:35;10030:112;;:::o;10148:214::-;10237:4;10275:2;10264:9;10260:18;10252:26;;10288:67;10352:1;10341:9;10337:17;10328:6;10288:67;:::i;:::-;10148:214;;;;:::o;10368:474::-;10436:6;10444;10493:2;10481:9;10472:7;10468:23;10464:32;10461:119;;;10499:79;;:::i;:::-;10461:119;10619:1;10644:53;10689:7;10680:6;10669:9;10665:22;10644:53;:::i;:::-;10634:63;;10590:117;10746:2;10772:53;10817:7;10808:6;10797:9;10793:22;10772:53;:::i;:::-;10762:63;;10717:118;10368:474;;;;;:::o;10848:116::-;10918:21;10933:5;10918:21;:::i;:::-;10911:5;10908:32;10898:60;;10954:1;10951;10944:12;10898:60;10848:116;:::o;10970:133::-;11013:5;11051:6;11038:20;11029:29;;11067:30;11091:5;11067:30;:::i;:::-;10970:133;;;;:::o;11109:468::-;11174:6;11182;11231:2;11219:9;11210:7;11206:23;11202:32;11199:119;;;11237:79;;:::i;:::-;11199:119;11357:1;11382:53;11427:7;11418:6;11407:9;11403:22;11382:53;:::i;:::-;11372:63;;11328:117;11484:2;11510:50;11552:7;11543:6;11532:9;11528:22;11510:50;:::i;:::-;11500:60;;11455:115;11109:468;;;;;:::o;11583:323::-;11639:6;11688:2;11676:9;11667:7;11663:23;11659:32;11656:119;;;11694:79;;:::i;:::-;11656:119;11814:1;11839:50;11881:7;11872:6;11861:9;11857:22;11839:50;:::i;:::-;11829:60;;11785:114;11583:323;;;;:::o;11912:182::-;12052:34;12048:1;12040:6;12036:14;12029:58;11912:182;:::o;12100:366::-;12242:3;12263:67;12327:2;12322:3;12263:67;:::i;:::-;12256:74;;12339:93;12428:3;12339:93;:::i;:::-;12457:2;12452:3;12448:12;12441:19;;12100:366;;;:::o;12472:419::-;12638:4;12676:2;12665:9;12661:18;12653:26;;12725:9;12719:4;12715:20;12711:1;12700:9;12696:17;12689:47;12753:131;12879:4;12753:131;:::i;:::-;12745:139;;12472:419;;;:::o;12897:180::-;12945:77;12942:1;12935:88;13042:4;13039:1;13032:15;13066:4;13063:1;13056:15;13083:305;13123:3;13142:20;13160:1;13142:20;:::i;:::-;13137:25;;13176:20;13194:1;13176:20;:::i;:::-;13171:25;;13330:1;13262:66;13258:74;13255:1;13252:81;13249:107;;;13336:18;;:::i;:::-;13249:107;13380:1;13377;13373:9;13366:16;;13083:305;;;;:::o;13394:158::-;13534:10;13530:1;13522:6;13518:14;13511:34;13394:158;:::o;13558:365::-;13700:3;13721:66;13785:1;13780:3;13721:66;:::i;:::-;13714:73;;13796:93;13885:3;13796:93;:::i;:::-;13914:2;13909:3;13905:12;13898:19;;13558:365;;;:::o;13929:419::-;14095:4;14133:2;14122:9;14118:18;14110:26;;14182:9;14176:4;14172:20;14168:1;14157:9;14153:17;14146:47;14210:131;14336:4;14210:131;:::i;:::-;14202:139;;13929:419;;;:::o;14354:180::-;14402:77;14399:1;14392:88;14499:4;14496:1;14489:15;14523:4;14520:1;14513:15;14540:320;14584:6;14621:1;14615:4;14611:12;14601:22;;14668:1;14662:4;14658:12;14689:18;14679:81;;14745:4;14737:6;14733:17;14723:27;;14679:81;14807:2;14799:6;14796:14;14776:18;14773:38;14770:84;;;14826:18;;:::i;:::-;14770:84;14591:269;14540:320;;;:::o;14866:348::-;14906:7;14929:20;14947:1;14929:20;:::i;:::-;14924:25;;14963:20;14981:1;14963:20;:::i;:::-;14958:25;;15151:1;15083:66;15079:74;15076:1;15073:81;15068:1;15061:9;15054:17;15050:105;15047:131;;;15158:18;;:::i;:::-;15047:131;15206:1;15203;15199:9;15188:20;;14866:348;;;;:::o;15220:180::-;15268:77;15265:1;15258:88;15365:4;15362:1;15355:15;15389:4;15386:1;15379:15;15406:185;15446:1;15463:20;15481:1;15463:20;:::i;:::-;15458:25;;15497:20;15515:1;15497:20;:::i;:::-;15492:25;;15536:1;15526:35;;15541:18;;:::i;:::-;15526:35;15583:1;15580;15576:9;15571:14;;15406:185;;;;:::o;15597:234::-;15737:34;15733:1;15725:6;15721:14;15714:58;15806:17;15801:2;15793:6;15789:15;15782:42;15597:234;:::o;15837:366::-;15979:3;16000:67;16064:2;16059:3;16000:67;:::i;:::-;15993:74;;16076:93;16165:3;16076:93;:::i;:::-;16194:2;16189:3;16185:12;16178:19;;15837:366;;;:::o;16209:419::-;16375:4;16413:2;16402:9;16398:18;16390:26;;16462:9;16456:4;16452:20;16448:1;16437:9;16433:17;16426:47;16490:131;16616:4;16490:131;:::i;:::-;16482:139;;16209:419;;;:::o;16634:227::-;16774:34;16770:1;16762:6;16758:14;16751:58;16843:10;16838:2;16830:6;16826:15;16819:35;16634:227;:::o;16867:366::-;17009:3;17030:67;17094:2;17089:3;17030:67;:::i;:::-;17023:74;;17106:93;17195:3;17106:93;:::i;:::-;17224:2;17219:3;17215:12;17208:19;;16867:366;;;:::o;17239:419::-;17405:4;17443:2;17432:9;17428:18;17420:26;;17492:9;17486:4;17482:20;17478:1;17467:9;17463:17;17456:47;17520:131;17646:4;17520:131;:::i;:::-;17512:139;;17239:419;;;:::o;17664:180::-;17712:77;17709:1;17702:88;17809:4;17806:1;17799:15;17833:4;17830:1;17823:15;17850:233;17889:3;17912:24;17930:5;17912:24;:::i;:::-;17903:33;;17958:66;17951:5;17948:77;17945:103;;;18028:18;;:::i;:::-;17945:103;18075:1;18068:5;18064:13;18057:20;;17850:233;;;:::o;18089:176::-;18229:28;18225:1;18217:6;18213:14;18206:52;18089:176;:::o;18271:366::-;18413:3;18434:67;18498:2;18493:3;18434:67;:::i;:::-;18427:74;;18510:93;18599:3;18510:93;:::i;:::-;18628:2;18623:3;18619:12;18612:19;;18271:366;;;:::o;18643:419::-;18809:4;18847:2;18836:9;18832:18;18824:26;;18896:9;18890:4;18886:20;18882:1;18871:9;18867:17;18860:47;18924:131;19050:4;18924:131;:::i;:::-;18916:139;;18643:419;;;:::o;19068:178::-;19208:30;19204:1;19196:6;19192:14;19185:54;19068:178;:::o;19252:366::-;19394:3;19415:67;19479:2;19474:3;19415:67;:::i;:::-;19408:74;;19491:93;19580:3;19491:93;:::i;:::-;19609:2;19604:3;19600:12;19593:19;;19252:366;;;:::o;19624:419::-;19790:4;19828:2;19817:9;19813:18;19805:26;;19877:9;19871:4;19867:20;19863:1;19852:9;19848:17;19841:47;19905:131;20031:4;19905:131;:::i;:::-;19897:139;;19624:419;;;:::o;20049:143::-;20106:5;20137:6;20131:13;20122:22;;20153:33;20180:5;20153:33;:::i;:::-;20049:143;;;;:::o;20198:351::-;20268:6;20317:2;20305:9;20296:7;20292:23;20288:32;20285:119;;;20323:79;;:::i;:::-;20285:119;20443:1;20468:64;20524:7;20515:6;20504:9;20500:22;20468:64;:::i;:::-;20458:74;;20414:128;20198:351;;;;:::o;20555:332::-;20676:4;20714:2;20703:9;20699:18;20691:26;;20727:71;20795:1;20784:9;20780:17;20771:6;20727:71;:::i;:::-;20808:72;20876:2;20865:9;20861:18;20852:6;20808:72;:::i;:::-;20555:332;;;;;:::o;20893:137::-;20947:5;20978:6;20972:13;20963:22;;20994:30;21018:5;20994:30;:::i;:::-;20893:137;;;;:::o;21036:345::-;21103:6;21152:2;21140:9;21131:7;21127:23;21123:32;21120:119;;;21158:79;;:::i;:::-;21120:119;21278:1;21303:61;21356:7;21347:6;21336:9;21332:22;21303:61;:::i;:::-;21293:71;;21249:125;21036:345;;;;:::o;21387:157::-;21527:9;21523:1;21515:6;21511:14;21504:33;21387:157;:::o;21550:365::-;21692:3;21713:66;21777:1;21772:3;21713:66;:::i;:::-;21706:73;;21788:93;21877:3;21788:93;:::i;:::-;21906:2;21901:3;21897:12;21890:19;;21550:365;;;:::o;21921:419::-;22087:4;22125:2;22114:9;22110:18;22102:26;;22174:9;22168:4;22164:20;22160:1;22149:9;22145:17;22138:47;22202:131;22328:4;22202:131;:::i;:::-;22194:139;;21921:419;;;:::o;22346:244::-;22486:34;22482:1;22474:6;22470:14;22463:58;22555:27;22550:2;22542:6;22538:15;22531:52;22346:244;:::o;22596:366::-;22738:3;22759:67;22823:2;22818:3;22759:67;:::i;:::-;22752:74;;22835:93;22924:3;22835:93;:::i;:::-;22953:2;22948:3;22944:12;22937:19;;22596:366;;;:::o;22968:419::-;23134:4;23172:2;23161:9;23157:18;23149:26;;23221:9;23215:4;23211:20;23207:1;23196:9;23192:17;23185:47;23249:131;23375:4;23249:131;:::i;:::-;23241:139;;22968:419;;;:::o;23393:224::-;23533:34;23529:1;23521:6;23517:14;23510:58;23602:7;23597:2;23589:6;23585:15;23578:32;23393:224;:::o;23623:366::-;23765:3;23786:67;23850:2;23845:3;23786:67;:::i;:::-;23779:74;;23862:93;23951:3;23862:93;:::i;:::-;23980:2;23975:3;23971:12;23964:19;;23623:366;;;:::o;23995:419::-;24161:4;24199:2;24188:9;24184:18;24176:26;;24248:9;24242:4;24238:20;24234:1;24223:9;24219:17;24212:47;24276:131;24402:4;24276:131;:::i;:::-;24268:139;;23995:419;;;:::o;24420:223::-;24560:34;24556:1;24548:6;24544:14;24537:58;24629:6;24624:2;24616:6;24612:15;24605:31;24420:223;:::o;24649:366::-;24791:3;24812:67;24876:2;24871:3;24812:67;:::i;:::-;24805:74;;24888:93;24977:3;24888:93;:::i;:::-;25006:2;25001:3;24997:12;24990:19;;24649:366;;;:::o;25021:419::-;25187:4;25225:2;25214:9;25210:18;25202:26;;25274:9;25268:4;25264:20;25260:1;25249:9;25245:17;25238:47;25302:131;25428:4;25302:131;:::i;:::-;25294:139;;25021:419;;;:::o;25446:240::-;25586:34;25582:1;25574:6;25570:14;25563:58;25655:23;25650:2;25642:6;25638:15;25631:48;25446:240;:::o;25692:366::-;25834:3;25855:67;25919:2;25914:3;25855:67;:::i;:::-;25848:74;;25931:93;26020:3;25931:93;:::i;:::-;26049:2;26044:3;26040:12;26033:19;;25692:366;;;:::o;26064:419::-;26230:4;26268:2;26257:9;26253:18;26245:26;;26317:9;26311:4;26307:20;26303:1;26292:9;26288:17;26281:47;26345:131;26471:4;26345:131;:::i;:::-;26337:139;;26064:419;;;:::o;26489:239::-;26629:34;26625:1;26617:6;26613:14;26606:58;26698:22;26693:2;26685:6;26681:15;26674:47;26489:239;:::o;26734:366::-;26876:3;26897:67;26961:2;26956:3;26897:67;:::i;:::-;26890:74;;26973:93;27062:3;26973:93;:::i;:::-;27091:2;27086:3;27082:12;27075:19;;26734:366;;;:::o;27106:419::-;27272:4;27310:2;27299:9;27295:18;27287:26;;27359:9;27353:4;27349:20;27345:1;27334:9;27330:17;27323:47;27387:131;27513:4;27387:131;:::i;:::-;27379:139;;27106:419;;;:::o;27531:225::-;27671:34;27667:1;27659:6;27655:14;27648:58;27740:8;27735:2;27727:6;27723:15;27716:33;27531:225;:::o;27762:366::-;27904:3;27925:67;27989:2;27984:3;27925:67;:::i;:::-;27918:74;;28001:93;28090:3;28001:93;:::i;:::-;28119:2;28114:3;28110:12;28103:19;;27762:366;;;:::o;28134:419::-;28300:4;28338:2;28327:9;28323:18;28315:26;;28387:9;28381:4;28377:20;28373:1;28362:9;28358:17;28351:47;28415:131;28541:4;28415:131;:::i;:::-;28407:139;;28134:419;;;:::o;28559:223::-;28699:34;28695:1;28687:6;28683:14;28676:58;28768:6;28763:2;28755:6;28751:15;28744:31;28559:223;:::o;28788:366::-;28930:3;28951:67;29015:2;29010:3;28951:67;:::i;:::-;28944:74;;29027:93;29116:3;29027:93;:::i;:::-;29145:2;29140:3;29136:12;29129:19;;28788:366;;;:::o;29160:419::-;29326:4;29364:2;29353:9;29349:18;29341:26;;29413:9;29407:4;29403:20;29399:1;29388:9;29384:17;29377:47;29441:131;29567:4;29441:131;:::i;:::-;29433:139;;29160:419;;;:::o;29585:221::-;29725:34;29721:1;29713:6;29709:14;29702:58;29794:4;29789:2;29781:6;29777:15;29770:29;29585:221;:::o;29812:366::-;29954:3;29975:67;30039:2;30034:3;29975:67;:::i;:::-;29968:74;;30051:93;30140:3;30051:93;:::i;:::-;30169:2;30164:3;30160:12;30153:19;;29812:366;;;:::o;30184:419::-;30350:4;30388:2;30377:9;30373:18;30365:26;;30437:9;30431:4;30427:20;30423:1;30412:9;30408:17;30401:47;30465:131;30591:4;30465:131;:::i;:::-;30457:139;;30184:419;;;:::o;30609:224::-;30749:34;30745:1;30737:6;30733:14;30726:58;30818:7;30813:2;30805:6;30801:15;30794:32;30609:224;:::o;30839:366::-;30981:3;31002:67;31066:2;31061:3;31002:67;:::i;:::-;30995:74;;31078:93;31167:3;31078:93;:::i;:::-;31196:2;31191:3;31187:12;31180:19;;30839:366;;;:::o;31211:419::-;31377:4;31415:2;31404:9;31400:18;31392:26;;31464:9;31458:4;31454:20;31450:1;31439:9;31435:17;31428:47;31492:131;31618:4;31492:131;:::i;:::-;31484:139;;31211:419;;;:::o;31636:222::-;31776:34;31772:1;31764:6;31760:14;31753:58;31845:5;31840:2;31832:6;31828:15;31821:30;31636:222;:::o;31864:366::-;32006:3;32027:67;32091:2;32086:3;32027:67;:::i;:::-;32020:74;;32103:93;32192:3;32103:93;:::i;:::-;32221:2;32216:3;32212:12;32205:19;;31864:366;;;:::o;32236:419::-;32402:4;32440:2;32429:9;32425:18;32417:26;;32489:9;32483:4;32479:20;32475:1;32464:9;32460:17;32453:47;32517:131;32643:4;32517:131;:::i;:::-;32509:139;;32236:419;;;:::o;32661:172::-;32801:24;32797:1;32789:6;32785:14;32778:48;32661:172;:::o;32839:366::-;32981:3;33002:67;33066:2;33061:3;33002:67;:::i;:::-;32995:74;;33078:93;33167:3;33078:93;:::i;:::-;33196:2;33191:3;33187:12;33180:19;;32839:366;;;:::o;33211:419::-;33377:4;33415:2;33404:9;33400:18;33392:26;;33464:9;33458:4;33454:20;33450:1;33439:9;33435:17;33428:47;33492:131;33618:4;33492:131;:::i;:::-;33484:139;;33211:419;;;:::o;33636:302::-;33776:34;33772:1;33764:6;33760:14;33753:58;33845:34;33840:2;33832:6;33828:15;33821:59;33914:16;33909:2;33901:6;33897:15;33890:41;33636:302;:::o;33944:366::-;34086:3;34107:67;34171:2;34166:3;34107:67;:::i;:::-;34100:74;;34183:93;34272:3;34183:93;:::i;:::-;34301:2;34296:3;34292:12;34285:19;;33944:366;;;:::o;34316:419::-;34482:4;34520:2;34509:9;34505:18;34497:26;;34569:9;34563:4;34559:20;34555:1;34544:9;34540:17;34533:47;34597:131;34723:4;34597:131;:::i;:::-;34589:139;;34316:419;;;:::o;34741:240::-;34881:34;34877:1;34869:6;34865:14;34858:58;34950:23;34945:2;34937:6;34933:15;34926:48;34741:240;:::o;34987:366::-;35129:3;35150:67;35214:2;35209:3;35150:67;:::i;:::-;35143:74;;35226:93;35315:3;35226:93;:::i;:::-;35344:2;35339:3;35335:12;35328:19;;34987:366;;;:::o;35359:419::-;35525:4;35563:2;35552:9;35548:18;35540:26;;35612:9;35606:4;35602:20;35598:1;35587:9;35583:17;35576:47;35640:131;35766:4;35640:131;:::i;:::-;35632:139;;35359:419;;;:::o;35784:169::-;35924:21;35920:1;35912:6;35908:14;35901:45;35784:169;:::o;35959:366::-;36101:3;36122:67;36186:2;36181:3;36122:67;:::i;:::-;36115:74;;36198:93;36287:3;36198:93;:::i;:::-;36316:2;36311:3;36307:12;36300:19;;35959:366;;;:::o;36331:419::-;36497:4;36535:2;36524:9;36520:18;36512:26;;36584:9;36578:4;36574:20;36570:1;36559:9;36555:17;36548:47;36612:131;36738:4;36612:131;:::i;:::-;36604:139;;36331:419;;;:::o;36756:241::-;36896:34;36892:1;36884:6;36880:14;36873:58;36965:24;36960:2;36952:6;36948:15;36941:49;36756:241;:::o;37003:366::-;37145:3;37166:67;37230:2;37225:3;37166:67;:::i;:::-;37159:74;;37242:93;37331:3;37242:93;:::i;:::-;37360:2;37355:3;37351:12;37344:19;;37003:366;;;:::o;37375:419::-;37541:4;37579:2;37568:9;37564:18;37556:26;;37628:9;37622:4;37618:20;37614:1;37603:9;37599:17;37592:47;37656:131;37782:4;37656:131;:::i;:::-;37648:139;;37375:419;;;:::o;37800:191::-;37840:4;37860:20;37878:1;37860:20;:::i;:::-;37855:25;;37894:20;37912:1;37894:20;:::i;:::-;37889:25;;37933:1;37930;37927:8;37924:34;;;37938:18;;:::i;:::-;37924:34;37983:1;37980;37976:9;37968:17;;37800:191;;;;:::o;37997:225::-;38137:34;38133:1;38125:6;38121:14;38114:58;38206:8;38201:2;38193:6;38189:15;38182:33;37997:225;:::o;38228:366::-;38370:3;38391:67;38455:2;38450:3;38391:67;:::i;:::-;38384:74;;38467:93;38556:3;38467:93;:::i;:::-;38585:2;38580:3;38576:12;38569:19;;38228:366;;;:::o;38600:419::-;38766:4;38804:2;38793:9;38789:18;38781:26;;38853:9;38847:4;38843:20;38839:1;38828:9;38824:17;38817:47;38881:131;39007:4;38881:131;:::i;:::-;38873:139;;38600:419;;;:::o;39025:147::-;39126:11;39163:3;39148:18;;39025:147;;;;:::o;39178:114::-;;:::o;39298:398::-;39457:3;39478:83;39559:1;39554:3;39478:83;:::i;:::-;39471:90;;39570:93;39659:3;39570:93;:::i;:::-;39688:1;39683:3;39679:11;39672:18;;39298:398;;;:::o;39702:379::-;39886:3;39908:147;40051:3;39908:147;:::i;:::-;39901:154;;40072:3;40065:10;;39702:379;;;:::o;40087:442::-;40236:4;40274:2;40263:9;40259:18;40251:26;;40287:71;40355:1;40344:9;40340:17;40331:6;40287:71;:::i;:::-;40368:72;40436:2;40425:9;40421:18;40412:6;40368:72;:::i;:::-;40450;40518:2;40507:9;40503:18;40494:6;40450:72;:::i;:::-;40087:442;;;;;;:::o;40535:143::-;40592:5;40623:6;40617:13;40608:22;;40639:33;40666:5;40639:33;:::i;:::-;40535:143;;;;:::o;40684:351::-;40754:6;40803:2;40791:9;40782:7;40778:23;40774:32;40771:119;;;40809:79;;:::i;:::-;40771:119;40929:1;40954:64;41010:7;41001:6;40990:9;40986:22;40954:64;:::i;:::-;40944:74;;40900:128;40684:351;;;;:::o;41041:85::-;41086:7;41115:5;41104:16;;41041:85;;;:::o;41132:158::-;41190:9;41223:61;41241:42;41250:32;41276:5;41250:32;:::i;:::-;41241:42;:::i;:::-;41223:61;:::i;:::-;41210:74;;41132:158;;;:::o;41296:147::-;41391:45;41430:5;41391:45;:::i;:::-;41386:3;41379:58;41296:147;;:::o;41449:114::-;41516:6;41550:5;41544:12;41534:22;;41449:114;;;:::o;41569:184::-;41668:11;41702:6;41697:3;41690:19;41742:4;41737:3;41733:14;41718:29;;41569:184;;;;:::o;41759:132::-;41826:4;41849:3;41841:11;;41879:4;41874:3;41870:14;41862:22;;41759:132;;;:::o;41897:108::-;41974:24;41992:5;41974:24;:::i;:::-;41969:3;41962:37;41897:108;;:::o;42011:179::-;42080:10;42101:46;42143:3;42135:6;42101:46;:::i;:::-;42179:4;42174:3;42170:14;42156:28;;42011:179;;;;:::o;42196:113::-;42266:4;42298;42293:3;42289:14;42281:22;;42196:113;;;:::o;42345:732::-;42464:3;42493:54;42541:5;42493:54;:::i;:::-;42563:86;42642:6;42637:3;42563:86;:::i;:::-;42556:93;;42673:56;42723:5;42673:56;:::i;:::-;42752:7;42783:1;42768:284;42793:6;42790:1;42787:13;42768:284;;;42869:6;42863:13;42896:63;42955:3;42940:13;42896:63;:::i;:::-;42889:70;;42982:60;43035:6;42982:60;:::i;:::-;42972:70;;42828:224;42815:1;42812;42808:9;42803:14;;42768:284;;;42772:14;43068:3;43061:10;;42469:608;;;42345:732;;;;:::o;43083:831::-;43346:4;43384:3;43373:9;43369:19;43361:27;;43398:71;43466:1;43455:9;43451:17;43442:6;43398:71;:::i;:::-;43479:80;43555:2;43544:9;43540:18;43531:6;43479:80;:::i;:::-;43606:9;43600:4;43596:20;43591:2;43580:9;43576:18;43569:48;43634:108;43737:4;43728:6;43634:108;:::i;:::-;43626:116;;43752:72;43820:2;43809:9;43805:18;43796:6;43752:72;:::i;:::-;43834:73;43902:3;43891:9;43887:19;43878:6;43834:73;:::i;:::-;43083:831;;;;;;;;:::o;43920:807::-;44169:4;44207:3;44196:9;44192:19;44184:27;;44221:71;44289:1;44278:9;44274:17;44265:6;44221:71;:::i;:::-;44302:72;44370:2;44359:9;44355:18;44346:6;44302:72;:::i;:::-;44384:80;44460:2;44449:9;44445:18;44436:6;44384:80;:::i;:::-;44474;44550:2;44539:9;44535:18;44526:6;44474:80;:::i;:::-;44564:73;44632:3;44621:9;44617:19;44608:6;44564:73;:::i;:::-;44647;44715:3;44704:9;44700:19;44691:6;44647:73;:::i;:::-;43920:807;;;;;;;;;:::o;44733:663::-;44821:6;44829;44837;44886:2;44874:9;44865:7;44861:23;44857:32;44854:119;;;44892:79;;:::i;:::-;44854:119;45012:1;45037:64;45093:7;45084:6;45073:9;45069:22;45037:64;:::i;:::-;45027:74;;44983:128;45150:2;45176:64;45232:7;45223:6;45212:9;45208:22;45176:64;:::i;:::-;45166:74;;45121:129;45289:2;45315:64;45371:7;45362:6;45351:9;45347:22;45315:64;:::i;:::-;45305:74;;45260:129;44733:663;;;;;:::o

Swarm Source

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