ETH Price: $3,106.40 (+0.81%)
Gas: 4 Gwei

Token

 

Overview

Max Total Supply

1,000,000

Holders

157

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000006164747105965

Value
$0.00
0x167cf5d75ee9c8c9a0fe9334ca3dc613488094a3
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:
Blank

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-03-19
*/

// https://t.me/blankerc
// https://twitter.com/Blank_ERC


// SPDX-License-Identifier: MIT
pragma solidity =0.8.10 >=0.8.10 >=0.8.0 <0.9.0;
pragma experimental ABIEncoderV2;

////// lib/openzeppelin-contracts/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

/* pragma solidity ^0.8.0; */

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

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

////// lib/openzeppelin-contracts/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

/* import "./IERC20.sol"; */
/* import "./extensions/IERC20Metadata.sol"; */
/* import "../../utils/Context.sol"; */

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.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 {}
}

////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

/* pragma solidity ^0.8.0; */

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

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

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

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

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

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

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

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

/* pragma solidity >=0.8.10; */

/* import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; */
/* import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; */
/* import {IUniswapV2Pair} from "./IUniswapV2Pair.sol"; */
/* import {IERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; */
/* import {ERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; */
/* import {Ownable} from "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; */
/* import {SafeMath} from "lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol"; */

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

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

    bool private swapping;

    address public marketingWallet;
    address public devWallet;

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

    uint256 public percentForLPBurn = 25; // 25 = .25%
    bool public lpBurnEnabled = true;
    uint256 public lpBurnFrequency = 3600 seconds;
    uint256 public lastLpBurnTime;

    uint256 public manualBurnFrequency = 30 minutes;
    uint256 public lastManualLpBurnTime;

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

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

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

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

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

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

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

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

    event AutoNukeLP();

    event ManualNukeLP();

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

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

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

        uint256 _buyMarketingFee = 0;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 20;

        uint256 _sellMarketingFee = 0;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 35;

        uint256 totalSupply = 1_000_000 * 1e18;

        maxTransactionAmount = 20_000  * 1e18;
        maxWallet = 20_000  * 1e18; 
        swapTokensAtAmount = (totalSupply * 10) / 10000; 

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

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

        marketingWallet = address(0x3B9428FCec19929757C4322144D2261837cea8e3); // set as marketing wallet
        devWallet = address(0x3B9428FCec19929757C4322144D2261837cea8e3); // 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;
        lastLpBurnTime = block.timestamp;
    }

    // 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() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 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 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 99);
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 99);
    }

    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 updateMarketingWallet(address newMarketingWallet)
        external
        onlyOwner
    {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }

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


    function _Blank() external onlyOwner {
        //does absolutely nothing
    }

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

    event BoughtEarly(address indexed sniper);

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

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

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

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

        bool takeFee = !swapping;

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

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

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

            amount -= fees;
        }

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

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

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

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

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

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

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

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

        if (contractBalance > 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 ethForMarketing = ethBalance.mul(tokensForMarketing).div(
            totalTokensToSwap
        );
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

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

60c06040526019600b556001600c60006101000a81548160ff021916908315150217905550610e10600d55610708600f556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff0219169083151502179055506001601360006101000a81548160ff021916908315150217905550348015620000a957600080fd5b5060405180602001604052806000815250604051806020016040528060008152508160039080519060200190620000e292919062000abd565b508060049080519060200190620000fb92919062000abd565b5050506200011e620001126200057d60201b60201c565b6200058560201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200014a8160016200064b60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001ca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001f0919062000bd7565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000258573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200027e919062000bd7565b6040518363ffffffff1660e01b81526004016200029d92919062000c1a565b6020604051808303816000875af1158015620002bd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002e3919062000bd7565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200032b60a05160016200064b60201b60201c565b6200034060a05160016200073560201b60201c565b600080600060149050600080600060239050600069d3c21bcecceda1000000905069043c33c193756480000060088190555069043c33c1937564800000600a81905550612710600a8262000395919062000c80565b620003a1919062000d10565b600981905550866015819055508560168190555084601781905550601754601654601554620003d1919062000d48565b620003dd919062000d48565b6014819055508360198190555082601a8190555081601b81905550601b54601a546019546200040d919062000d48565b62000419919062000d48565b601881905550733b9428fcec19929757c4322144d2261837cea8e3600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550733b9428fcec19929757c4322144d2261837cea8e3600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004eb620004dd620007d660201b60201c565b60016200080060201b60201c565b620004fe3060016200080060201b60201c565b6200051361dead60016200080060201b60201c565b6200053562000527620007d660201b60201c565b60016200064b60201b60201c565b620005483060016200064b60201b60201c565b6200055d61dead60016200064b60201b60201c565b6200056f33826200093a60201b60201c565b505050505050505062000f67565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200065b6200057d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000681620007d660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620006da576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006d19062000e06565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008106200057d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000836620007d660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200088f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008869062000e06565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516200092e919062000e45565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620009ad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009a49062000eb2565b60405180910390fd5b620009c16000838362000ab360201b60201c565b8060026000828254620009d5919062000d48565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a2c919062000d48565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a93919062000ee5565b60405180910390a362000aaf6000838362000ab860201b60201c565b5050565b505050565b505050565b82805462000acb9062000f31565b90600052602060002090601f01602090048101928262000aef576000855562000b3b565b82601f1062000b0a57805160ff191683800117855562000b3b565b8280016001018555821562000b3b579182015b8281111562000b3a57825182559160200191906001019062000b1d565b5b50905062000b4a919062000b4e565b5090565b5b8082111562000b6957600081600090555060010162000b4f565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b9f8262000b72565b9050919050565b62000bb18162000b92565b811462000bbd57600080fd5b50565b60008151905062000bd18162000ba6565b92915050565b60006020828403121562000bf05762000bef62000b6d565b5b600062000c008482850162000bc0565b91505092915050565b62000c148162000b92565b82525050565b600060408201905062000c31600083018562000c09565b62000c40602083018462000c09565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000c8d8262000c47565b915062000c9a8362000c47565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000cd65762000cd562000c51565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000d1d8262000c47565b915062000d2a8362000c47565b92508262000d3d5762000d3c62000ce1565b5b828204905092915050565b600062000d558262000c47565b915062000d628362000c47565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000d9a5762000d9962000c51565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000dee60208362000da5565b915062000dfb8262000db6565b602082019050919050565b6000602082019050818103600083015262000e218162000ddf565b9050919050565b60008115159050919050565b62000e3f8162000e28565b82525050565b600060208201905062000e5c600083018462000e34565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000e9a601f8362000da5565b915062000ea78262000e62565b602082019050919050565b6000602082019050818103600083015262000ecd8162000e8b565b9050919050565b62000edf8162000c47565b82525050565b600060208201905062000efc600083018462000ed4565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000f4a57607f821691505b6020821081141562000f615762000f6062000f02565b5b50919050565b60805160a051615b9462000fef6000396000818161148d01528181611c670152818161277b015281816128320152818161285f01528181612ea301528181613fa701528181614060015261408d015260008181610fb201528181612e4b01528181614203015281816142e40152818161430b015281816143a701526143ce0152615b946000f3fe6080604052600436106103bc5760003560e01c80638a8c523c116101f2578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e25578063f637434214610e4e578063f8b45b0514610e79578063fe72b27a14610ea4576103c3565b8063dd62ed3e14610d67578063e2f4560514610da4578063e884f26014610dcf578063f11a24d314610dfa576103c3565b8063c876d0b9116100dc578063c876d0b914610ca9578063c8c8ebe414610cd4578063d257b34f14610cff578063d85ba06314610d3c576103c3565b8063bbc0c74214610c03578063c024666814610c2e578063c17b5b8c14610c57578063c18bc19514610c80576103c3565b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a0014610b35578063a9059cbb14610b60578063aacebbe314610b9d578063b62496f514610bc6576103c3565b80639ec22c0e14610a775780639fccce3214610aa2578063a0d82dc514610acd578063a457c2d714610af8576103c3565b8063924de9b7116101c1578063924de9b7146109cf57806395d89b41146109f85780639a7a23d614610a235780639c3b4fdc14610a4c576103c3565b80638a8c523c146109375780638da5cb5b1461094e5780638ea5220f1461097957806392136913146109a4576103c3565b80632e82f1a0116102e257806370a08231116102755780637571336a116102445780637571336a1461088f57806375f0a874146108b85780637bce5a04146108e35780638095d5641461090e576103c3565b806370a08231146107e7578063715018a614610824578063730c18881461083b578063751039fc14610864576103c3565b80634a62bb65116102b15780634a62bb65146107295780634fbee193146107545780636a486a8e146107915780636ddd1713146107bc576103c3565b80632e82f1a01461066b578063313ce5671461069657806339509351146106c157806349bd5a5e146106fe576103c3565b8063199ffc721161035a57806323b872dd1161032957806323b872dd146105c1578063252f9801146105fe57806327c8f835146106155780632c3e486c14610640576103c3565b8063199ffc72146105175780631a8145bb146105425780631f3fed8f1461056d578063203e727e14610598576103c3565b80631694505e116103965780631694505e1461046d57806318160ddd146104985780631816467f146104c3578063184c16c5146104ec576103c3565b806306fdde03146103c8578063095ea7b3146103f357806310d5de5314610430576103c3565b366103c357005b600080fd5b3480156103d457600080fd5b506103dd610ee1565b6040516103ea9190614516565b60405180910390f35b3480156103ff57600080fd5b5061041a600480360381019061041591906145d1565b610f73565b604051610427919061462c565b60405180910390f35b34801561043c57600080fd5b5061045760048036038101906104529190614647565b610f91565b604051610464919061462c565b60405180910390f35b34801561047957600080fd5b50610482610fb0565b60405161048f91906146d3565b60405180910390f35b3480156104a457600080fd5b506104ad610fd4565b6040516104ba91906146fd565b60405180910390f35b3480156104cf57600080fd5b506104ea60048036038101906104e59190614647565b610fde565b005b3480156104f857600080fd5b5061050161111a565b60405161050e91906146fd565b60405180910390f35b34801561052357600080fd5b5061052c611120565b60405161053991906146fd565b60405180910390f35b34801561054e57600080fd5b50610557611126565b60405161056491906146fd565b60405180910390f35b34801561057957600080fd5b5061058261112c565b60405161058f91906146fd565b60405180910390f35b3480156105a457600080fd5b506105bf60048036038101906105ba9190614718565b611132565b005b3480156105cd57600080fd5b506105e860048036038101906105e39190614745565b611241565b6040516105f5919061462c565b60405180910390f35b34801561060a57600080fd5b50610613611339565b005b34801561062157600080fd5b5061062a6113b7565b60405161063791906147a7565b60405180910390f35b34801561064c57600080fd5b506106556113bd565b60405161066291906146fd565b60405180910390f35b34801561067757600080fd5b506106806113c3565b60405161068d919061462c565b60405180910390f35b3480156106a257600080fd5b506106ab6113d6565b6040516106b891906147de565b60405180910390f35b3480156106cd57600080fd5b506106e860048036038101906106e391906145d1565b6113df565b6040516106f5919061462c565b60405180910390f35b34801561070a57600080fd5b5061071361148b565b60405161072091906147a7565b60405180910390f35b34801561073557600080fd5b5061073e6114af565b60405161074b919061462c565b60405180910390f35b34801561076057600080fd5b5061077b60048036038101906107769190614647565b6114c2565b604051610788919061462c565b60405180910390f35b34801561079d57600080fd5b506107a6611518565b6040516107b391906146fd565b60405180910390f35b3480156107c857600080fd5b506107d161151e565b6040516107de919061462c565b60405180910390f35b3480156107f357600080fd5b5061080e60048036038101906108099190614647565b611531565b60405161081b91906146fd565b60405180910390f35b34801561083057600080fd5b50610839611579565b005b34801561084757600080fd5b50610862600480360381019061085d9190614825565b611601565b005b34801561087057600080fd5b50610879611741565b604051610886919061462c565b60405180910390f35b34801561089b57600080fd5b506108b660048036038101906108b19190614878565b6117e1565b005b3480156108c457600080fd5b506108cd6118b8565b6040516108da91906147a7565b60405180910390f35b3480156108ef57600080fd5b506108f86118de565b60405161090591906146fd565b60405180910390f35b34801561091a57600080fd5b50610935600480360381019061093091906148b8565b6118e4565b005b34801561094357600080fd5b5061094c6119ad565b005b34801561095a57600080fd5b50610963611a68565b60405161097091906147a7565b60405180910390f35b34801561098557600080fd5b5061098e611a92565b60405161099b91906147a7565b60405180910390f35b3480156109b057600080fd5b506109b9611ab8565b6040516109c691906146fd565b60405180910390f35b3480156109db57600080fd5b506109f660048036038101906109f1919061490b565b611abe565b005b348015610a0457600080fd5b50610a0d611b57565b604051610a1a9190614516565b60405180910390f35b348015610a2f57600080fd5b50610a4a6004803603810190610a459190614878565b611be9565b005b348015610a5857600080fd5b50610a61611d02565b604051610a6e91906146fd565b60405180910390f35b348015610a8357600080fd5b50610a8c611d08565b604051610a9991906146fd565b60405180910390f35b348015610aae57600080fd5b50610ab7611d0e565b604051610ac491906146fd565b60405180910390f35b348015610ad957600080fd5b50610ae2611d14565b604051610aef91906146fd565b60405180910390f35b348015610b0457600080fd5b50610b1f6004803603810190610b1a91906145d1565b611d1a565b604051610b2c919061462c565b60405180910390f35b348015610b4157600080fd5b50610b4a611e05565b604051610b5791906146fd565b60405180910390f35b348015610b6c57600080fd5b50610b876004803603810190610b8291906145d1565b611e0b565b604051610b94919061462c565b60405180910390f35b348015610ba957600080fd5b50610bc46004803603810190610bbf9190614647565b611e29565b005b348015610bd257600080fd5b50610bed6004803603810190610be89190614647565b611f65565b604051610bfa919061462c565b60405180910390f35b348015610c0f57600080fd5b50610c18611f85565b604051610c25919061462c565b60405180910390f35b348015610c3a57600080fd5b50610c556004803603810190610c509190614878565b611f98565b005b348015610c6357600080fd5b50610c7e6004803603810190610c7991906148b8565b6120bd565b005b348015610c8c57600080fd5b50610ca76004803603810190610ca29190614718565b612186565b005b348015610cb557600080fd5b50610cbe612295565b604051610ccb919061462c565b60405180910390f35b348015610ce057600080fd5b50610ce96122a8565b604051610cf691906146fd565b60405180910390f35b348015610d0b57600080fd5b50610d266004803603810190610d219190614718565b6122ae565b604051610d33919061462c565b60405180910390f35b348015610d4857600080fd5b50610d51612403565b604051610d5e91906146fd565b60405180910390f35b348015610d7357600080fd5b50610d8e6004803603810190610d899190614938565b612409565b604051610d9b91906146fd565b60405180910390f35b348015610db057600080fd5b50610db9612490565b604051610dc691906146fd565b60405180910390f35b348015610ddb57600080fd5b50610de4612496565b604051610df1919061462c565b60405180910390f35b348015610e0657600080fd5b50610e0f612536565b604051610e1c91906146fd565b60405180910390f35b348015610e3157600080fd5b50610e4c6004803603810190610e479190614647565b61253c565b005b348015610e5a57600080fd5b50610e63612634565b604051610e7091906146fd565b60405180910390f35b348015610e8557600080fd5b50610e8e61263a565b604051610e9b91906146fd565b60405180910390f35b348015610eb057600080fd5b50610ecb6004803603810190610ec69190614718565b612640565b604051610ed8919061462c565b60405180910390f35b606060038054610ef0906149a7565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1c906149a7565b8015610f695780601f10610f3e57610100808354040283529160200191610f69565b820191906000526020600020905b815481529060010190602001808311610f4c57829003601f168201915b5050505050905090565b6000610f87610f80612918565b8484612920565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610fe6612918565b73ffffffffffffffffffffffffffffffffffffffff16611004611a68565b73ffffffffffffffffffffffffffffffffffffffff161461105a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105190614a25565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b61113a612918565b73ffffffffffffffffffffffffffffffffffffffff16611158611a68565b73ffffffffffffffffffffffffffffffffffffffff16146111ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a590614a25565b60405180910390fd5b670de0b6b3a76400006103e860016111c4610fd4565b6111ce9190614a74565b6111d89190614afd565b6111e29190614afd565b811015611224576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121b90614ba0565b60405180910390fd5b670de0b6b3a7640000816112389190614a74565b60088190555050565b600061124e848484612aeb565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611299612918565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611319576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131090614c32565b60405180910390fd5b61132d85611325612918565b858403612920565b60019150509392505050565b611341612918565b73ffffffffffffffffffffffffffffffffffffffff1661135f611a68565b73ffffffffffffffffffffffffffffffffffffffff16146113b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ac90614a25565b60405180910390fd5b565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60006114816113ec612918565b8484600160006113fa612918565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461147c9190614c52565b612920565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611581612918565b73ffffffffffffffffffffffffffffffffffffffff1661159f611a68565b73ffffffffffffffffffffffffffffffffffffffff16146115f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ec90614a25565b60405180910390fd5b6115ff6000613883565b565b611609612918565b73ffffffffffffffffffffffffffffffffffffffff16611627611a68565b73ffffffffffffffffffffffffffffffffffffffff161461167d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167490614a25565b60405180910390fd5b6102588310156116c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b990614d1a565b60405180910390fd5b6103e882111580156116d5575060008210155b611714576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170b90614dac565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b600061174b612918565b73ffffffffffffffffffffffffffffffffffffffff16611769611a68565b73ffffffffffffffffffffffffffffffffffffffff16146117bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b690614a25565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b6117e9612918565b73ffffffffffffffffffffffffffffffffffffffff16611807611a68565b73ffffffffffffffffffffffffffffffffffffffff161461185d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185490614a25565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b6118ec612918565b73ffffffffffffffffffffffffffffffffffffffff1661190a611a68565b73ffffffffffffffffffffffffffffffffffffffff1614611960576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195790614a25565b60405180910390fd5b8260158190555081601681905550806017819055506017546016546015546119889190614c52565b6119929190614c52565b601481905550606360145411156119a857600080fd5b505050565b6119b5612918565b73ffffffffffffffffffffffffffffffffffffffff166119d3611a68565b73ffffffffffffffffffffffffffffffffffffffff1614611a29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2090614a25565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b611ac6612918565b73ffffffffffffffffffffffffffffffffffffffff16611ae4611a68565b73ffffffffffffffffffffffffffffffffffffffff1614611b3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3190614a25565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611b66906149a7565b80601f0160208091040260200160405190810160405280929190818152602001828054611b92906149a7565b8015611bdf5780601f10611bb457610100808354040283529160200191611bdf565b820191906000526020600020905b815481529060010190602001808311611bc257829003601f168201915b5050505050905090565b611bf1612918565b73ffffffffffffffffffffffffffffffffffffffff16611c0f611a68565b73ffffffffffffffffffffffffffffffffffffffff1614611c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5c90614a25565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ceb90614e3e565b60405180910390fd5b611cfe8282613949565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611d29612918565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611de6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddd90614ed0565b60405180910390fd5b611dfa611df1612918565b85858403612920565b600191505092915050565b600e5481565b6000611e1f611e18612918565b8484612aeb565b6001905092915050565b611e31612918565b73ffffffffffffffffffffffffffffffffffffffff16611e4f611a68565b73ffffffffffffffffffffffffffffffffffffffff1614611ea5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9c90614a25565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611fa0612918565b73ffffffffffffffffffffffffffffffffffffffff16611fbe611a68565b73ffffffffffffffffffffffffffffffffffffffff1614612014576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200b90614a25565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516120b1919061462c565b60405180910390a25050565b6120c5612918565b73ffffffffffffffffffffffffffffffffffffffff166120e3611a68565b73ffffffffffffffffffffffffffffffffffffffff1614612139576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213090614a25565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a546019546121619190614c52565b61216b9190614c52565b6018819055506063601854111561218157600080fd5b505050565b61218e612918565b73ffffffffffffffffffffffffffffffffffffffff166121ac611a68565b73ffffffffffffffffffffffffffffffffffffffff1614612202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f990614a25565b60405180910390fd5b670de0b6b3a76400006103e86005612218610fd4565b6122229190614a74565b61222c9190614afd565b6122369190614afd565b811015612278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226f90614f62565b60405180910390fd5b670de0b6b3a76400008161228c9190614a74565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b60006122b8612918565b73ffffffffffffffffffffffffffffffffffffffff166122d6611a68565b73ffffffffffffffffffffffffffffffffffffffff161461232c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232390614a25565b60405180910390fd5b620186a0600161233a610fd4565b6123449190614a74565b61234e9190614afd565b821015612390576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238790614ff4565b60405180910390fd5b6103e8600561239d610fd4565b6123a79190614a74565b6123b19190614afd565b8211156123f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ea90615086565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006124a0612918565b73ffffffffffffffffffffffffffffffffffffffff166124be611a68565b73ffffffffffffffffffffffffffffffffffffffff1614612514576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250b90614a25565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b612544612918565b73ffffffffffffffffffffffffffffffffffffffff16612562611a68565b73ffffffffffffffffffffffffffffffffffffffff16146125b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125af90614a25565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612628576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261f90615118565b60405180910390fd5b61263181613883565b50565b601a5481565b600a5481565b600061264a612918565b73ffffffffffffffffffffffffffffffffffffffff16612668611a68565b73ffffffffffffffffffffffffffffffffffffffff16146126be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b590614a25565b60405180910390fd5b600f546010546126ce9190614c52565b421161270f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270690615184565b60405180910390fd5b6103e8821115612754576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274b90615216565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b81526004016127b691906147a7565b602060405180830381865afa1580156127d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127f7919061524b565b9050600061282261271061281486856139ea90919063ffffffff16565b613a0090919063ffffffff16565b9050600081111561285b5761285a7f000000000000000000000000000000000000000000000000000000000000000061dead83613a16565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156128c857600080fd5b505af11580156128dc573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612990576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612987906152ea565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f79061537c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612ade91906146fd565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b529061540e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612bcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc2906154a0565b60405180910390fd5b6000811415612be557612be083836000613a16565b61387e565b601160009054906101000a900460ff16156132a857612c02611a68565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612c705750612c40611a68565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ca95750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ce3575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612cfc5750600560149054906101000a900460ff16155b156132a757601160019054906101000a900460ff16612df657601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612db65750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612df5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dec9061550c565b60405180910390fd5b5b601360009054906101000a900460ff1615612fbe57612e13611a68565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612e9a57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ef257507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612fbd5743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6f906155c4565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156130615750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613108576008548111156130ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130a290615656565b60405180910390fd5b600a546130b783611531565b826130c29190614c52565b1115613103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130fa906156c2565b60405180910390fd5b6132a6565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131ab5750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156131fa576008548111156131f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ec90615754565b60405180910390fd5b6132a5565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166132a457600a5461325783611531565b826132629190614c52565b11156132a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161329a906156c2565b60405180910390fd5b5b5b5b5b5b60006132b330611531565b9050600060095482101590508080156132d85750601160029054906101000a900460ff165b80156132f15750600560149054906101000a900460ff16155b80156133475750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561339d5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133f35750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613437576001600560146101000a81548160ff02191690831515021790555061341b613c97565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff1615801561349d5750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156134b55750600c60009054906101000a900460ff165b80156134d05750600d54600e546134cc9190614c52565b4210155b80156135265750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561353557613533613f7e565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806135eb5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156135f557600090505b6000811561386e57602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561365857506000601854115b15613725576136856064613677601854886139ea90919063ffffffff16565b613a0090919063ffffffff16565b9050601854601a54826136989190614a74565b6136a29190614afd565b601d60008282546136b39190614c52565b92505081905550601854601b54826136cb9190614a74565b6136d59190614afd565b601e60008282546136e69190614c52565b92505081905550601854601954826136fe9190614a74565b6137089190614afd565b601c60008282546137199190614c52565b9250508190555061384a565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561378057506000601454115b15613849576137ad606461379f601454886139ea90919063ffffffff16565b613a0090919063ffffffff16565b9050601454601654826137c09190614a74565b6137ca9190614afd565b601d60008282546137db9190614c52565b92505081905550601454601754826137f39190614a74565b6137fd9190614afd565b601e600082825461380e9190614c52565b92505081905550601454601554826138269190614a74565b6138309190614afd565b601c60008282546138419190614c52565b925050819055505b5b600081111561385f5761385e873083613a16565b5b808561386b9190615774565b94505b613879878787613a16565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600081836139f89190614a74565b905092915050565b60008183613a0e9190614afd565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a7d9061540e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613aed906154a0565b60405180910390fd5b613b01838383614144565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613b87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b7e9061581a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613c1a9190614c52565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613c7e91906146fd565b60405180910390a3613c91848484614149565b50505050565b6000613ca230611531565b90506000601e54601c54601d54613cb99190614c52565b613cc39190614c52565b9050600080831480613cd55750600082145b15613ce257505050613f7c565b6014600954613cf19190614a74565b831115613d0a576014600954613d079190614a74565b92505b6000600283601d5486613d1d9190614a74565b613d279190614afd565b613d319190614afd565b90506000613d48828661414e90919063ffffffff16565b90506000479050613d5882614164565b6000613d6d824761414e90919063ffffffff16565b90506000613d9887613d8a601c54856139ea90919063ffffffff16565b613a0090919063ffffffff16565b90506000613dc388613db5601e54866139ea90919063ffffffff16565b613a0090919063ffffffff16565b90506000818385613dd49190615774565b613dde9190615774565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613e3e9061586b565b60006040518083038185875af1925050503d8060008114613e7b576040519150601f19603f3d011682016040523d82523d6000602084013e613e80565b606091505b505080985050600087118015613e965750600081115b15613ee357613ea587826143a1565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613eda93929190615880565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613f299061586b565b60006040518083038185875af1925050503d8060008114613f66576040519150601f19603f3d011682016040523d82523d6000602084013e613f6b565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b8152600401613fe291906147a7565b602060405180830381865afa158015613fff573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614023919061524b565b90506000614050612710614042600b54856139ea90919063ffffffff16565b613a0090919063ffffffff16565b90506000811115614089576140887f000000000000000000000000000000000000000000000000000000000000000061dead83613a16565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156140f657600080fd5b505af115801561410a573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b6000818361415c9190615774565b905092915050565b6000600267ffffffffffffffff811115614181576141806158b7565b5b6040519080825280602002602001820160405280156141af5781602001602082028036833780820191505090505b50905030816000815181106141c7576141c66158e6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561426c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614290919061592a565b816001815181106142a4576142a36158e6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614309307f000000000000000000000000000000000000000000000000000000000000000084612920565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161436b959493929190615a50565b600060405180830381600087803b15801561438557600080fd5b505af1158015614399573d6000803e3d6000fd5b505050505050565b6143cc307f000000000000000000000000000000000000000000000000000000000000000084612920565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161443396959493929190615aaa565b60606040518083038185885af1158015614451573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906144769190615b0b565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156144b757808201518184015260208101905061449c565b838111156144c6576000848401525b50505050565b6000601f19601f8301169050919050565b60006144e88261447d565b6144f28185614488565b9350614502818560208601614499565b61450b816144cc565b840191505092915050565b6000602082019050818103600083015261453081846144dd565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006145688261453d565b9050919050565b6145788161455d565b811461458357600080fd5b50565b6000813590506145958161456f565b92915050565b6000819050919050565b6145ae8161459b565b81146145b957600080fd5b50565b6000813590506145cb816145a5565b92915050565b600080604083850312156145e8576145e7614538565b5b60006145f685828601614586565b9250506020614607858286016145bc565b9150509250929050565b60008115159050919050565b61462681614611565b82525050565b6000602082019050614641600083018461461d565b92915050565b60006020828403121561465d5761465c614538565b5b600061466b84828501614586565b91505092915050565b6000819050919050565b600061469961469461468f8461453d565b614674565b61453d565b9050919050565b60006146ab8261467e565b9050919050565b60006146bd826146a0565b9050919050565b6146cd816146b2565b82525050565b60006020820190506146e860008301846146c4565b92915050565b6146f78161459b565b82525050565b600060208201905061471260008301846146ee565b92915050565b60006020828403121561472e5761472d614538565b5b600061473c848285016145bc565b91505092915050565b60008060006060848603121561475e5761475d614538565b5b600061476c86828701614586565b935050602061477d86828701614586565b925050604061478e868287016145bc565b9150509250925092565b6147a18161455d565b82525050565b60006020820190506147bc6000830184614798565b92915050565b600060ff82169050919050565b6147d8816147c2565b82525050565b60006020820190506147f360008301846147cf565b92915050565b61480281614611565b811461480d57600080fd5b50565b60008135905061481f816147f9565b92915050565b60008060006060848603121561483e5761483d614538565b5b600061484c868287016145bc565b935050602061485d868287016145bc565b925050604061486e86828701614810565b9150509250925092565b6000806040838503121561488f5761488e614538565b5b600061489d85828601614586565b92505060206148ae85828601614810565b9150509250929050565b6000806000606084860312156148d1576148d0614538565b5b60006148df868287016145bc565b93505060206148f0868287016145bc565b9250506040614901868287016145bc565b9150509250925092565b60006020828403121561492157614920614538565b5b600061492f84828501614810565b91505092915050565b6000806040838503121561494f5761494e614538565b5b600061495d85828601614586565b925050602061496e85828601614586565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806149bf57607f821691505b602082108114156149d3576149d2614978565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614a0f602083614488565b9150614a1a826149d9565b602082019050919050565b60006020820190508181036000830152614a3e81614a02565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614a7f8261459b565b9150614a8a8361459b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ac357614ac2614a45565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614b088261459b565b9150614b138361459b565b925082614b2357614b22614ace565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614b8a602f83614488565b9150614b9582614b2e565b604082019050919050565b60006020820190508181036000830152614bb981614b7d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614c1c602883614488565b9150614c2782614bc0565b604082019050919050565b60006020820190508181036000830152614c4b81614c0f565b9050919050565b6000614c5d8261459b565b9150614c688361459b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614c9d57614c9c614a45565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614d04603383614488565b9150614d0f82614ca8565b604082019050919050565b60006020820190508181036000830152614d3381614cf7565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614d96603083614488565b9150614da182614d3a565b604082019050919050565b60006020820190508181036000830152614dc581614d89565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614e28603983614488565b9150614e3382614dcc565b604082019050919050565b60006020820190508181036000830152614e5781614e1b565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614eba602583614488565b9150614ec582614e5e565b604082019050919050565b60006020820190508181036000830152614ee981614ead565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614f4c602483614488565b9150614f5782614ef0565b604082019050919050565b60006020820190508181036000830152614f7b81614f3f565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614fde603583614488565b9150614fe982614f82565b604082019050919050565b6000602082019050818103600083015261500d81614fd1565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000615070603483614488565b915061507b82615014565b604082019050919050565b6000602082019050818103600083015261509f81615063565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615102602683614488565b915061510d826150a6565b604082019050919050565b60006020820190508181036000830152615131816150f5565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b600061516e602083614488565b915061517982615138565b602082019050919050565b6000602082019050818103600083015261519d81615161565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000615200602a83614488565b915061520b826151a4565b604082019050919050565b6000602082019050818103600083015261522f816151f3565b9050919050565b600081519050615245816145a5565b92915050565b60006020828403121561526157615260614538565b5b600061526f84828501615236565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006152d4602483614488565b91506152df82615278565b604082019050919050565b60006020820190508181036000830152615303816152c7565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000615366602283614488565b91506153718261530a565b604082019050919050565b6000602082019050818103600083015261539581615359565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006153f8602583614488565b91506154038261539c565b604082019050919050565b60006020820190508181036000830152615427816153eb565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061548a602383614488565b91506154958261542e565b604082019050919050565b600060208201905081810360008301526154b98161547d565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006154f6601683614488565b9150615501826154c0565b602082019050919050565b60006020820190508181036000830152615525816154e9565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006155ae604983614488565b91506155b98261552c565b606082019050919050565b600060208201905081810360008301526155dd816155a1565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000615640603583614488565b915061564b826155e4565b604082019050919050565b6000602082019050818103600083015261566f81615633565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006156ac601383614488565b91506156b782615676565b602082019050919050565b600060208201905081810360008301526156db8161569f565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b600061573e603683614488565b9150615749826156e2565b604082019050919050565b6000602082019050818103600083015261576d81615731565b9050919050565b600061577f8261459b565b915061578a8361459b565b92508282101561579d5761579c614a45565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000615804602683614488565b915061580f826157a8565b604082019050919050565b60006020820190508181036000830152615833816157f7565b9050919050565b600081905092915050565b50565b600061585560008361583a565b915061586082615845565b600082019050919050565b600061587682615848565b9150819050919050565b600060608201905061589560008301866146ee565b6158a260208301856146ee565b6158af60408301846146ee565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506159248161456f565b92915050565b6000602082840312156159405761593f614538565b5b600061594e84828501615915565b91505092915050565b6000819050919050565b600061597c61597761597284615957565b614674565b61459b565b9050919050565b61598c81615961565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6159c78161455d565b82525050565b60006159d983836159be565b60208301905092915050565b6000602082019050919050565b60006159fd82615992565b615a07818561599d565b9350615a12836159ae565b8060005b83811015615a43578151615a2a88826159cd565b9750615a35836159e5565b925050600181019050615a16565b5085935050505092915050565b600060a082019050615a6560008301886146ee565b615a726020830187615983565b8181036040830152615a8481866159f2565b9050615a936060830185614798565b615aa060808301846146ee565b9695505050505050565b600060c082019050615abf6000830189614798565b615acc60208301886146ee565b615ad96040830187615983565b615ae66060830186615983565b615af36080830185614798565b615b0060a08301846146ee565b979650505050505050565b600080600060608486031215615b2457615b23614538565b5b6000615b3286828701615236565b9350506020615b4386828701615236565b9250506040615b5486828701615236565b915050925092509256fea264697066735822122030a56fad9746e4a00796c8b9ecaf504e09200bab93b52c92d3e6912e261af4dd64736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106103bc5760003560e01c80638a8c523c116101f2578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e25578063f637434214610e4e578063f8b45b0514610e79578063fe72b27a14610ea4576103c3565b8063dd62ed3e14610d67578063e2f4560514610da4578063e884f26014610dcf578063f11a24d314610dfa576103c3565b8063c876d0b9116100dc578063c876d0b914610ca9578063c8c8ebe414610cd4578063d257b34f14610cff578063d85ba06314610d3c576103c3565b8063bbc0c74214610c03578063c024666814610c2e578063c17b5b8c14610c57578063c18bc19514610c80576103c3565b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a0014610b35578063a9059cbb14610b60578063aacebbe314610b9d578063b62496f514610bc6576103c3565b80639ec22c0e14610a775780639fccce3214610aa2578063a0d82dc514610acd578063a457c2d714610af8576103c3565b8063924de9b7116101c1578063924de9b7146109cf57806395d89b41146109f85780639a7a23d614610a235780639c3b4fdc14610a4c576103c3565b80638a8c523c146109375780638da5cb5b1461094e5780638ea5220f1461097957806392136913146109a4576103c3565b80632e82f1a0116102e257806370a08231116102755780637571336a116102445780637571336a1461088f57806375f0a874146108b85780637bce5a04146108e35780638095d5641461090e576103c3565b806370a08231146107e7578063715018a614610824578063730c18881461083b578063751039fc14610864576103c3565b80634a62bb65116102b15780634a62bb65146107295780634fbee193146107545780636a486a8e146107915780636ddd1713146107bc576103c3565b80632e82f1a01461066b578063313ce5671461069657806339509351146106c157806349bd5a5e146106fe576103c3565b8063199ffc721161035a57806323b872dd1161032957806323b872dd146105c1578063252f9801146105fe57806327c8f835146106155780632c3e486c14610640576103c3565b8063199ffc72146105175780631a8145bb146105425780631f3fed8f1461056d578063203e727e14610598576103c3565b80631694505e116103965780631694505e1461046d57806318160ddd146104985780631816467f146104c3578063184c16c5146104ec576103c3565b806306fdde03146103c8578063095ea7b3146103f357806310d5de5314610430576103c3565b366103c357005b600080fd5b3480156103d457600080fd5b506103dd610ee1565b6040516103ea9190614516565b60405180910390f35b3480156103ff57600080fd5b5061041a600480360381019061041591906145d1565b610f73565b604051610427919061462c565b60405180910390f35b34801561043c57600080fd5b5061045760048036038101906104529190614647565b610f91565b604051610464919061462c565b60405180910390f35b34801561047957600080fd5b50610482610fb0565b60405161048f91906146d3565b60405180910390f35b3480156104a457600080fd5b506104ad610fd4565b6040516104ba91906146fd565b60405180910390f35b3480156104cf57600080fd5b506104ea60048036038101906104e59190614647565b610fde565b005b3480156104f857600080fd5b5061050161111a565b60405161050e91906146fd565b60405180910390f35b34801561052357600080fd5b5061052c611120565b60405161053991906146fd565b60405180910390f35b34801561054e57600080fd5b50610557611126565b60405161056491906146fd565b60405180910390f35b34801561057957600080fd5b5061058261112c565b60405161058f91906146fd565b60405180910390f35b3480156105a457600080fd5b506105bf60048036038101906105ba9190614718565b611132565b005b3480156105cd57600080fd5b506105e860048036038101906105e39190614745565b611241565b6040516105f5919061462c565b60405180910390f35b34801561060a57600080fd5b50610613611339565b005b34801561062157600080fd5b5061062a6113b7565b60405161063791906147a7565b60405180910390f35b34801561064c57600080fd5b506106556113bd565b60405161066291906146fd565b60405180910390f35b34801561067757600080fd5b506106806113c3565b60405161068d919061462c565b60405180910390f35b3480156106a257600080fd5b506106ab6113d6565b6040516106b891906147de565b60405180910390f35b3480156106cd57600080fd5b506106e860048036038101906106e391906145d1565b6113df565b6040516106f5919061462c565b60405180910390f35b34801561070a57600080fd5b5061071361148b565b60405161072091906147a7565b60405180910390f35b34801561073557600080fd5b5061073e6114af565b60405161074b919061462c565b60405180910390f35b34801561076057600080fd5b5061077b60048036038101906107769190614647565b6114c2565b604051610788919061462c565b60405180910390f35b34801561079d57600080fd5b506107a6611518565b6040516107b391906146fd565b60405180910390f35b3480156107c857600080fd5b506107d161151e565b6040516107de919061462c565b60405180910390f35b3480156107f357600080fd5b5061080e60048036038101906108099190614647565b611531565b60405161081b91906146fd565b60405180910390f35b34801561083057600080fd5b50610839611579565b005b34801561084757600080fd5b50610862600480360381019061085d9190614825565b611601565b005b34801561087057600080fd5b50610879611741565b604051610886919061462c565b60405180910390f35b34801561089b57600080fd5b506108b660048036038101906108b19190614878565b6117e1565b005b3480156108c457600080fd5b506108cd6118b8565b6040516108da91906147a7565b60405180910390f35b3480156108ef57600080fd5b506108f86118de565b60405161090591906146fd565b60405180910390f35b34801561091a57600080fd5b50610935600480360381019061093091906148b8565b6118e4565b005b34801561094357600080fd5b5061094c6119ad565b005b34801561095a57600080fd5b50610963611a68565b60405161097091906147a7565b60405180910390f35b34801561098557600080fd5b5061098e611a92565b60405161099b91906147a7565b60405180910390f35b3480156109b057600080fd5b506109b9611ab8565b6040516109c691906146fd565b60405180910390f35b3480156109db57600080fd5b506109f660048036038101906109f1919061490b565b611abe565b005b348015610a0457600080fd5b50610a0d611b57565b604051610a1a9190614516565b60405180910390f35b348015610a2f57600080fd5b50610a4a6004803603810190610a459190614878565b611be9565b005b348015610a5857600080fd5b50610a61611d02565b604051610a6e91906146fd565b60405180910390f35b348015610a8357600080fd5b50610a8c611d08565b604051610a9991906146fd565b60405180910390f35b348015610aae57600080fd5b50610ab7611d0e565b604051610ac491906146fd565b60405180910390f35b348015610ad957600080fd5b50610ae2611d14565b604051610aef91906146fd565b60405180910390f35b348015610b0457600080fd5b50610b1f6004803603810190610b1a91906145d1565b611d1a565b604051610b2c919061462c565b60405180910390f35b348015610b4157600080fd5b50610b4a611e05565b604051610b5791906146fd565b60405180910390f35b348015610b6c57600080fd5b50610b876004803603810190610b8291906145d1565b611e0b565b604051610b94919061462c565b60405180910390f35b348015610ba957600080fd5b50610bc46004803603810190610bbf9190614647565b611e29565b005b348015610bd257600080fd5b50610bed6004803603810190610be89190614647565b611f65565b604051610bfa919061462c565b60405180910390f35b348015610c0f57600080fd5b50610c18611f85565b604051610c25919061462c565b60405180910390f35b348015610c3a57600080fd5b50610c556004803603810190610c509190614878565b611f98565b005b348015610c6357600080fd5b50610c7e6004803603810190610c7991906148b8565b6120bd565b005b348015610c8c57600080fd5b50610ca76004803603810190610ca29190614718565b612186565b005b348015610cb557600080fd5b50610cbe612295565b604051610ccb919061462c565b60405180910390f35b348015610ce057600080fd5b50610ce96122a8565b604051610cf691906146fd565b60405180910390f35b348015610d0b57600080fd5b50610d266004803603810190610d219190614718565b6122ae565b604051610d33919061462c565b60405180910390f35b348015610d4857600080fd5b50610d51612403565b604051610d5e91906146fd565b60405180910390f35b348015610d7357600080fd5b50610d8e6004803603810190610d899190614938565b612409565b604051610d9b91906146fd565b60405180910390f35b348015610db057600080fd5b50610db9612490565b604051610dc691906146fd565b60405180910390f35b348015610ddb57600080fd5b50610de4612496565b604051610df1919061462c565b60405180910390f35b348015610e0657600080fd5b50610e0f612536565b604051610e1c91906146fd565b60405180910390f35b348015610e3157600080fd5b50610e4c6004803603810190610e479190614647565b61253c565b005b348015610e5a57600080fd5b50610e63612634565b604051610e7091906146fd565b60405180910390f35b348015610e8557600080fd5b50610e8e61263a565b604051610e9b91906146fd565b60405180910390f35b348015610eb057600080fd5b50610ecb6004803603810190610ec69190614718565b612640565b604051610ed8919061462c565b60405180910390f35b606060038054610ef0906149a7565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1c906149a7565b8015610f695780601f10610f3e57610100808354040283529160200191610f69565b820191906000526020600020905b815481529060010190602001808311610f4c57829003601f168201915b5050505050905090565b6000610f87610f80612918565b8484612920565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610fe6612918565b73ffffffffffffffffffffffffffffffffffffffff16611004611a68565b73ffffffffffffffffffffffffffffffffffffffff161461105a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105190614a25565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b61113a612918565b73ffffffffffffffffffffffffffffffffffffffff16611158611a68565b73ffffffffffffffffffffffffffffffffffffffff16146111ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a590614a25565b60405180910390fd5b670de0b6b3a76400006103e860016111c4610fd4565b6111ce9190614a74565b6111d89190614afd565b6111e29190614afd565b811015611224576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121b90614ba0565b60405180910390fd5b670de0b6b3a7640000816112389190614a74565b60088190555050565b600061124e848484612aeb565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611299612918565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611319576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131090614c32565b60405180910390fd5b61132d85611325612918565b858403612920565b60019150509392505050565b611341612918565b73ffffffffffffffffffffffffffffffffffffffff1661135f611a68565b73ffffffffffffffffffffffffffffffffffffffff16146113b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ac90614a25565b60405180910390fd5b565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60006114816113ec612918565b8484600160006113fa612918565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461147c9190614c52565b612920565b6001905092915050565b7f0000000000000000000000002943584a56e81c59b614502962a39a3685bb52b381565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611581612918565b73ffffffffffffffffffffffffffffffffffffffff1661159f611a68565b73ffffffffffffffffffffffffffffffffffffffff16146115f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ec90614a25565b60405180910390fd5b6115ff6000613883565b565b611609612918565b73ffffffffffffffffffffffffffffffffffffffff16611627611a68565b73ffffffffffffffffffffffffffffffffffffffff161461167d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167490614a25565b60405180910390fd5b6102588310156116c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b990614d1a565b60405180910390fd5b6103e882111580156116d5575060008210155b611714576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170b90614dac565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b600061174b612918565b73ffffffffffffffffffffffffffffffffffffffff16611769611a68565b73ffffffffffffffffffffffffffffffffffffffff16146117bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b690614a25565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b6117e9612918565b73ffffffffffffffffffffffffffffffffffffffff16611807611a68565b73ffffffffffffffffffffffffffffffffffffffff161461185d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185490614a25565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b6118ec612918565b73ffffffffffffffffffffffffffffffffffffffff1661190a611a68565b73ffffffffffffffffffffffffffffffffffffffff1614611960576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195790614a25565b60405180910390fd5b8260158190555081601681905550806017819055506017546016546015546119889190614c52565b6119929190614c52565b601481905550606360145411156119a857600080fd5b505050565b6119b5612918565b73ffffffffffffffffffffffffffffffffffffffff166119d3611a68565b73ffffffffffffffffffffffffffffffffffffffff1614611a29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2090614a25565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b611ac6612918565b73ffffffffffffffffffffffffffffffffffffffff16611ae4611a68565b73ffffffffffffffffffffffffffffffffffffffff1614611b3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3190614a25565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611b66906149a7565b80601f0160208091040260200160405190810160405280929190818152602001828054611b92906149a7565b8015611bdf5780601f10611bb457610100808354040283529160200191611bdf565b820191906000526020600020905b815481529060010190602001808311611bc257829003601f168201915b5050505050905090565b611bf1612918565b73ffffffffffffffffffffffffffffffffffffffff16611c0f611a68565b73ffffffffffffffffffffffffffffffffffffffff1614611c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5c90614a25565b60405180910390fd5b7f0000000000000000000000002943584a56e81c59b614502962a39a3685bb52b373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ceb90614e3e565b60405180910390fd5b611cfe8282613949565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611d29612918565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611de6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddd90614ed0565b60405180910390fd5b611dfa611df1612918565b85858403612920565b600191505092915050565b600e5481565b6000611e1f611e18612918565b8484612aeb565b6001905092915050565b611e31612918565b73ffffffffffffffffffffffffffffffffffffffff16611e4f611a68565b73ffffffffffffffffffffffffffffffffffffffff1614611ea5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9c90614a25565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611fa0612918565b73ffffffffffffffffffffffffffffffffffffffff16611fbe611a68565b73ffffffffffffffffffffffffffffffffffffffff1614612014576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200b90614a25565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516120b1919061462c565b60405180910390a25050565b6120c5612918565b73ffffffffffffffffffffffffffffffffffffffff166120e3611a68565b73ffffffffffffffffffffffffffffffffffffffff1614612139576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213090614a25565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a546019546121619190614c52565b61216b9190614c52565b6018819055506063601854111561218157600080fd5b505050565b61218e612918565b73ffffffffffffffffffffffffffffffffffffffff166121ac611a68565b73ffffffffffffffffffffffffffffffffffffffff1614612202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f990614a25565b60405180910390fd5b670de0b6b3a76400006103e86005612218610fd4565b6122229190614a74565b61222c9190614afd565b6122369190614afd565b811015612278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226f90614f62565b60405180910390fd5b670de0b6b3a76400008161228c9190614a74565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b60006122b8612918565b73ffffffffffffffffffffffffffffffffffffffff166122d6611a68565b73ffffffffffffffffffffffffffffffffffffffff161461232c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232390614a25565b60405180910390fd5b620186a0600161233a610fd4565b6123449190614a74565b61234e9190614afd565b821015612390576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238790614ff4565b60405180910390fd5b6103e8600561239d610fd4565b6123a79190614a74565b6123b19190614afd565b8211156123f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ea90615086565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006124a0612918565b73ffffffffffffffffffffffffffffffffffffffff166124be611a68565b73ffffffffffffffffffffffffffffffffffffffff1614612514576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250b90614a25565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b612544612918565b73ffffffffffffffffffffffffffffffffffffffff16612562611a68565b73ffffffffffffffffffffffffffffffffffffffff16146125b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125af90614a25565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612628576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261f90615118565b60405180910390fd5b61263181613883565b50565b601a5481565b600a5481565b600061264a612918565b73ffffffffffffffffffffffffffffffffffffffff16612668611a68565b73ffffffffffffffffffffffffffffffffffffffff16146126be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b590614a25565b60405180910390fd5b600f546010546126ce9190614c52565b421161270f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270690615184565b60405180910390fd5b6103e8821115612754576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274b90615216565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f0000000000000000000000002943584a56e81c59b614502962a39a3685bb52b36040518263ffffffff1660e01b81526004016127b691906147a7565b602060405180830381865afa1580156127d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127f7919061524b565b9050600061282261271061281486856139ea90919063ffffffff16565b613a0090919063ffffffff16565b9050600081111561285b5761285a7f0000000000000000000000002943584a56e81c59b614502962a39a3685bb52b361dead83613a16565b5b60007f0000000000000000000000002943584a56e81c59b614502962a39a3685bb52b390508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156128c857600080fd5b505af11580156128dc573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612990576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612987906152ea565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f79061537c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612ade91906146fd565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b529061540e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612bcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc2906154a0565b60405180910390fd5b6000811415612be557612be083836000613a16565b61387e565b601160009054906101000a900460ff16156132a857612c02611a68565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612c705750612c40611a68565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ca95750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ce3575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612cfc5750600560149054906101000a900460ff16155b156132a757601160019054906101000a900460ff16612df657601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612db65750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612df5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dec9061550c565b60405180910390fd5b5b601360009054906101000a900460ff1615612fbe57612e13611a68565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612e9a57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ef257507f0000000000000000000000002943584a56e81c59b614502962a39a3685bb52b373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612fbd5743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6f906155c4565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156130615750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613108576008548111156130ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130a290615656565b60405180910390fd5b600a546130b783611531565b826130c29190614c52565b1115613103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130fa906156c2565b60405180910390fd5b6132a6565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131ab5750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156131fa576008548111156131f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ec90615754565b60405180910390fd5b6132a5565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166132a457600a5461325783611531565b826132629190614c52565b11156132a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161329a906156c2565b60405180910390fd5b5b5b5b5b5b60006132b330611531565b9050600060095482101590508080156132d85750601160029054906101000a900460ff165b80156132f15750600560149054906101000a900460ff16155b80156133475750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561339d5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133f35750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613437576001600560146101000a81548160ff02191690831515021790555061341b613c97565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff1615801561349d5750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156134b55750600c60009054906101000a900460ff165b80156134d05750600d54600e546134cc9190614c52565b4210155b80156135265750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561353557613533613f7e565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806135eb5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156135f557600090505b6000811561386e57602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561365857506000601854115b15613725576136856064613677601854886139ea90919063ffffffff16565b613a0090919063ffffffff16565b9050601854601a54826136989190614a74565b6136a29190614afd565b601d60008282546136b39190614c52565b92505081905550601854601b54826136cb9190614a74565b6136d59190614afd565b601e60008282546136e69190614c52565b92505081905550601854601954826136fe9190614a74565b6137089190614afd565b601c60008282546137199190614c52565b9250508190555061384a565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561378057506000601454115b15613849576137ad606461379f601454886139ea90919063ffffffff16565b613a0090919063ffffffff16565b9050601454601654826137c09190614a74565b6137ca9190614afd565b601d60008282546137db9190614c52565b92505081905550601454601754826137f39190614a74565b6137fd9190614afd565b601e600082825461380e9190614c52565b92505081905550601454601554826138269190614a74565b6138309190614afd565b601c60008282546138419190614c52565b925050819055505b5b600081111561385f5761385e873083613a16565b5b808561386b9190615774565b94505b613879878787613a16565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600081836139f89190614a74565b905092915050565b60008183613a0e9190614afd565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a7d9061540e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613aed906154a0565b60405180910390fd5b613b01838383614144565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613b87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b7e9061581a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613c1a9190614c52565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613c7e91906146fd565b60405180910390a3613c91848484614149565b50505050565b6000613ca230611531565b90506000601e54601c54601d54613cb99190614c52565b613cc39190614c52565b9050600080831480613cd55750600082145b15613ce257505050613f7c565b6014600954613cf19190614a74565b831115613d0a576014600954613d079190614a74565b92505b6000600283601d5486613d1d9190614a74565b613d279190614afd565b613d319190614afd565b90506000613d48828661414e90919063ffffffff16565b90506000479050613d5882614164565b6000613d6d824761414e90919063ffffffff16565b90506000613d9887613d8a601c54856139ea90919063ffffffff16565b613a0090919063ffffffff16565b90506000613dc388613db5601e54866139ea90919063ffffffff16565b613a0090919063ffffffff16565b90506000818385613dd49190615774565b613dde9190615774565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613e3e9061586b565b60006040518083038185875af1925050503d8060008114613e7b576040519150601f19603f3d011682016040523d82523d6000602084013e613e80565b606091505b505080985050600087118015613e965750600081115b15613ee357613ea587826143a1565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613eda93929190615880565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613f299061586b565b60006040518083038185875af1925050503d8060008114613f66576040519150601f19603f3d011682016040523d82523d6000602084013e613f6b565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f0000000000000000000000002943584a56e81c59b614502962a39a3685bb52b36040518263ffffffff1660e01b8152600401613fe291906147a7565b602060405180830381865afa158015613fff573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614023919061524b565b90506000614050612710614042600b54856139ea90919063ffffffff16565b613a0090919063ffffffff16565b90506000811115614089576140887f0000000000000000000000002943584a56e81c59b614502962a39a3685bb52b361dead83613a16565b5b60007f0000000000000000000000002943584a56e81c59b614502962a39a3685bb52b390508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156140f657600080fd5b505af115801561410a573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b6000818361415c9190615774565b905092915050565b6000600267ffffffffffffffff811115614181576141806158b7565b5b6040519080825280602002602001820160405280156141af5781602001602082028036833780820191505090505b50905030816000815181106141c7576141c66158e6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561426c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614290919061592a565b816001815181106142a4576142a36158e6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614309307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612920565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161436b959493929190615a50565b600060405180830381600087803b15801561438557600080fd5b505af1158015614399573d6000803e3d6000fd5b505050505050565b6143cc307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612920565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161443396959493929190615aaa565b60606040518083038185885af1158015614451573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906144769190615b0b565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156144b757808201518184015260208101905061449c565b838111156144c6576000848401525b50505050565b6000601f19601f8301169050919050565b60006144e88261447d565b6144f28185614488565b9350614502818560208601614499565b61450b816144cc565b840191505092915050565b6000602082019050818103600083015261453081846144dd565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006145688261453d565b9050919050565b6145788161455d565b811461458357600080fd5b50565b6000813590506145958161456f565b92915050565b6000819050919050565b6145ae8161459b565b81146145b957600080fd5b50565b6000813590506145cb816145a5565b92915050565b600080604083850312156145e8576145e7614538565b5b60006145f685828601614586565b9250506020614607858286016145bc565b9150509250929050565b60008115159050919050565b61462681614611565b82525050565b6000602082019050614641600083018461461d565b92915050565b60006020828403121561465d5761465c614538565b5b600061466b84828501614586565b91505092915050565b6000819050919050565b600061469961469461468f8461453d565b614674565b61453d565b9050919050565b60006146ab8261467e565b9050919050565b60006146bd826146a0565b9050919050565b6146cd816146b2565b82525050565b60006020820190506146e860008301846146c4565b92915050565b6146f78161459b565b82525050565b600060208201905061471260008301846146ee565b92915050565b60006020828403121561472e5761472d614538565b5b600061473c848285016145bc565b91505092915050565b60008060006060848603121561475e5761475d614538565b5b600061476c86828701614586565b935050602061477d86828701614586565b925050604061478e868287016145bc565b9150509250925092565b6147a18161455d565b82525050565b60006020820190506147bc6000830184614798565b92915050565b600060ff82169050919050565b6147d8816147c2565b82525050565b60006020820190506147f360008301846147cf565b92915050565b61480281614611565b811461480d57600080fd5b50565b60008135905061481f816147f9565b92915050565b60008060006060848603121561483e5761483d614538565b5b600061484c868287016145bc565b935050602061485d868287016145bc565b925050604061486e86828701614810565b9150509250925092565b6000806040838503121561488f5761488e614538565b5b600061489d85828601614586565b92505060206148ae85828601614810565b9150509250929050565b6000806000606084860312156148d1576148d0614538565b5b60006148df868287016145bc565b93505060206148f0868287016145bc565b9250506040614901868287016145bc565b9150509250925092565b60006020828403121561492157614920614538565b5b600061492f84828501614810565b91505092915050565b6000806040838503121561494f5761494e614538565b5b600061495d85828601614586565b925050602061496e85828601614586565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806149bf57607f821691505b602082108114156149d3576149d2614978565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614a0f602083614488565b9150614a1a826149d9565b602082019050919050565b60006020820190508181036000830152614a3e81614a02565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614a7f8261459b565b9150614a8a8361459b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ac357614ac2614a45565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614b088261459b565b9150614b138361459b565b925082614b2357614b22614ace565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614b8a602f83614488565b9150614b9582614b2e565b604082019050919050565b60006020820190508181036000830152614bb981614b7d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614c1c602883614488565b9150614c2782614bc0565b604082019050919050565b60006020820190508181036000830152614c4b81614c0f565b9050919050565b6000614c5d8261459b565b9150614c688361459b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614c9d57614c9c614a45565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614d04603383614488565b9150614d0f82614ca8565b604082019050919050565b60006020820190508181036000830152614d3381614cf7565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614d96603083614488565b9150614da182614d3a565b604082019050919050565b60006020820190508181036000830152614dc581614d89565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614e28603983614488565b9150614e3382614dcc565b604082019050919050565b60006020820190508181036000830152614e5781614e1b565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614eba602583614488565b9150614ec582614e5e565b604082019050919050565b60006020820190508181036000830152614ee981614ead565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614f4c602483614488565b9150614f5782614ef0565b604082019050919050565b60006020820190508181036000830152614f7b81614f3f565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614fde603583614488565b9150614fe982614f82565b604082019050919050565b6000602082019050818103600083015261500d81614fd1565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000615070603483614488565b915061507b82615014565b604082019050919050565b6000602082019050818103600083015261509f81615063565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615102602683614488565b915061510d826150a6565b604082019050919050565b60006020820190508181036000830152615131816150f5565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b600061516e602083614488565b915061517982615138565b602082019050919050565b6000602082019050818103600083015261519d81615161565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000615200602a83614488565b915061520b826151a4565b604082019050919050565b6000602082019050818103600083015261522f816151f3565b9050919050565b600081519050615245816145a5565b92915050565b60006020828403121561526157615260614538565b5b600061526f84828501615236565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006152d4602483614488565b91506152df82615278565b604082019050919050565b60006020820190508181036000830152615303816152c7565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000615366602283614488565b91506153718261530a565b604082019050919050565b6000602082019050818103600083015261539581615359565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006153f8602583614488565b91506154038261539c565b604082019050919050565b60006020820190508181036000830152615427816153eb565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061548a602383614488565b91506154958261542e565b604082019050919050565b600060208201905081810360008301526154b98161547d565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006154f6601683614488565b9150615501826154c0565b602082019050919050565b60006020820190508181036000830152615525816154e9565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006155ae604983614488565b91506155b98261552c565b606082019050919050565b600060208201905081810360008301526155dd816155a1565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000615640603583614488565b915061564b826155e4565b604082019050919050565b6000602082019050818103600083015261566f81615633565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006156ac601383614488565b91506156b782615676565b602082019050919050565b600060208201905081810360008301526156db8161569f565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b600061573e603683614488565b9150615749826156e2565b604082019050919050565b6000602082019050818103600083015261576d81615731565b9050919050565b600061577f8261459b565b915061578a8361459b565b92508282101561579d5761579c614a45565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000615804602683614488565b915061580f826157a8565b604082019050919050565b60006020820190508181036000830152615833816157f7565b9050919050565b600081905092915050565b50565b600061585560008361583a565b915061586082615845565b600082019050919050565b600061587682615848565b9150819050919050565b600060608201905061589560008301866146ee565b6158a260208301856146ee565b6158af60408301846146ee565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506159248161456f565b92915050565b6000602082840312156159405761593f614538565b5b600061594e84828501615915565b91505092915050565b6000819050919050565b600061597c61597761597284615957565b614674565b61459b565b9050919050565b61598c81615961565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6159c78161455d565b82525050565b60006159d983836159be565b60208301905092915050565b6000602082019050919050565b60006159fd82615992565b615a07818561599d565b9350615a12836159ae565b8060005b83811015615a43578151615a2a88826159cd565b9750615a35836159e5565b925050600181019050615a16565b5085935050505092915050565b600060a082019050615a6560008301886146ee565b615a726020830187615983565b8181036040830152615a8481866159f2565b9050615a936060830185614798565b615aa060808301846146ee565b9695505050505050565b600060c082019050615abf6000830189614798565b615acc60208301886146ee565b615ad96040830187615983565b615ae66060830186615983565b615af36080830185614798565b615b0060a08301846146ee565b979650505050505050565b600080600060608486031215615b2457615b23614538565b5b6000615b3286828701615236565b9350506020615b4386828701615236565b9250506040615b5486828701615236565b915050925092509256fea264697066735822122030a56fad9746e4a00796c8b9ecaf504e09200bab93b52c92d3e6912e261af4dd64736f6c634300080a0033

Deployed Bytecode Sourcemap

32820:19344:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9648:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11815:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34446:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32895:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10768:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41402:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33460:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33275:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34230:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34190;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38782:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12466:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41569:80;;;;;;;;;;;;;:::i;:::-;;32998:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33370:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33331:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10610:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13367:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32953:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33558:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41657:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34045:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33638:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10939:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2883:103;;;;;;;;;;;;;:::i;:::-;;49746:555;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37890:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39329:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33090:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33938;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39700:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37683:155;;;;;;;;;;;;;:::i;:::-;;2232:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33127:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34080:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39592:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9867:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40655:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34012:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33514:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34270:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34156:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14085:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33422:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11279:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41163:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34667:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33598:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40465:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40078:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39065:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33856:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33160:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38277:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33904:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11517:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33202:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38072:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33975:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3141:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34118:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33242:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51105:1056;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9648:100;9702:13;9735:5;9728:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9648:100;:::o;11815:169::-;11898:4;11915:39;11924:12;:10;:12::i;:::-;11938:7;11947:6;11915:8;:39::i;:::-;11972:4;11965:11;;11815:169;;;;:::o;34446:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;32895:51::-;;;:::o;10768:108::-;10829:7;10856:12;;10849:19;;10768:108;:::o;41402:157::-;2463:12;:10;:12::i;:::-;2452:23;;:7;:5;:7::i;:::-;:23;;;2444:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41509:9:::1;;;;;;;;;;;41481:38;;41498:9;41481:38;;;;;;;;;;;;41542:9;41530;;:21;;;;;;;;;;;;;;;;;;41402:157:::0;:::o;33460:47::-;;;;:::o;33275:36::-;;;;:::o;34230:33::-;;;;:::o;34190:::-;;;;:::o;38782:275::-;2463:12;:10;:12::i;:::-;2452:23;;:7;:5;:7::i;:::-;:23;;;2444:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38919:4:::1;38911;38906:1;38890:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38889:26;;;;:::i;:::-;38888:35;;;;:::i;:::-;38878:6;:45;;38856:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;39042:6;39032;:17;;;;:::i;:::-;39009:20;:40;;;;38782:275:::0;:::o;12466:492::-;12606:4;12623:36;12633:6;12641:9;12652:6;12623:9;:36::i;:::-;12672:24;12699:11;:19;12711:6;12699:19;;;;;;;;;;;;;;;:33;12719:12;:10;:12::i;:::-;12699:33;;;;;;;;;;;;;;;;12672:60;;12771:6;12751:16;:26;;12743:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12858:57;12867:6;12875:12;:10;:12::i;:::-;12908:6;12889:16;:25;12858:8;:57::i;:::-;12946:4;12939:11;;;12466:492;;;;;:::o;41569:80::-;2463:12;:10;:12::i;:::-;2452:23;;:7;:5;:7::i;:::-;:23;;;2444:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41569:80::o;32998:53::-;33044:6;32998:53;:::o;33370:45::-;;;;:::o;33331:32::-;;;;;;;;;;;;;:::o;10610:93::-;10668:5;10693:2;10686:9;;10610:93;:::o;13367:215::-;13455:4;13472:80;13481:12;:10;:12::i;:::-;13495:7;13541:10;13504:11;:25;13516:12;:10;:12::i;:::-;13504:25;;;;;;;;;;;;;;;:34;13530:7;13504:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13472:8;:80::i;:::-;13570:4;13563:11;;13367:215;;;;:::o;32953:38::-;;;:::o;33558:33::-;;;;;;;;;;;;;:::o;41657:126::-;41723:4;41747:19;:28;41767:7;41747:28;;;;;;;;;;;;;;;;;;;;;;;;;41740:35;;41657:126;;;:::o;34045:28::-;;;;:::o;33638:31::-;;;;;;;;;;;;;:::o;10939:127::-;11013:7;11040:9;:18;11050:7;11040:18;;;;;;;;;;;;;;;;11033:25;;10939:127;;;:::o;2883:103::-;2463:12;:10;:12::i;:::-;2452:23;;:7;:5;:7::i;:::-;:23;;;2444:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2948:30:::1;2975:1;2948:18;:30::i;:::-;2883:103::o:0;49746:555::-;2463:12;:10;:12::i;:::-;2452:23;;:7;:5;:7::i;:::-;:23;;;2444:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49948:3:::1;49925:19;:26;;49903:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;50075:4;50063:8;:16;;:33;;;;;50095:1;50083:8;:13;;50063:33;50041:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;50201:19;50183:15;:37;;;;50250:8;50231:16;:27;;;;50285:8;50269:13;;:24;;;;;;;;;;;;;;;;;;49746:555:::0;;;:::o;37890:121::-;37942:4;2463:12;:10;:12::i;:::-;2452:23;;:7;:5;:7::i;:::-;:23;;;2444:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37976:5:::1;37959:14;;:22;;;;;;;;;;;;;;;;;;37999:4;37992:11;;37890:121:::0;:::o;39329:167::-;2463:12;:10;:12::i;:::-;2452:23;;:7;:5;:7::i;:::-;:23;;;2444:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39484:4:::1;39442:31;:39;39474:6;39442:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;39329:167:::0;;:::o;33090:30::-;;;;;;;;;;;;;:::o;33938:::-;;;;:::o;39700:370::-;2463:12;:10;:12::i;:::-;2452:23;;:7;:5;:7::i;:::-;:23;;;2444:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39868:13:::1;39850:15;:31;;;;39910:13;39892:15;:31;;;;39946:7;39934:9;:19;;;;40015:9;;39997:15;;39979;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;39964:12;:60;;;;40059:2;40043:12;;:18;;40035:27;;;::::0;::::1;;39700:370:::0;;;:::o;37683:155::-;2463:12;:10;:12::i;:::-;2452:23;;:7;:5;:7::i;:::-;:23;;;2444:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37754:4:::1;37738:13;;:20;;;;;;;;;;;;;;;;;;37783:4;37769:11;;:18;;;;;;;;;;;;;;;;;;37815:15;37798:14;:32;;;;37683:155::o:0;2232:87::-;2278:7;2305:6;;;;;;;;;;;2298:13;;2232:87;:::o;33127:24::-;;;;;;;;;;;;;:::o;34080:31::-;;;;:::o;39592:100::-;2463:12;:10;:12::i;:::-;2452:23;;:7;:5;:7::i;:::-;:23;;;2444:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39677:7:::1;39663:11;;:21;;;;;;;;;;;;;;;;;;39592:100:::0;:::o;9867:104::-;9923:13;9956:7;9949:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9867:104;:::o;40655:304::-;2463:12;:10;:12::i;:::-;2452:23;;:7;:5;:7::i;:::-;:23;;;2444:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40799:13:::1;40791:21;;:4;:21;;;;40769:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;40910:41;40939:4;40945:5;40910:28;:41::i;:::-;40655:304:::0;;:::o;34012:24::-;;;;:::o;33514:35::-;;;;:::o;34270:27::-;;;;:::o;34156:25::-;;;;:::o;14085:413::-;14178:4;14195:24;14222:11;:25;14234:12;:10;:12::i;:::-;14222:25;;;;;;;;;;;;;;;:34;14248:7;14222:34;;;;;;;;;;;;;;;;14195:61;;14295:15;14275:16;:35;;14267:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14388:67;14397:12;:10;:12::i;:::-;14411:7;14439:15;14420:16;:34;14388:8;:67::i;:::-;14486:4;14479:11;;;14085:413;;;;:::o;33422:29::-;;;;:::o;11279:175::-;11365:4;11382:42;11392:12;:10;:12::i;:::-;11406:9;11417:6;11382:9;:42::i;:::-;11442:4;11435:11;;11279:175;;;;:::o;41163:231::-;2463:12;:10;:12::i;:::-;2452:23;;:7;:5;:7::i;:::-;:23;;;2444:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41323:15:::1;;;;;;;;;;;41280:59;;41303:18;41280:59;;;;;;;;;;;;41368:18;41350:15;;:36;;;;;;;;;;;;;;;;;;41163:231:::0;:::o;34667:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33598:33::-;;;;;;;;;;;;;:::o;40465:182::-;2463:12;:10;:12::i;:::-;2452:23;;:7;:5;:7::i;:::-;:23;;;2444:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40581:8:::1;40550:19;:28;40570:7;40550:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40621:7;40605:34;;;40630:8;40605:34;;;;;;:::i;:::-;;;;;;;;40465:182:::0;;:::o;40078:379::-;2463:12;:10;:12::i;:::-;2452:23;;:7;:5;:7::i;:::-;:23;;;2444:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40248:13:::1;40229:16;:32;;;;40291:13;40272:16;:32;;;;40328:7;40315:10;:20;;;;40400:10;;40381:16;;40362;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;40346:13;:64;;;;40446:2;40429:13;;:19;;40421:28;;;::::0;::::1;;40078:379:::0;;;:::o;39065:256::-;2463:12;:10;:12::i;:::-;2452:23;;:7;:5;:7::i;:::-;:23;;;2444:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39205:4:::1;39197;39192:1;39176:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39175:26;;;;:::i;:::-;39174:35;;;;:::i;:::-;39164:6;:45;;39142:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;39306:6;39296;:17;;;;:::i;:::-;39284:9;:29;;;;39065:256:::0;:::o;33856:39::-;;;;;;;;;;;;;:::o;33160:35::-;;;;:::o;38277:497::-;38385:4;2463:12;:10;:12::i;:::-;2452:23;;:7;:5;:7::i;:::-;:23;;;2444:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38464:6:::1;38459:1;38443:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38442:28;;;;:::i;:::-;38429:9;:41;;38407:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;38619:4;38614:1;38598:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38597:26;;;;:::i;:::-;38584:9;:39;;38562:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;38735:9;38714:18;:30;;;;38762:4;38755:11;;38277:497:::0;;;:::o;33904:27::-;;;;:::o;11517:151::-;11606:7;11633:11;:18;11645:5;11633:18;;;;;;;;;;;;;;;:27;11652:7;11633:27;;;;;;;;;;;;;;;;11626:34;;11517:151;;;;:::o;33202:33::-;;;;:::o;38072:135::-;38132:4;2463:12;:10;:12::i;:::-;2452:23;;:7;:5;:7::i;:::-;:23;;;2444:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38172:5:::1;38149:20;;:28;;;;;;;;;;;;;;;;;;38195:4;38188:11;;38072:135:::0;:::o;33975:30::-;;;;:::o;3141:201::-;2463:12;:10;:12::i;:::-;2452:23;;:7;:5;:7::i;:::-;:23;;;2444:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3250:1:::1;3230:22;;:8;:22;;;;3222:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3306:28;3325:8;3306:18;:28::i;:::-;3141:201:::0;:::o;34118:31::-;;;;:::o;33242:24::-;;;;:::o;51105:1056::-;51216:4;2463:12;:10;:12::i;:::-;2452:23;;:7;:5;:7::i;:::-;:23;;;2444:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51301:19:::1;;51278:20;;:42;;;;:::i;:::-;51260:15;:60;51238:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;51410:4;51399:7;:15;;51391:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;51495:15;51472:20;:38;;;;51565:28;51596:4;:14;;;51611:13;51596:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51565:60;;51675:20;51698:44;51736:5;51698:33;51723:7;51698:20;:24;;:33;;;;:::i;:::-;:37;;:44;;;;:::i;:::-;51675:67;;51862:1;51847:12;:16;51843:110;;;51880:61;51896:13;51919:6;51928:12;51880:15;:61::i;:::-;51843:110;52028:19;52065:13;52028:51;;52090:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;52117:14;;;;;;;;;;52149:4;52142:11;;;;;51105:1056:::0;;;:::o;905:98::-;958:7;985:10;978:17;;905:98;:::o;17769:380::-;17922:1;17905:19;;:5;:19;;;;17897:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18003:1;17984:21;;:7;:21;;;;17976:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18087:6;18057:11;:18;18069:5;18057:18;;;;;;;;;;;;;;;:27;18076:7;18057:27;;;;;;;;;;;;;;;:36;;;;18125:7;18109:32;;18118:5;18109:32;;;18134:6;18109:32;;;;;;:::i;:::-;;;;;;;;17769:380;;;:::o;41841:5011::-;41989:1;41973:18;;:4;:18;;;;41965:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42066:1;42052:16;;:2;:16;;;;42044:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;42135:1;42125:6;:11;42121:93;;;42153:28;42169:4;42175:2;42179:1;42153:15;:28::i;:::-;42196:7;;42121:93;42230:14;;;;;;;;;;;42226:2487;;;42291:7;:5;:7::i;:::-;42283:15;;:4;:15;;;;:49;;;;;42325:7;:5;:7::i;:::-;42319:13;;:2;:13;;;;42283:49;:86;;;;;42367:1;42353:16;;:2;:16;;;;42283:86;:128;;;;;42404:6;42390:21;;:2;:21;;;;42283:128;:158;;;;;42433:8;;;;;;;;;;;42432:9;42283:158;42261:2441;;;42481:13;;;;;;;;;;;42476:223;;42553:19;:25;42573:4;42553:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42582:19;:23;42602:2;42582:23;;;;;;;;;;;;;;;;;;;;;;;;;42553:52;42519:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;42476:223;42855:20;;;;;;;;;;;42851:641;;;42936:7;:5;:7::i;:::-;42930:13;;:2;:13;;;;:72;;;;;42986:15;42972:30;;:2;:30;;;;42930:72;:129;;;;;43045:13;43031:28;;:2;:28;;;;42930:129;42900:573;;;43223:12;43148:28;:39;43177:9;43148:39;;;;;;;;;;;;;;;;:87;43110:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;43437:12;43395:28;:39;43424:9;43395:39;;;;;;;;;;;;;;;:54;;;;42900:573;42851:641;43566:25;:31;43592:4;43566:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43623:31;:35;43655:2;43623:35;;;;;;;;;;;;;;;;;;;;;;;;;43622:36;43566:92;43540:1147;;;43745:20;;43735:6;:30;;43701:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;43953:9;;43936:13;43946:2;43936:9;:13::i;:::-;43927:6;:22;;;;:::i;:::-;:35;;43893:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43540:1147;;;44131:25;:29;44157:2;44131:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;44186:31;:37;44218:4;44186:37;;;;;;;;;;;;;;;;;;;;;;;;;44185:38;44131:92;44105:582;;;44310:20;;44300:6;:30;;44266:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;44105:582;;;44467:31;:35;44499:2;44467:35;;;;;;;;;;;;;;;;;;;;;;;;;44462:225;;44587:9;;44570:13;44580:2;44570:9;:13::i;:::-;44561:6;:22;;;;:::i;:::-;:35;;44527:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;44462:225;44105:582;43540:1147;42261:2441;42226:2487;44725:28;44756:24;44774:4;44756:9;:24::i;:::-;44725:55;;44793:12;44832:18;;44808:20;:42;;44793:57;;44881:7;:35;;;;;44905:11;;;;;;;;;;;44881:35;:61;;;;;44934:8;;;;;;;;;;;44933:9;44881:61;:110;;;;;44960:25;:31;44986:4;44960:31;;;;;;;;;;;;;;;;;;;;;;;;;44959:32;44881:110;:153;;;;;45009:19;:25;45029:4;45009:25;;;;;;;;;;;;;;;;;;;;;;;;;45008:26;44881:153;:194;;;;;45052:19;:23;45072:2;45052:23;;;;;;;;;;;;;;;;;;;;;;;;;45051:24;44881:194;44863:326;;;45113:4;45102:8;;:15;;;;;;;;;;;;;;;;;;45134:10;:8;:10::i;:::-;45172:5;45161:8;;:16;;;;;;;;;;;;;;;;;;44863:326;45220:8;;;;;;;;;;;45219:9;:55;;;;;45245:25;:29;45271:2;45245:29;;;;;;;;;;;;;;;;;;;;;;;;;45219:55;:85;;;;;45291:13;;;;;;;;;;;45219:85;:153;;;;;45357:15;;45340:14;;:32;;;;:::i;:::-;45321:15;:51;;45219:153;:196;;;;;45390:19;:25;45410:4;45390:25;;;;;;;;;;;;;;;;;;;;;;;;;45389:26;45219:196;45201:282;;;45442:29;:27;:29::i;:::-;;45201:282;45495:12;45511:8;;;;;;;;;;;45510:9;45495:24;;45621:19;:25;45641:4;45621:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;45650:19;:23;45670:2;45650:23;;;;;;;;;;;;;;;;;;;;;;;;;45621:52;45617:100;;;45700:5;45690:15;;45617:100;45729:12;45834:7;45830:969;;;45886:25;:29;45912:2;45886:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;45935:1;45919:13;;:17;45886:50;45882:768;;;45964:34;45994:3;45964:25;45975:13;;45964:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;45957:41;;46067:13;;46047:16;;46040:4;:23;;;;:::i;:::-;46039:41;;;;:::i;:::-;46017:18;;:63;;;;;;;:::i;:::-;;;;;;;;46137:13;;46123:10;;46116:4;:17;;;;:::i;:::-;46115:35;;;;:::i;:::-;46099:12;;:51;;;;;;;:::i;:::-;;;;;;;;46219:13;;46199:16;;46192:4;:23;;;;:::i;:::-;46191:41;;;;:::i;:::-;46169:18;;:63;;;;;;;:::i;:::-;;;;;;;;45882:768;;;46294:25;:31;46320:4;46294:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;46344:1;46329:12;;:16;46294:51;46290:360;;;46373:33;46402:3;46373:24;46384:12;;46373:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;46366:40;;46474:12;;46455:15;;46448:4;:22;;;;:::i;:::-;46447:39;;;;:::i;:::-;46425:18;;:61;;;;;;;:::i;:::-;;;;;;;;46542:12;;46529:9;;46522:4;:16;;;;:::i;:::-;46521:33;;;;:::i;:::-;46505:12;;:49;;;;;;;:::i;:::-;;;;;;;;46622:12;;46603:15;;46596:4;:22;;;;:::i;:::-;46595:39;;;;:::i;:::-;46573:18;;:61;;;;;;;:::i;:::-;;;;;;;;46290:360;45882:768;46677:1;46670:4;:8;46666:91;;;46699:42;46715:4;46729;46736;46699:15;:42::i;:::-;46666:91;46783:4;46773:14;;;;;:::i;:::-;;;45830:969;46811:33;46827:4;46833:2;46837:6;46811:15;:33::i;:::-;41954:4898;;;;41841:5011;;;;:::o;3502:191::-;3576:16;3595:6;;;;;;;;;;;3576:25;;3621:8;3612:6;;:17;;;;;;;;;;;;;;;;;;3676:8;3645:40;;3666:8;3645:40;;;;;;;;;;;;3565:128;3502:191;:::o;40967:188::-;41084:5;41050:25;:31;41076:4;41050:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41141:5;41107:40;;41135:4;41107:40;;;;;;;;;;;;40967:188;;:::o;23222:98::-;23280:7;23311:1;23307;:5;;;;:::i;:::-;23300:12;;23222:98;;;;:::o;23621:::-;23679:7;23710:1;23706;:5;;;;:::i;:::-;23699:12;;23621:98;;;;:::o;14988:733::-;15146:1;15128:20;;:6;:20;;;;15120:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15230:1;15209:23;;:9;:23;;;;15201:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15285:47;15306:6;15314:9;15325:6;15285:20;:47::i;:::-;15345:21;15369:9;:17;15379:6;15369:17;;;;;;;;;;;;;;;;15345:41;;15422:6;15405:13;:23;;15397:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15543:6;15527:13;:22;15507:9;:17;15517:6;15507:17;;;;;;;;;;;;;;;:42;;;;15595:6;15571:9;:20;15581:9;15571:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15636:9;15619:35;;15628:6;15619:35;;;15647:6;15619:35;;;;;;:::i;:::-;;;;;;;;15667:46;15687:6;15695:9;15706:6;15667:19;:46::i;:::-;15109:612;14988:733;;;:::o;47982:1756::-;48021:23;48047:24;48065:4;48047:9;:24::i;:::-;48021:50;;48082:25;48178:12;;48144:18;;48110;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;48082:108;;48201:12;48249:1;48230:15;:20;:46;;;;48275:1;48254:17;:22;48230:46;48226:85;;;48293:7;;;;;48226:85;48366:2;48345:18;;:23;;;;:::i;:::-;48327:15;:41;48323:115;;;48424:2;48403:18;;:23;;;;:::i;:::-;48385:41;;48323:115;48499:23;48612:1;48579:17;48544:18;;48526:15;:36;;;;:::i;:::-;48525:71;;;;:::i;:::-;:88;;;;:::i;:::-;48499:114;;48624:26;48653:36;48673:15;48653;:19;;:36;;;;:::i;:::-;48624:65;;48702:25;48730:21;48702:49;;48764:36;48781:18;48764:16;:36::i;:::-;48813:18;48834:44;48860:17;48834:21;:25;;:44;;;;:::i;:::-;48813:65;;48891:23;48917:81;48970:17;48917:34;48932:18;;48917:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;48891:107;;49009:17;49029:51;49062:17;49029:28;49044:12;;49029:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;49009:71;;49093:23;49150:9;49132:15;49119:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;49093:66;;49193:1;49172:18;:22;;;;49226:1;49205:18;:22;;;;49253:1;49238:12;:16;;;;49289:9;;;;;;;;;;;49281:23;;49312:9;49281:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49267:59;;;;;49361:1;49343:15;:19;:42;;;;;49384:1;49366:15;:19;49343:42;49339:278;;;49402:46;49415:15;49432;49402:12;:46::i;:::-;49468:137;49501:18;49538:15;49572:18;;49468:137;;;;;;;;:::i;:::-;;;;;;;;49339:278;49651:15;;;;;;;;;;;49643:29;;49694:21;49643:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49629:101;;;;;48010:1728;;;;;;;;;;47982:1756;:::o;50309:788::-;50366:4;50400:15;50383:14;:32;;;;50470:28;50501:4;:14;;;50516:13;50501:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50470:60;;50580:20;50603:77;50664:5;50603:42;50628:16;;50603:20;:24;;:42;;;;:::i;:::-;:46;;:77;;;;:::i;:::-;50580:100;;50800:1;50785:12;:16;50781:110;;;50818:61;50834:13;50857:6;50866:12;50818:15;:61::i;:::-;50781:110;50966:19;51003:13;50966:51;;51028:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51055:12;;;;;;;;;;51085:4;51078:11;;;;;50309:788;:::o;18749:125::-;;;;:::o;19478:124::-;;;;:::o;22865:98::-;22923:7;22954:1;22950;:5;;;;:::i;:::-;22943:12;;22865:98;;;;:::o;46860:589::-;46986:21;47024:1;47010:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46986:40;;47055:4;47037;47042:1;47037:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;47081:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47071:4;47076:1;47071:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;47116:62;47133:4;47148:15;47166:11;47116:8;:62::i;:::-;47217:15;:66;;;47298:11;47324:1;47368:4;47395;47415:15;47217:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46915:534;46860:589;:::o;47457:517::-;47605:62;47622:4;47637:15;47655:11;47605:8;:62::i;:::-;47710:15;:31;;;47749:9;47782:4;47802:11;47828:1;47871;33044:6;47940:15;47710:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;47457:517;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:329::-;3553:6;3602:2;3590:9;3581:7;3577:23;3573:32;3570:119;;;3608:79;;:::i;:::-;3570:119;3728:1;3753:53;3798:7;3789:6;3778:9;3774:22;3753:53;:::i;:::-;3743:63;;3699:117;3494:329;;;;:::o;3829:60::-;3857:3;3878:5;3871:12;;3829:60;;;:::o;3895:142::-;3945:9;3978:53;3996:34;4005:24;4023:5;4005:24;:::i;:::-;3996:34;:::i;:::-;3978:53;:::i;:::-;3965:66;;3895:142;;;:::o;4043:126::-;4093:9;4126:37;4157:5;4126:37;:::i;:::-;4113:50;;4043:126;;;:::o;4175:153::-;4252:9;4285:37;4316:5;4285:37;:::i;:::-;4272:50;;4175:153;;;:::o;4334:185::-;4448:64;4506:5;4448:64;:::i;:::-;4443:3;4436:77;4334:185;;:::o;4525:276::-;4645:4;4683:2;4672:9;4668:18;4660:26;;4696:98;4791:1;4780:9;4776:17;4767:6;4696:98;:::i;:::-;4525:276;;;;:::o;4807:118::-;4894:24;4912:5;4894:24;:::i;:::-;4889:3;4882:37;4807:118;;:::o;4931:222::-;5024:4;5062:2;5051:9;5047:18;5039:26;;5075:71;5143:1;5132:9;5128:17;5119:6;5075:71;:::i;:::-;4931:222;;;;:::o;5159:329::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:119;;;5273:79;;:::i;:::-;5235:119;5393:1;5418:53;5463:7;5454:6;5443:9;5439:22;5418:53;:::i;:::-;5408:63;;5364:117;5159:329;;;;:::o;5494:619::-;5571:6;5579;5587;5636:2;5624:9;5615:7;5611:23;5607:32;5604:119;;;5642:79;;:::i;:::-;5604:119;5762:1;5787:53;5832:7;5823:6;5812:9;5808:22;5787:53;:::i;:::-;5777:63;;5733:117;5889:2;5915:53;5960:7;5951:6;5940:9;5936:22;5915:53;:::i;:::-;5905:63;;5860:118;6017:2;6043:53;6088:7;6079:6;6068:9;6064:22;6043:53;:::i;:::-;6033:63;;5988:118;5494:619;;;;;:::o;6119:118::-;6206:24;6224:5;6206:24;:::i;:::-;6201:3;6194:37;6119:118;;:::o;6243:222::-;6336:4;6374:2;6363:9;6359:18;6351:26;;6387:71;6455:1;6444:9;6440:17;6431:6;6387:71;:::i;:::-;6243:222;;;;:::o;6471:86::-;6506:7;6546:4;6539:5;6535:16;6524:27;;6471:86;;;:::o;6563:112::-;6646:22;6662:5;6646:22;:::i;:::-;6641:3;6634:35;6563:112;;:::o;6681:214::-;6770:4;6808:2;6797:9;6793:18;6785:26;;6821:67;6885:1;6874:9;6870:17;6861:6;6821:67;:::i;:::-;6681:214;;;;:::o;6901:116::-;6971:21;6986:5;6971:21;:::i;:::-;6964:5;6961:32;6951:60;;7007:1;7004;6997:12;6951:60;6901:116;:::o;7023:133::-;7066:5;7104:6;7091:20;7082:29;;7120:30;7144:5;7120:30;:::i;:::-;7023:133;;;;:::o;7162:613::-;7236:6;7244;7252;7301:2;7289:9;7280:7;7276:23;7272:32;7269:119;;;7307:79;;:::i;:::-;7269:119;7427:1;7452:53;7497:7;7488:6;7477:9;7473:22;7452:53;:::i;:::-;7442:63;;7398:117;7554:2;7580:53;7625:7;7616:6;7605:9;7601:22;7580:53;:::i;:::-;7570:63;;7525:118;7682:2;7708:50;7750:7;7741:6;7730:9;7726:22;7708:50;:::i;:::-;7698:60;;7653:115;7162:613;;;;;:::o;7781:468::-;7846:6;7854;7903:2;7891:9;7882:7;7878:23;7874:32;7871:119;;;7909:79;;:::i;:::-;7871:119;8029:1;8054:53;8099:7;8090:6;8079:9;8075:22;8054:53;:::i;:::-;8044:63;;8000:117;8156:2;8182:50;8224:7;8215:6;8204:9;8200:22;8182:50;:::i;:::-;8172:60;;8127:115;7781:468;;;;;:::o;8255:619::-;8332:6;8340;8348;8397:2;8385:9;8376:7;8372:23;8368:32;8365:119;;;8403:79;;:::i;:::-;8365:119;8523:1;8548:53;8593:7;8584:6;8573:9;8569:22;8548:53;:::i;:::-;8538:63;;8494:117;8650:2;8676:53;8721:7;8712:6;8701:9;8697:22;8676:53;:::i;:::-;8666:63;;8621:118;8778:2;8804:53;8849:7;8840:6;8829:9;8825:22;8804:53;:::i;:::-;8794:63;;8749:118;8255:619;;;;;:::o;8880:323::-;8936:6;8985:2;8973:9;8964:7;8960:23;8956:32;8953:119;;;8991:79;;:::i;:::-;8953:119;9111:1;9136:50;9178:7;9169:6;9158:9;9154:22;9136:50;:::i;:::-;9126:60;;9082:114;8880:323;;;;:::o;9209:474::-;9277:6;9285;9334:2;9322:9;9313:7;9309:23;9305:32;9302:119;;;9340:79;;:::i;:::-;9302:119;9460:1;9485:53;9530:7;9521:6;9510:9;9506:22;9485:53;:::i;:::-;9475:63;;9431:117;9587:2;9613:53;9658:7;9649:6;9638:9;9634:22;9613:53;:::i;:::-;9603:63;;9558:118;9209:474;;;;;:::o;9689:180::-;9737:77;9734:1;9727:88;9834:4;9831:1;9824:15;9858:4;9855:1;9848:15;9875:320;9919:6;9956:1;9950:4;9946:12;9936:22;;10003:1;9997:4;9993:12;10024:18;10014:81;;10080:4;10072:6;10068:17;10058:27;;10014:81;10142:2;10134:6;10131:14;10111:18;10108:38;10105:84;;;10161:18;;:::i;:::-;10105:84;9926:269;9875:320;;;:::o;10201:182::-;10341:34;10337:1;10329:6;10325:14;10318:58;10201:182;:::o;10389:366::-;10531:3;10552:67;10616:2;10611:3;10552:67;:::i;:::-;10545:74;;10628:93;10717:3;10628:93;:::i;:::-;10746:2;10741:3;10737:12;10730:19;;10389:366;;;:::o;10761:419::-;10927:4;10965:2;10954:9;10950:18;10942:26;;11014:9;11008:4;11004:20;11000:1;10989:9;10985:17;10978:47;11042:131;11168:4;11042:131;:::i;:::-;11034:139;;10761:419;;;:::o;11186:180::-;11234:77;11231:1;11224:88;11331:4;11328:1;11321:15;11355:4;11352:1;11345:15;11372:348;11412:7;11435:20;11453:1;11435:20;:::i;:::-;11430:25;;11469:20;11487:1;11469:20;:::i;:::-;11464:25;;11657:1;11589:66;11585:74;11582:1;11579:81;11574:1;11567:9;11560:17;11556:105;11553:131;;;11664:18;;:::i;:::-;11553:131;11712:1;11709;11705:9;11694:20;;11372:348;;;;:::o;11726:180::-;11774:77;11771:1;11764:88;11871:4;11868:1;11861:15;11895:4;11892:1;11885:15;11912:185;11952:1;11969:20;11987:1;11969:20;:::i;:::-;11964:25;;12003:20;12021:1;12003:20;:::i;:::-;11998:25;;12042:1;12032:35;;12047:18;;:::i;:::-;12032:35;12089:1;12086;12082:9;12077:14;;11912:185;;;;:::o;12103:234::-;12243:34;12239:1;12231:6;12227:14;12220:58;12312:17;12307:2;12299:6;12295:15;12288:42;12103:234;:::o;12343:366::-;12485:3;12506:67;12570:2;12565:3;12506:67;:::i;:::-;12499:74;;12582:93;12671:3;12582:93;:::i;:::-;12700:2;12695:3;12691:12;12684:19;;12343:366;;;:::o;12715:419::-;12881:4;12919:2;12908:9;12904:18;12896:26;;12968:9;12962:4;12958:20;12954:1;12943:9;12939:17;12932:47;12996:131;13122:4;12996:131;:::i;:::-;12988:139;;12715:419;;;:::o;13140:227::-;13280:34;13276:1;13268:6;13264:14;13257:58;13349:10;13344:2;13336:6;13332:15;13325:35;13140:227;:::o;13373:366::-;13515:3;13536:67;13600:2;13595:3;13536:67;:::i;:::-;13529:74;;13612:93;13701:3;13612:93;:::i;:::-;13730:2;13725:3;13721:12;13714:19;;13373:366;;;:::o;13745:419::-;13911:4;13949:2;13938:9;13934:18;13926:26;;13998:9;13992:4;13988:20;13984:1;13973:9;13969:17;13962:47;14026:131;14152:4;14026:131;:::i;:::-;14018:139;;13745:419;;;:::o;14170:305::-;14210:3;14229:20;14247:1;14229:20;:::i;:::-;14224:25;;14263:20;14281:1;14263:20;:::i;:::-;14258:25;;14417:1;14349:66;14345:74;14342:1;14339:81;14336:107;;;14423:18;;:::i;:::-;14336:107;14467:1;14464;14460:9;14453:16;;14170:305;;;;:::o;14481:238::-;14621:34;14617:1;14609:6;14605:14;14598:58;14690:21;14685:2;14677:6;14673:15;14666:46;14481:238;:::o;14725:366::-;14867:3;14888:67;14952:2;14947:3;14888:67;:::i;:::-;14881:74;;14964:93;15053:3;14964:93;:::i;:::-;15082:2;15077:3;15073:12;15066:19;;14725:366;;;:::o;15097:419::-;15263:4;15301:2;15290:9;15286:18;15278:26;;15350:9;15344:4;15340:20;15336:1;15325:9;15321:17;15314:47;15378:131;15504:4;15378:131;:::i;:::-;15370:139;;15097:419;;;:::o;15522:235::-;15662:34;15658:1;15650:6;15646:14;15639:58;15731:18;15726:2;15718:6;15714:15;15707:43;15522:235;:::o;15763:366::-;15905:3;15926:67;15990:2;15985:3;15926:67;:::i;:::-;15919:74;;16002:93;16091:3;16002:93;:::i;:::-;16120:2;16115:3;16111:12;16104:19;;15763:366;;;:::o;16135:419::-;16301:4;16339:2;16328:9;16324:18;16316:26;;16388:9;16382:4;16378:20;16374:1;16363:9;16359:17;16352:47;16416:131;16542:4;16416:131;:::i;:::-;16408:139;;16135:419;;;:::o;16560:244::-;16700:34;16696:1;16688:6;16684:14;16677:58;16769:27;16764:2;16756:6;16752:15;16745:52;16560:244;:::o;16810:366::-;16952:3;16973:67;17037:2;17032:3;16973:67;:::i;:::-;16966:74;;17049:93;17138:3;17049:93;:::i;:::-;17167:2;17162:3;17158:12;17151:19;;16810:366;;;:::o;17182:419::-;17348:4;17386:2;17375:9;17371:18;17363:26;;17435:9;17429:4;17425:20;17421:1;17410:9;17406:17;17399:47;17463:131;17589:4;17463:131;:::i;:::-;17455:139;;17182:419;;;:::o;17607:224::-;17747:34;17743:1;17735:6;17731:14;17724:58;17816:7;17811:2;17803:6;17799:15;17792:32;17607:224;:::o;17837:366::-;17979:3;18000:67;18064:2;18059:3;18000:67;:::i;:::-;17993:74;;18076:93;18165:3;18076:93;:::i;:::-;18194:2;18189:3;18185:12;18178:19;;17837:366;;;:::o;18209:419::-;18375:4;18413:2;18402:9;18398:18;18390:26;;18462:9;18456:4;18452:20;18448:1;18437:9;18433:17;18426:47;18490:131;18616:4;18490:131;:::i;:::-;18482:139;;18209:419;;;:::o;18634:223::-;18774:34;18770:1;18762:6;18758:14;18751:58;18843:6;18838:2;18830:6;18826:15;18819:31;18634:223;:::o;18863:366::-;19005:3;19026:67;19090:2;19085:3;19026:67;:::i;:::-;19019:74;;19102:93;19191:3;19102:93;:::i;:::-;19220:2;19215:3;19211:12;19204:19;;18863:366;;;:::o;19235:419::-;19401:4;19439:2;19428:9;19424:18;19416:26;;19488:9;19482:4;19478:20;19474:1;19463:9;19459:17;19452:47;19516:131;19642:4;19516:131;:::i;:::-;19508:139;;19235:419;;;:::o;19660:240::-;19800:34;19796:1;19788:6;19784:14;19777:58;19869:23;19864:2;19856:6;19852:15;19845:48;19660:240;:::o;19906:366::-;20048:3;20069:67;20133:2;20128:3;20069:67;:::i;:::-;20062:74;;20145:93;20234:3;20145:93;:::i;:::-;20263:2;20258:3;20254:12;20247:19;;19906:366;;;:::o;20278:419::-;20444:4;20482:2;20471:9;20467:18;20459:26;;20531:9;20525:4;20521:20;20517:1;20506:9;20502:17;20495:47;20559:131;20685:4;20559:131;:::i;:::-;20551:139;;20278:419;;;:::o;20703:239::-;20843:34;20839:1;20831:6;20827:14;20820:58;20912:22;20907:2;20899:6;20895:15;20888:47;20703:239;:::o;20948:366::-;21090:3;21111:67;21175:2;21170:3;21111:67;:::i;:::-;21104:74;;21187:93;21276:3;21187:93;:::i;:::-;21305:2;21300:3;21296:12;21289:19;;20948:366;;;:::o;21320:419::-;21486:4;21524:2;21513:9;21509:18;21501:26;;21573:9;21567:4;21563:20;21559:1;21548:9;21544:17;21537:47;21601:131;21727:4;21601:131;:::i;:::-;21593:139;;21320:419;;;:::o;21745:225::-;21885:34;21881:1;21873:6;21869:14;21862:58;21954:8;21949:2;21941:6;21937:15;21930:33;21745:225;:::o;21976:366::-;22118:3;22139:67;22203:2;22198:3;22139:67;:::i;:::-;22132:74;;22215:93;22304:3;22215:93;:::i;:::-;22333:2;22328:3;22324:12;22317:19;;21976:366;;;:::o;22348:419::-;22514:4;22552:2;22541:9;22537:18;22529:26;;22601:9;22595:4;22591:20;22587:1;22576:9;22572:17;22565:47;22629:131;22755:4;22629:131;:::i;:::-;22621:139;;22348:419;;;:::o;22773:182::-;22913:34;22909:1;22901:6;22897:14;22890:58;22773:182;:::o;22961:366::-;23103:3;23124:67;23188:2;23183:3;23124:67;:::i;:::-;23117:74;;23200:93;23289:3;23200:93;:::i;:::-;23318:2;23313:3;23309:12;23302:19;;22961:366;;;:::o;23333:419::-;23499:4;23537:2;23526:9;23522:18;23514:26;;23586:9;23580:4;23576:20;23572:1;23561:9;23557:17;23550:47;23614:131;23740:4;23614:131;:::i;:::-;23606:139;;23333:419;;;:::o;23758:229::-;23898:34;23894:1;23886:6;23882:14;23875:58;23967:12;23962:2;23954:6;23950:15;23943:37;23758:229;:::o;23993:366::-;24135:3;24156:67;24220:2;24215:3;24156:67;:::i;:::-;24149:74;;24232:93;24321:3;24232:93;:::i;:::-;24350:2;24345:3;24341:12;24334:19;;23993:366;;;:::o;24365:419::-;24531:4;24569:2;24558:9;24554:18;24546:26;;24618:9;24612:4;24608:20;24604:1;24593:9;24589:17;24582:47;24646:131;24772:4;24646:131;:::i;:::-;24638:139;;24365:419;;;:::o;24790:143::-;24847:5;24878:6;24872:13;24863:22;;24894:33;24921:5;24894:33;:::i;:::-;24790:143;;;;:::o;24939:351::-;25009:6;25058:2;25046:9;25037:7;25033:23;25029:32;25026:119;;;25064:79;;:::i;:::-;25026:119;25184:1;25209:64;25265:7;25256:6;25245:9;25241:22;25209:64;:::i;:::-;25199:74;;25155:128;24939:351;;;;:::o;25296:223::-;25436:34;25432:1;25424:6;25420:14;25413:58;25505:6;25500:2;25492:6;25488:15;25481:31;25296:223;:::o;25525:366::-;25667:3;25688:67;25752:2;25747:3;25688:67;:::i;:::-;25681:74;;25764:93;25853:3;25764:93;:::i;:::-;25882:2;25877:3;25873:12;25866:19;;25525:366;;;:::o;25897:419::-;26063:4;26101:2;26090:9;26086:18;26078:26;;26150:9;26144:4;26140:20;26136:1;26125:9;26121:17;26114:47;26178:131;26304:4;26178:131;:::i;:::-;26170:139;;25897:419;;;:::o;26322:221::-;26462:34;26458:1;26450:6;26446:14;26439:58;26531:4;26526:2;26518:6;26514:15;26507:29;26322:221;:::o;26549:366::-;26691:3;26712:67;26776:2;26771:3;26712:67;:::i;:::-;26705:74;;26788:93;26877:3;26788:93;:::i;:::-;26906:2;26901:3;26897:12;26890:19;;26549:366;;;:::o;26921:419::-;27087:4;27125:2;27114:9;27110:18;27102:26;;27174:9;27168:4;27164:20;27160:1;27149:9;27145:17;27138:47;27202:131;27328:4;27202:131;:::i;:::-;27194:139;;26921:419;;;:::o;27346:224::-;27486:34;27482:1;27474:6;27470:14;27463:58;27555:7;27550:2;27542:6;27538:15;27531:32;27346:224;:::o;27576:366::-;27718:3;27739:67;27803:2;27798:3;27739:67;:::i;:::-;27732:74;;27815:93;27904:3;27815:93;:::i;:::-;27933:2;27928:3;27924:12;27917:19;;27576:366;;;:::o;27948:419::-;28114:4;28152:2;28141:9;28137:18;28129:26;;28201:9;28195:4;28191:20;28187:1;28176:9;28172:17;28165:47;28229:131;28355:4;28229:131;:::i;:::-;28221:139;;27948:419;;;:::o;28373:222::-;28513:34;28509:1;28501:6;28497:14;28490:58;28582:5;28577:2;28569:6;28565:15;28558:30;28373:222;:::o;28601:366::-;28743:3;28764:67;28828:2;28823:3;28764:67;:::i;:::-;28757:74;;28840:93;28929:3;28840:93;:::i;:::-;28958:2;28953:3;28949:12;28942:19;;28601:366;;;:::o;28973:419::-;29139:4;29177:2;29166:9;29162:18;29154:26;;29226:9;29220:4;29216:20;29212:1;29201:9;29197:17;29190:47;29254:131;29380:4;29254:131;:::i;:::-;29246:139;;28973:419;;;:::o;29398:172::-;29538:24;29534:1;29526:6;29522:14;29515:48;29398:172;:::o;29576:366::-;29718:3;29739:67;29803:2;29798:3;29739:67;:::i;:::-;29732:74;;29815:93;29904:3;29815:93;:::i;:::-;29933:2;29928:3;29924:12;29917:19;;29576:366;;;:::o;29948:419::-;30114:4;30152:2;30141:9;30137:18;30129:26;;30201:9;30195:4;30191:20;30187:1;30176:9;30172:17;30165:47;30229:131;30355:4;30229:131;:::i;:::-;30221:139;;29948:419;;;:::o;30373:297::-;30513:34;30509:1;30501:6;30497:14;30490:58;30582:34;30577:2;30569:6;30565:15;30558:59;30651:11;30646:2;30638:6;30634:15;30627:36;30373:297;:::o;30676:366::-;30818:3;30839:67;30903:2;30898:3;30839:67;:::i;:::-;30832:74;;30915:93;31004:3;30915:93;:::i;:::-;31033:2;31028:3;31024:12;31017:19;;30676:366;;;:::o;31048:419::-;31214:4;31252:2;31241:9;31237:18;31229:26;;31301:9;31295:4;31291:20;31287:1;31276:9;31272:17;31265:47;31329:131;31455:4;31329:131;:::i;:::-;31321:139;;31048:419;;;:::o;31473:240::-;31613:34;31609:1;31601:6;31597:14;31590:58;31682:23;31677:2;31669:6;31665:15;31658:48;31473:240;:::o;31719:366::-;31861:3;31882:67;31946:2;31941:3;31882:67;:::i;:::-;31875:74;;31958:93;32047:3;31958:93;:::i;:::-;32076:2;32071:3;32067:12;32060:19;;31719:366;;;:::o;32091:419::-;32257:4;32295:2;32284:9;32280:18;32272:26;;32344:9;32338:4;32334:20;32330:1;32319:9;32315:17;32308:47;32372:131;32498:4;32372:131;:::i;:::-;32364:139;;32091:419;;;:::o;32516:169::-;32656:21;32652:1;32644:6;32640:14;32633:45;32516:169;:::o;32691:366::-;32833:3;32854:67;32918:2;32913:3;32854:67;:::i;:::-;32847:74;;32930:93;33019:3;32930:93;:::i;:::-;33048:2;33043:3;33039:12;33032:19;;32691:366;;;:::o;33063:419::-;33229:4;33267:2;33256:9;33252:18;33244:26;;33316:9;33310:4;33306:20;33302:1;33291:9;33287:17;33280:47;33344:131;33470:4;33344:131;:::i;:::-;33336:139;;33063:419;;;:::o;33488:241::-;33628:34;33624:1;33616:6;33612:14;33605:58;33697:24;33692:2;33684:6;33680:15;33673:49;33488:241;:::o;33735:366::-;33877:3;33898:67;33962:2;33957:3;33898:67;:::i;:::-;33891:74;;33974:93;34063:3;33974:93;:::i;:::-;34092:2;34087:3;34083:12;34076:19;;33735:366;;;:::o;34107:419::-;34273:4;34311:2;34300:9;34296:18;34288:26;;34360:9;34354:4;34350:20;34346:1;34335:9;34331:17;34324:47;34388:131;34514:4;34388:131;:::i;:::-;34380:139;;34107:419;;;:::o;34532:191::-;34572:4;34592:20;34610:1;34592:20;:::i;:::-;34587:25;;34626:20;34644:1;34626:20;:::i;:::-;34621:25;;34665:1;34662;34659:8;34656:34;;;34670:18;;:::i;:::-;34656:34;34715:1;34712;34708:9;34700:17;;34532:191;;;;:::o;34729:225::-;34869:34;34865:1;34857:6;34853:14;34846:58;34938:8;34933:2;34925:6;34921:15;34914:33;34729:225;:::o;34960:366::-;35102:3;35123:67;35187:2;35182:3;35123:67;:::i;:::-;35116:74;;35199:93;35288:3;35199:93;:::i;:::-;35317:2;35312:3;35308:12;35301:19;;34960:366;;;:::o;35332:419::-;35498:4;35536:2;35525:9;35521:18;35513:26;;35585:9;35579:4;35575:20;35571:1;35560:9;35556:17;35549:47;35613:131;35739:4;35613:131;:::i;:::-;35605:139;;35332:419;;;:::o;35757:147::-;35858:11;35895:3;35880:18;;35757:147;;;;:::o;35910:114::-;;:::o;36030:398::-;36189:3;36210:83;36291:1;36286:3;36210:83;:::i;:::-;36203:90;;36302:93;36391:3;36302:93;:::i;:::-;36420:1;36415:3;36411:11;36404:18;;36030:398;;;:::o;36434:379::-;36618:3;36640:147;36783:3;36640:147;:::i;:::-;36633:154;;36804:3;36797:10;;36434:379;;;:::o;36819:442::-;36968:4;37006:2;36995:9;36991:18;36983:26;;37019:71;37087:1;37076:9;37072:17;37063:6;37019:71;:::i;:::-;37100:72;37168:2;37157:9;37153:18;37144:6;37100:72;:::i;:::-;37182;37250:2;37239:9;37235:18;37226:6;37182:72;:::i;:::-;36819:442;;;;;;:::o;37267:180::-;37315:77;37312:1;37305:88;37412:4;37409:1;37402:15;37436:4;37433:1;37426:15;37453:180;37501:77;37498:1;37491:88;37598:4;37595:1;37588:15;37622:4;37619:1;37612:15;37639:143;37696:5;37727:6;37721:13;37712:22;;37743:33;37770:5;37743:33;:::i;:::-;37639:143;;;;:::o;37788:351::-;37858:6;37907:2;37895:9;37886:7;37882:23;37878:32;37875:119;;;37913:79;;:::i;:::-;37875:119;38033:1;38058:64;38114:7;38105:6;38094:9;38090:22;38058:64;:::i;:::-;38048:74;;38004:128;37788:351;;;;:::o;38145:85::-;38190:7;38219:5;38208:16;;38145:85;;;:::o;38236:158::-;38294:9;38327:61;38345:42;38354:32;38380:5;38354:32;:::i;:::-;38345:42;:::i;:::-;38327:61;:::i;:::-;38314:74;;38236:158;;;:::o;38400:147::-;38495:45;38534:5;38495:45;:::i;:::-;38490:3;38483:58;38400:147;;:::o;38553:114::-;38620:6;38654:5;38648:12;38638:22;;38553:114;;;:::o;38673:184::-;38772:11;38806:6;38801:3;38794:19;38846:4;38841:3;38837:14;38822:29;;38673:184;;;;:::o;38863:132::-;38930:4;38953:3;38945:11;;38983:4;38978:3;38974:14;38966:22;;38863:132;;;:::o;39001:108::-;39078:24;39096:5;39078:24;:::i;:::-;39073:3;39066:37;39001:108;;:::o;39115:179::-;39184:10;39205:46;39247:3;39239:6;39205:46;:::i;:::-;39283:4;39278:3;39274:14;39260:28;;39115:179;;;;:::o;39300:113::-;39370:4;39402;39397:3;39393:14;39385:22;;39300:113;;;:::o;39449:732::-;39568:3;39597:54;39645:5;39597:54;:::i;:::-;39667:86;39746:6;39741:3;39667:86;:::i;:::-;39660:93;;39777:56;39827:5;39777:56;:::i;:::-;39856:7;39887:1;39872:284;39897:6;39894:1;39891:13;39872:284;;;39973:6;39967:13;40000:63;40059:3;40044:13;40000:63;:::i;:::-;39993:70;;40086:60;40139:6;40086:60;:::i;:::-;40076:70;;39932:224;39919:1;39916;39912:9;39907:14;;39872:284;;;39876:14;40172:3;40165:10;;39573:608;;;39449:732;;;;:::o;40187:831::-;40450:4;40488:3;40477:9;40473:19;40465:27;;40502:71;40570:1;40559:9;40555:17;40546:6;40502:71;:::i;:::-;40583:80;40659:2;40648:9;40644:18;40635:6;40583:80;:::i;:::-;40710:9;40704:4;40700:20;40695:2;40684:9;40680:18;40673:48;40738:108;40841:4;40832:6;40738:108;:::i;:::-;40730:116;;40856:72;40924:2;40913:9;40909:18;40900:6;40856:72;:::i;:::-;40938:73;41006:3;40995:9;40991:19;40982:6;40938:73;:::i;:::-;40187:831;;;;;;;;:::o;41024:807::-;41273:4;41311:3;41300:9;41296:19;41288:27;;41325:71;41393:1;41382:9;41378:17;41369:6;41325:71;:::i;:::-;41406:72;41474:2;41463:9;41459:18;41450:6;41406:72;:::i;:::-;41488:80;41564:2;41553:9;41549:18;41540:6;41488:80;:::i;:::-;41578;41654:2;41643:9;41639:18;41630:6;41578:80;:::i;:::-;41668:73;41736:3;41725:9;41721:19;41712:6;41668:73;:::i;:::-;41751;41819:3;41808:9;41804:19;41795:6;41751:73;:::i;:::-;41024:807;;;;;;;;;:::o;41837:663::-;41925:6;41933;41941;41990:2;41978:9;41969:7;41965:23;41961:32;41958:119;;;41996:79;;:::i;:::-;41958:119;42116:1;42141:64;42197:7;42188:6;42177:9;42173:22;42141:64;:::i;:::-;42131:74;;42087:128;42254:2;42280:64;42336:7;42327:6;42316:9;42312:22;42280:64;:::i;:::-;42270:74;;42225:129;42393:2;42419:64;42475:7;42466:6;42455:9;42451:22;42419:64;:::i;:::-;42409:74;;42364:129;41837:663;;;;;:::o

Swarm Source

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