ETH Price: $2,972.17 (-0.73%)
Gas: 6 Gwei

Token

MUNCH AGENCY (MUNCH)
 

Overview

Max Total Supply

1,000,000,000,000 MUNCH

Holders

339

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,633,494,263.022127891836961468 MUNCH

Value
$0.00
0xf215Bcdf7b5607915007ed85a2DF99f49875262e
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:
MUNCH

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-18
*/

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


contract MUNCH  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; 
    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;

    mapping(address => uint256) private _holderLastTransferTimestamp;
    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("MUNCH AGENCY", "MUNCH") {
        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 = 3;
        uint256 _buyLiquidityFee = 3;
        uint256 _buyDevFee = 3;

        uint256 _sellMarketingFee = 3;
        uint256 _sellLiquidityFee = 3;
        uint256 _sellDevFee = 3;

        uint256 totalSupply = 1_000_000_000_000 * 1e18;

        maxTransactionAmount = 2_000_000_000 * 1e18; 
        maxWallet = 2_000_000_000 * 1e18; 
        swapTokensAtAmount = (totalSupply * 5) / 10000; 

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

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

        marketingWallet = address(0x13dA81dA63809b9bb2761F2143bA1ee080fAc647); 
        devWallet = address(0x33ed1F8fBF17D14e16A08b7b6E66d1C20B713866); 

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

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

        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        lastLpBurnTime = block.timestamp;
    }

    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = false;
        return true;
    }

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

    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 <= 9, "Must keep fees at 9% or less");
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 9, "Must keep fees at 9% or less");
    }

    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 isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

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

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

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

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                if (transferDelayEnabled) {
                    if (
                        to != owner() &&
                        to != address(uniswapV2Router) &&
                        to != address(uniswapV2Pair)
                    ) {
                        require(
                            _holderLastTransferTimestamp[tx.origin] <
                                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":"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":[{"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"}]

60c06040526019600b556001600c60006101000a81548160ff021916908315150217905550610e10600d55610708600f556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff0219169083151502179055506001601360006101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060400160405280600c81526020017f4d554e4348204147454e435900000000000000000000000000000000000000008152506040518060400160405280600581526020017f4d554e4348000000000000000000000000000000000000000000000000000000815250816003908162000127919062000d8d565b50806004908162000139919062000d8d565b5050506200015c62000150620005d460201b60201c565b620005dc60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905062000188816001620006a260201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000208573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200022e919062000ede565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000296573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002bc919062000ede565b6040518363ffffffff1660e01b8152600401620002db92919062000f21565b6020604051808303816000875af1158015620002fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000321919062000ede565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200036960a0516001620006a260201b60201c565b6200037e60a05160016200078c60201b60201c565b60006003905060006003905060006003905060006003905060006003905060006003905060006c0c9f2c9cd04674edea4000000090506b06765c793fa10079d00000006008819055506b06765c793fa10079d0000000600a81905550612710600582620003ec919062000f7d565b620003f8919062000ff7565b6009819055508660158190555085601681905550846017819055506017546016546015546200042891906200102f565b6200043491906200102f565b6014819055508360198190555082601a8190555081601b81905550601b54601a546019546200046491906200102f565b6200047091906200102f565b6018819055507313da81da63809b9bb2761f2143ba1ee080fac647600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507333ed1f8fbf17d14e16a08b7b6e66d1c20b713866600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000542620005346200082d60201b60201c565b60016200085760201b60201c565b620005553060016200085760201b60201c565b6200056a61dead60016200085760201b60201c565b6200058c6200057e6200082d60201b60201c565b6001620006a260201b60201c565b6200059f306001620006a260201b60201c565b620005b461dead6001620006a260201b60201c565b620005c633826200099160201b60201c565b5050505050505050620011c7565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006b2620005d460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006d86200082d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000731576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200072890620010cb565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000867620005d460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200088d6200082d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008e6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008dd90620010cb565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516200098591906200110a565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000a03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009fa9062001177565b60405180910390fd5b62000a176000838362000b0960201b60201c565b806002600082825462000a2b91906200102f565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a8291906200102f565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000ae99190620011aa565b60405180910390a362000b056000838362000b0e60201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000b9557607f821691505b60208210810362000bab5762000baa62000b4d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000c157fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000bd6565b62000c21868362000bd6565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000c6e62000c6862000c628462000c39565b62000c43565b62000c39565b9050919050565b6000819050919050565b62000c8a8362000c4d565b62000ca262000c998262000c75565b84845462000be3565b825550505050565b600090565b62000cb962000caa565b62000cc681848462000c7f565b505050565b5b8181101562000cee5762000ce260008262000caf565b60018101905062000ccc565b5050565b601f82111562000d3d5762000d078162000bb1565b62000d128462000bc6565b8101602085101562000d22578190505b62000d3a62000d318562000bc6565b83018262000ccb565b50505b505050565b600082821c905092915050565b600062000d626000198460080262000d42565b1980831691505092915050565b600062000d7d838362000d4f565b9150826002028217905092915050565b62000d988262000b13565b67ffffffffffffffff81111562000db45762000db362000b1e565b5b62000dc0825462000b7c565b62000dcd82828562000cf2565b600060209050601f83116001811462000e05576000841562000df0578287015190505b62000dfc858262000d6f565b86555062000e6c565b601f19841662000e158662000bb1565b60005b8281101562000e3f5784890151825560018201915060208501945060208101905062000e18565b8683101562000e5f578489015162000e5b601f89168262000d4f565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000ea68262000e79565b9050919050565b62000eb88162000e99565b811462000ec457600080fd5b50565b60008151905062000ed88162000ead565b92915050565b60006020828403121562000ef75762000ef662000e74565b5b600062000f078482850162000ec7565b91505092915050565b62000f1b8162000e99565b82525050565b600060408201905062000f38600083018562000f10565b62000f47602083018462000f10565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000f8a8262000c39565b915062000f978362000c39565b925082820262000fa78162000c39565b9150828204841483151762000fc15762000fc062000f4e565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620010048262000c39565b9150620010118362000c39565b92508262001024576200102362000fc8565b5b828204905092915050565b60006200103c8262000c39565b9150620010498362000c39565b925082820190508082111562001064576200106362000f4e565b5b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620010b36020836200106a565b9150620010c0826200107b565b602082019050919050565b60006020820190508181036000830152620010e681620010a4565b9050919050565b60008115159050919050565b6200110481620010ed565b82525050565b6000602082019050620011216000830184620010f9565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200115f601f836200106a565b91506200116c8262001127565b602082019050919050565b60006020820190508181036000830152620011928162001150565b9050919050565b620011a48162000c39565b82525050565b6000602082019050620011c1600083018462001199565b92915050565b60805160a051615b7f6200124f600039600081816113ed01528181611bfd01528181612745015281816127fc0152818161282901528181612e6801528181613f6a015281816140230152614050015260008181610f9001528181612e10015281816141c6015281816142a7015281816142ce0152818161436a01526143910152615b7f6000f3fe6080604052600436106103b15760003560e01c80638da5cb5b116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e03578063f637434214610e2c578063f8b45b0514610e57578063fe72b27a14610e82576103b8565b8063dd62ed3e14610d45578063e2f4560514610d82578063e884f26014610dad578063f11a24d314610dd8576103b8565b8063c876d0b9116100dc578063c876d0b914610c87578063c8c8ebe414610cb2578063d257b34f14610cdd578063d85ba06314610d1a576103b8565b8063bbc0c74214610be1578063c024666814610c0c578063c17b5b8c14610c35578063c18bc19514610c5e576103b8565b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a0014610b13578063a9059cbb14610b3e578063aacebbe314610b7b578063b62496f514610ba4576103b8565b80639ec22c0e14610a555780639fccce3214610a80578063a0d82dc514610aab578063a457c2d714610ad6576103b8565b8063924de9b7116101c1578063924de9b7146109ad57806395d89b41146109d65780639a7a23d614610a015780639c3b4fdc14610a2a576103b8565b80638da5cb5b1461092c5780638ea5220f146109575780639213691314610982576103b8565b8063313ce567116102d7578063715018a61161026a57806375f0a8741161023957806375f0a874146108965780637bce5a04146108c15780638095d564146108ec5780638a8c523c14610915576103b8565b8063715018a614610802578063730c188814610819578063751039fc146108425780637571336a1461086d576103b8565b80634fbee193116102a65780634fbee193146107325780636a486a8e1461076f5780636ddd17131461079a57806370a08231146107c5576103b8565b8063313ce56714610674578063395093511461069f57806349bd5a5e146106dc5780634a62bb6514610707576103b8565b8063199ffc721161034f57806323b872dd1161031e57806323b872dd146105b657806327c8f835146105f35780632c3e486c1461061e5780632e82f1a014610649576103b8565b8063199ffc721461050c5780631a8145bb146105375780631f3fed8f14610562578063203e727e1461058d576103b8565b80631694505e1161038b5780631694505e1461046257806318160ddd1461048d5780631816467f146104b8578063184c16c5146104e1576103b8565b806306fdde03146103bd578063095ea7b3146103e857806310d5de5314610425576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610ebf565b6040516103df91906144d0565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a919061458b565b610f51565b60405161041c91906145e6565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190614601565b610f6f565b60405161045991906145e6565b60405180910390f35b34801561046e57600080fd5b50610477610f8e565b604051610484919061468d565b60405180910390f35b34801561049957600080fd5b506104a2610fb2565b6040516104af91906146b7565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da9190614601565b610fbc565b005b3480156104ed57600080fd5b506104f66110f8565b60405161050391906146b7565b60405180910390f35b34801561051857600080fd5b506105216110fe565b60405161052e91906146b7565b60405180910390f35b34801561054357600080fd5b5061054c611104565b60405161055991906146b7565b60405180910390f35b34801561056e57600080fd5b5061057761110a565b60405161058491906146b7565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af91906146d2565b611110565b005b3480156105c257600080fd5b506105dd60048036038101906105d891906146ff565b61121f565b6040516105ea91906145e6565b60405180910390f35b3480156105ff57600080fd5b50610608611317565b6040516106159190614761565b60405180910390f35b34801561062a57600080fd5b5061063361131d565b60405161064091906146b7565b60405180910390f35b34801561065557600080fd5b5061065e611323565b60405161066b91906145e6565b60405180910390f35b34801561068057600080fd5b50610689611336565b6040516106969190614798565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c1919061458b565b61133f565b6040516106d391906145e6565b60405180910390f35b3480156106e857600080fd5b506106f16113eb565b6040516106fe9190614761565b60405180910390f35b34801561071357600080fd5b5061071c61140f565b60405161072991906145e6565b60405180910390f35b34801561073e57600080fd5b5061075960048036038101906107549190614601565b611422565b60405161076691906145e6565b60405180910390f35b34801561077b57600080fd5b50610784611478565b60405161079191906146b7565b60405180910390f35b3480156107a657600080fd5b506107af61147e565b6040516107bc91906145e6565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e79190614601565b611491565b6040516107f991906146b7565b60405180910390f35b34801561080e57600080fd5b506108176114d9565b005b34801561082557600080fd5b50610840600480360381019061083b91906147df565b611561565b005b34801561084e57600080fd5b506108576116a1565b60405161086491906145e6565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f9190614832565b611741565b005b3480156108a257600080fd5b506108ab611818565b6040516108b89190614761565b60405180910390f35b3480156108cd57600080fd5b506108d661183e565b6040516108e391906146b7565b60405180910390f35b3480156108f857600080fd5b50610913600480360381019061090e9190614872565b611844565b005b34801561092157600080fd5b5061092a611943565b005b34801561093857600080fd5b506109416119fe565b60405161094e9190614761565b60405180910390f35b34801561096357600080fd5b5061096c611a28565b6040516109799190614761565b60405180910390f35b34801561098e57600080fd5b50610997611a4e565b6040516109a491906146b7565b60405180910390f35b3480156109b957600080fd5b506109d460048036038101906109cf91906148c5565b611a54565b005b3480156109e257600080fd5b506109eb611aed565b6040516109f891906144d0565b60405180910390f35b348015610a0d57600080fd5b50610a286004803603810190610a239190614832565b611b7f565b005b348015610a3657600080fd5b50610a3f611c97565b604051610a4c91906146b7565b60405180910390f35b348015610a6157600080fd5b50610a6a611c9d565b604051610a7791906146b7565b60405180910390f35b348015610a8c57600080fd5b50610a95611ca3565b604051610aa291906146b7565b60405180910390f35b348015610ab757600080fd5b50610ac0611ca9565b604051610acd91906146b7565b60405180910390f35b348015610ae257600080fd5b50610afd6004803603810190610af8919061458b565b611caf565b604051610b0a91906145e6565b60405180910390f35b348015610b1f57600080fd5b50610b28611d9a565b604051610b3591906146b7565b60405180910390f35b348015610b4a57600080fd5b50610b656004803603810190610b60919061458b565b611da0565b604051610b7291906145e6565b60405180910390f35b348015610b8757600080fd5b50610ba26004803603810190610b9d9190614601565b611dbe565b005b348015610bb057600080fd5b50610bcb6004803603810190610bc69190614601565b611efa565b604051610bd891906145e6565b60405180910390f35b348015610bed57600080fd5b50610bf6611f1a565b604051610c0391906145e6565b60405180910390f35b348015610c1857600080fd5b50610c336004803603810190610c2e9190614832565b611f2d565b005b348015610c4157600080fd5b50610c5c6004803603810190610c579190614872565b612052565b005b348015610c6a57600080fd5b50610c856004803603810190610c8091906146d2565b612151565b005b348015610c9357600080fd5b50610c9c612260565b604051610ca991906145e6565b60405180910390f35b348015610cbe57600080fd5b50610cc7612273565b604051610cd491906146b7565b60405180910390f35b348015610ce957600080fd5b50610d046004803603810190610cff91906146d2565b612279565b604051610d1191906145e6565b60405180910390f35b348015610d2657600080fd5b50610d2f6123ce565b604051610d3c91906146b7565b60405180910390f35b348015610d5157600080fd5b50610d6c6004803603810190610d6791906148f2565b6123d4565b604051610d7991906146b7565b60405180910390f35b348015610d8e57600080fd5b50610d9761245b565b604051610da491906146b7565b60405180910390f35b348015610db957600080fd5b50610dc2612461565b604051610dcf91906145e6565b60405180910390f35b348015610de457600080fd5b50610ded612501565b604051610dfa91906146b7565b60405180910390f35b348015610e0f57600080fd5b50610e2a6004803603810190610e259190614601565b612507565b005b348015610e3857600080fd5b50610e416125fe565b604051610e4e91906146b7565b60405180910390f35b348015610e6357600080fd5b50610e6c612604565b604051610e7991906146b7565b60405180910390f35b348015610e8e57600080fd5b50610ea96004803603810190610ea491906146d2565b61260a565b604051610eb691906145e6565b60405180910390f35b606060038054610ece90614961565b80601f0160208091040260200160405190810160405280929190818152602001828054610efa90614961565b8015610f475780601f10610f1c57610100808354040283529160200191610f47565b820191906000526020600020905b815481529060010190602001808311610f2a57829003601f168201915b5050505050905090565b6000610f65610f5e6128e2565b84846128ea565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610fc46128e2565b73ffffffffffffffffffffffffffffffffffffffff16610fe26119fe565b73ffffffffffffffffffffffffffffffffffffffff1614611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f906149de565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b6111186128e2565b73ffffffffffffffffffffffffffffffffffffffff166111366119fe565b73ffffffffffffffffffffffffffffffffffffffff161461118c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611183906149de565b60405180910390fd5b670de0b6b3a76400006103e860016111a2610fb2565b6111ac9190614a2d565b6111b69190614a9e565b6111c09190614a9e565b811015611202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f990614b41565b60405180910390fd5b670de0b6b3a7640000816112169190614a2d565b60088190555050565b600061122c848484612ab3565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006112776128e2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156112f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ee90614bd3565b60405180910390fd5b61130b856113036128e2565b8584036128ea565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60006113e161134c6128e2565b84846001600061135a6128e2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113dc9190614bf3565b6128ea565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114e16128e2565b73ffffffffffffffffffffffffffffffffffffffff166114ff6119fe565b73ffffffffffffffffffffffffffffffffffffffff1614611555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154c906149de565b60405180910390fd5b61155f6000613848565b565b6115696128e2565b73ffffffffffffffffffffffffffffffffffffffff166115876119fe565b73ffffffffffffffffffffffffffffffffffffffff16146115dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d4906149de565b60405180910390fd5b610258831015611622576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161990614c99565b60405180910390fd5b6103e88211158015611635575060008210155b611674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166b90614d2b565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006116ab6128e2565b73ffffffffffffffffffffffffffffffffffffffff166116c96119fe565b73ffffffffffffffffffffffffffffffffffffffff161461171f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611716906149de565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b6117496128e2565b73ffffffffffffffffffffffffffffffffffffffff166117676119fe565b73ffffffffffffffffffffffffffffffffffffffff16146117bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b4906149de565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b61184c6128e2565b73ffffffffffffffffffffffffffffffffffffffff1661186a6119fe565b73ffffffffffffffffffffffffffffffffffffffff16146118c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b7906149de565b60405180910390fd5b8260158190555081601681905550806017819055506017546016546015546118e89190614bf3565b6118f29190614bf3565b6014819055506009601454111561193e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193590614d97565b60405180910390fd5b505050565b61194b6128e2565b73ffffffffffffffffffffffffffffffffffffffff166119696119fe565b73ffffffffffffffffffffffffffffffffffffffff16146119bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b6906149de565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b611a5c6128e2565b73ffffffffffffffffffffffffffffffffffffffff16611a7a6119fe565b73ffffffffffffffffffffffffffffffffffffffff1614611ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac7906149de565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611afc90614961565b80601f0160208091040260200160405190810160405280929190818152602001828054611b2890614961565b8015611b755780601f10611b4a57610100808354040283529160200191611b75565b820191906000526020600020905b815481529060010190602001808311611b5857829003601f168201915b5050505050905090565b611b876128e2565b73ffffffffffffffffffffffffffffffffffffffff16611ba56119fe565b73ffffffffffffffffffffffffffffffffffffffff1614611bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf2906149de565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8090614e29565b60405180910390fd5b611c93828261390e565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611cbe6128e2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7290614ebb565b60405180910390fd5b611d8f611d866128e2565b858584036128ea565b600191505092915050565b600e5481565b6000611db4611dad6128e2565b8484612ab3565b6001905092915050565b611dc66128e2565b73ffffffffffffffffffffffffffffffffffffffff16611de46119fe565b73ffffffffffffffffffffffffffffffffffffffff1614611e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e31906149de565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611f356128e2565b73ffffffffffffffffffffffffffffffffffffffff16611f536119fe565b73ffffffffffffffffffffffffffffffffffffffff1614611fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa0906149de565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161204691906145e6565b60405180910390a25050565b61205a6128e2565b73ffffffffffffffffffffffffffffffffffffffff166120786119fe565b73ffffffffffffffffffffffffffffffffffffffff16146120ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c5906149de565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a546019546120f69190614bf3565b6121009190614bf3565b6018819055506009601854111561214c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214390614d97565b60405180910390fd5b505050565b6121596128e2565b73ffffffffffffffffffffffffffffffffffffffff166121776119fe565b73ffffffffffffffffffffffffffffffffffffffff16146121cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c4906149de565b60405180910390fd5b670de0b6b3a76400006103e860056121e3610fb2565b6121ed9190614a2d565b6121f79190614a9e565b6122019190614a9e565b811015612243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223a90614f4d565b60405180910390fd5b670de0b6b3a7640000816122579190614a2d565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b60006122836128e2565b73ffffffffffffffffffffffffffffffffffffffff166122a16119fe565b73ffffffffffffffffffffffffffffffffffffffff16146122f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ee906149de565b60405180910390fd5b620186a06001612305610fb2565b61230f9190614a2d565b6123199190614a9e565b82101561235b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235290614fdf565b60405180910390fd5b6103e86005612368610fb2565b6123729190614a2d565b61237c9190614a9e565b8211156123be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b590615071565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061246b6128e2565b73ffffffffffffffffffffffffffffffffffffffff166124896119fe565b73ffffffffffffffffffffffffffffffffffffffff16146124df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d6906149de565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b61250f6128e2565b73ffffffffffffffffffffffffffffffffffffffff1661252d6119fe565b73ffffffffffffffffffffffffffffffffffffffff1614612583576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257a906149de565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036125f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e990615103565b60405180910390fd5b6125fb81613848565b50565b601a5481565b600a5481565b60006126146128e2565b73ffffffffffffffffffffffffffffffffffffffff166126326119fe565b73ffffffffffffffffffffffffffffffffffffffff1614612688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267f906149de565b60405180910390fd5b600f546010546126989190614bf3565b42116126d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d09061516f565b60405180910390fd5b6103e882111561271e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271590615201565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b81526004016127809190614761565b602060405180830381865afa15801561279d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127c19190615236565b905060006127ec6127106127de86856139af90919063ffffffff16565b6139c590919063ffffffff16565b90506000811115612825576128247f000000000000000000000000000000000000000000000000000000000000000061dead836139db565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561289257600080fd5b505af11580156128a6573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612959576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612950906152d5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036129c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129bf90615367565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612aa691906146b7565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b19906153f9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b889061548b565b60405180910390fd5b60008103612baa57612ba5838360006139db565b613843565b601160009054906101000a900460ff161561326d57612bc76119fe565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612c355750612c056119fe565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c6e5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ca8575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612cc15750600560149054906101000a900460ff16155b1561326c57601160019054906101000a900460ff16612dbb57601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d7b5750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db1906154f7565b60405180910390fd5b5b601360009054906101000a900460ff1615612f8357612dd86119fe565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612e5f57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612eb757507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612f825743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612f3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f34906155af565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156130265750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156130cd57600854811115613070576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306790615641565b60405180910390fd5b600a5461307c83611491565b826130879190614bf3565b11156130c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130bf906156ad565b60405180910390fd5b61326b565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131705750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156131bf576008548111156131ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131b19061573f565b60405180910390fd5b61326a565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661326957600a5461321c83611491565b826132279190614bf3565b1115613268576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325f906156ad565b60405180910390fd5b5b5b5b5b5b600061327830611491565b90506000600954821015905080801561329d5750601160029054906101000a900460ff165b80156132b65750600560149054906101000a900460ff16155b801561330c5750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133625750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133b85750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156133fc576001600560146101000a81548160ff0219169083151502179055506133e0613c5a565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156134625750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561347a5750600c60009054906101000a900460ff165b80156134955750600d54600e546134919190614bf3565b4210155b80156134eb5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156134fa576134f8613f41565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806135b05750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156135ba57600090505b6000811561383357602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561361d57506000601854115b156136ea5761364a606461363c601854886139af90919063ffffffff16565b6139c590919063ffffffff16565b9050601854601a548261365d9190614a2d565b6136679190614a9e565b601d60008282546136789190614bf3565b92505081905550601854601b54826136909190614a2d565b61369a9190614a9e565b601e60008282546136ab9190614bf3565b92505081905550601854601954826136c39190614a2d565b6136cd9190614a9e565b601c60008282546136de9190614bf3565b9250508190555061380f565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561374557506000601454115b1561380e576137726064613764601454886139af90919063ffffffff16565b6139c590919063ffffffff16565b9050601454601654826137859190614a2d565b61378f9190614a9e565b601d60008282546137a09190614bf3565b92505081905550601454601754826137b89190614a2d565b6137c29190614a9e565b601e60008282546137d39190614bf3565b92505081905550601454601554826137eb9190614a2d565b6137f59190614a9e565b601c60008282546138069190614bf3565b925050819055505b5b6000811115613824576138238730836139db565b5b8085613830919061575f565b94505b61383e8787876139db565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600081836139bd9190614a2d565b905092915050565b600081836139d39190614a9e565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613a4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a41906153f9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613ab9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ab09061548b565b60405180910390fd5b613ac4838383614107565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613b4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b4190615805565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613bdd9190614bf3565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613c4191906146b7565b60405180910390a3613c5484848461410c565b50505050565b6000613c6530611491565b90506000601e54601c54601d54613c7c9190614bf3565b613c869190614bf3565b9050600080831480613c985750600082145b15613ca557505050613f3f565b6014600954613cb49190614a2d565b831115613ccd576014600954613cca9190614a2d565b92505b6000600283601d5486613ce09190614a2d565b613cea9190614a9e565b613cf49190614a9e565b90506000613d0b828661411190919063ffffffff16565b90506000479050613d1b82614127565b6000613d30824761411190919063ffffffff16565b90506000613d5b87613d4d601c54856139af90919063ffffffff16565b6139c590919063ffffffff16565b90506000613d8688613d78601e54866139af90919063ffffffff16565b6139c590919063ffffffff16565b90506000818385613d97919061575f565b613da1919061575f565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613e0190615856565b60006040518083038185875af1925050503d8060008114613e3e576040519150601f19603f3d011682016040523d82523d6000602084013e613e43565b606091505b505080985050600087118015613e595750600081115b15613ea657613e688782614364565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613e9d9392919061586b565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613eec90615856565b60006040518083038185875af1925050503d8060008114613f29576040519150601f19603f3d011682016040523d82523d6000602084013e613f2e565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b8152600401613fa59190614761565b602060405180830381865afa158015613fc2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613fe69190615236565b90506000614013612710614005600b54856139af90919063ffffffff16565b6139c590919063ffffffff16565b9050600081111561404c5761404b7f000000000000000000000000000000000000000000000000000000000000000061dead836139db565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156140b957600080fd5b505af11580156140cd573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b6000818361411f919061575f565b905092915050565b6000600267ffffffffffffffff811115614144576141436158a2565b5b6040519080825280602002602001820160405280156141725781602001602082028036833780820191505090505b509050308160008151811061418a576141896158d1565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561422f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906142539190615915565b81600181518110614267576142666158d1565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506142cc307f0000000000000000000000000000000000000000000000000000000000000000846128ea565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161432e959493929190615a3b565b600060405180830381600087803b15801561434857600080fd5b505af115801561435c573d6000803e3d6000fd5b505050505050565b61438f307f0000000000000000000000000000000000000000000000000000000000000000846128ea565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b81526004016143f696959493929190615a95565b60606040518083038185885af1158015614414573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906144399190615af6565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561447a57808201518184015260208101905061445f565b60008484015250505050565b6000601f19601f8301169050919050565b60006144a282614440565b6144ac818561444b565b93506144bc81856020860161445c565b6144c581614486565b840191505092915050565b600060208201905081810360008301526144ea8184614497565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000614522826144f7565b9050919050565b61453281614517565b811461453d57600080fd5b50565b60008135905061454f81614529565b92915050565b6000819050919050565b61456881614555565b811461457357600080fd5b50565b6000813590506145858161455f565b92915050565b600080604083850312156145a2576145a16144f2565b5b60006145b085828601614540565b92505060206145c185828601614576565b9150509250929050565b60008115159050919050565b6145e0816145cb565b82525050565b60006020820190506145fb60008301846145d7565b92915050565b600060208284031215614617576146166144f2565b5b600061462584828501614540565b91505092915050565b6000819050919050565b600061465361464e614649846144f7565b61462e565b6144f7565b9050919050565b600061466582614638565b9050919050565b60006146778261465a565b9050919050565b6146878161466c565b82525050565b60006020820190506146a2600083018461467e565b92915050565b6146b181614555565b82525050565b60006020820190506146cc60008301846146a8565b92915050565b6000602082840312156146e8576146e76144f2565b5b60006146f684828501614576565b91505092915050565b600080600060608486031215614718576147176144f2565b5b600061472686828701614540565b935050602061473786828701614540565b925050604061474886828701614576565b9150509250925092565b61475b81614517565b82525050565b60006020820190506147766000830184614752565b92915050565b600060ff82169050919050565b6147928161477c565b82525050565b60006020820190506147ad6000830184614789565b92915050565b6147bc816145cb565b81146147c757600080fd5b50565b6000813590506147d9816147b3565b92915050565b6000806000606084860312156147f8576147f76144f2565b5b600061480686828701614576565b935050602061481786828701614576565b9250506040614828868287016147ca565b9150509250925092565b60008060408385031215614849576148486144f2565b5b600061485785828601614540565b9250506020614868858286016147ca565b9150509250929050565b60008060006060848603121561488b5761488a6144f2565b5b600061489986828701614576565b93505060206148aa86828701614576565b92505060406148bb86828701614576565b9150509250925092565b6000602082840312156148db576148da6144f2565b5b60006148e9848285016147ca565b91505092915050565b60008060408385031215614909576149086144f2565b5b600061491785828601614540565b925050602061492885828601614540565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061497957607f821691505b60208210810361498c5761498b614932565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006149c860208361444b565b91506149d382614992565b602082019050919050565b600060208201905081810360008301526149f7816149bb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614a3882614555565b9150614a4383614555565b9250828202614a5181614555565b91508282048414831517614a6857614a676149fe565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614aa982614555565b9150614ab483614555565b925082614ac457614ac3614a6f565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614b2b602f8361444b565b9150614b3682614acf565b604082019050919050565b60006020820190508181036000830152614b5a81614b1e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614bbd60288361444b565b9150614bc882614b61565b604082019050919050565b60006020820190508181036000830152614bec81614bb0565b9050919050565b6000614bfe82614555565b9150614c0983614555565b9250828201905080821115614c2157614c206149fe565b5b92915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614c8360338361444b565b9150614c8e82614c27565b604082019050919050565b60006020820190508181036000830152614cb281614c76565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614d1560308361444b565b9150614d2082614cb9565b604082019050919050565b60006020820190508181036000830152614d4481614d08565b9050919050565b7f4d757374206b6565702066656573206174203925206f72206c65737300000000600082015250565b6000614d81601c8361444b565b9150614d8c82614d4b565b602082019050919050565b60006020820190508181036000830152614db081614d74565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614e1360398361444b565b9150614e1e82614db7565b604082019050919050565b60006020820190508181036000830152614e4281614e06565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614ea560258361444b565b9150614eb082614e49565b604082019050919050565b60006020820190508181036000830152614ed481614e98565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614f3760248361444b565b9150614f4282614edb565b604082019050919050565b60006020820190508181036000830152614f6681614f2a565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614fc960358361444b565b9150614fd482614f6d565b604082019050919050565b60006020820190508181036000830152614ff881614fbc565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061505b60348361444b565b915061506682614fff565b604082019050919050565b6000602082019050818103600083015261508a8161504e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006150ed60268361444b565b91506150f882615091565b604082019050919050565b6000602082019050818103600083015261511c816150e0565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b600061515960208361444b565b915061516482615123565b602082019050919050565b600060208201905081810360008301526151888161514c565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b60006151eb602a8361444b565b91506151f68261518f565b604082019050919050565b6000602082019050818103600083015261521a816151de565b9050919050565b6000815190506152308161455f565b92915050565b60006020828403121561524c5761524b6144f2565b5b600061525a84828501615221565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006152bf60248361444b565b91506152ca82615263565b604082019050919050565b600060208201905081810360008301526152ee816152b2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061535160228361444b565b915061535c826152f5565b604082019050919050565b6000602082019050818103600083015261538081615344565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006153e360258361444b565b91506153ee82615387565b604082019050919050565b60006020820190508181036000830152615412816153d6565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061547560238361444b565b915061548082615419565b604082019050919050565b600060208201905081810360008301526154a481615468565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006154e160168361444b565b91506154ec826154ab565b602082019050919050565b60006020820190508181036000830152615510816154d4565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061559960498361444b565b91506155a482615517565b606082019050919050565b600060208201905081810360008301526155c88161558c565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b600061562b60358361444b565b9150615636826155cf565b604082019050919050565b6000602082019050818103600083015261565a8161561e565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061569760138361444b565b91506156a282615661565b602082019050919050565b600060208201905081810360008301526156c68161568a565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b600061572960368361444b565b9150615734826156cd565b604082019050919050565b600060208201905081810360008301526157588161571c565b9050919050565b600061576a82614555565b915061577583614555565b925082820390508181111561578d5761578c6149fe565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006157ef60268361444b565b91506157fa82615793565b604082019050919050565b6000602082019050818103600083015261581e816157e2565b9050919050565b600081905092915050565b50565b6000615840600083615825565b915061584b82615830565b600082019050919050565b600061586182615833565b9150819050919050565b600060608201905061588060008301866146a8565b61588d60208301856146a8565b61589a60408301846146a8565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061590f81614529565b92915050565b60006020828403121561592b5761592a6144f2565b5b600061593984828501615900565b91505092915050565b6000819050919050565b600061596761596261595d84615942565b61462e565b614555565b9050919050565b6159778161594c565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6159b281614517565b82525050565b60006159c483836159a9565b60208301905092915050565b6000602082019050919050565b60006159e88261597d565b6159f28185615988565b93506159fd83615999565b8060005b83811015615a2e578151615a1588826159b8565b9750615a20836159d0565b925050600181019050615a01565b5085935050505092915050565b600060a082019050615a5060008301886146a8565b615a5d602083018761596e565b8181036040830152615a6f81866159dd565b9050615a7e6060830185614752565b615a8b60808301846146a8565b9695505050505050565b600060c082019050615aaa6000830189614752565b615ab760208301886146a8565b615ac4604083018761596e565b615ad1606083018661596e565b615ade6080830185614752565b615aeb60a08301846146a8565b979650505050505050565b600080600060608486031215615b0f57615b0e6144f2565b5b6000615b1d86828701615221565b9350506020615b2e86828701615221565b9250506040615b3f86828701615221565b915050925092509256fea2646970667358221220dcf4c6155226f9662e8040c3f2684ad5e09a4e59410dd29c37d22f1cad19fa3e64736f6c63430008120033

Deployed Bytecode

0x6080604052600436106103b15760003560e01c80638da5cb5b116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e03578063f637434214610e2c578063f8b45b0514610e57578063fe72b27a14610e82576103b8565b8063dd62ed3e14610d45578063e2f4560514610d82578063e884f26014610dad578063f11a24d314610dd8576103b8565b8063c876d0b9116100dc578063c876d0b914610c87578063c8c8ebe414610cb2578063d257b34f14610cdd578063d85ba06314610d1a576103b8565b8063bbc0c74214610be1578063c024666814610c0c578063c17b5b8c14610c35578063c18bc19514610c5e576103b8565b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a0014610b13578063a9059cbb14610b3e578063aacebbe314610b7b578063b62496f514610ba4576103b8565b80639ec22c0e14610a555780639fccce3214610a80578063a0d82dc514610aab578063a457c2d714610ad6576103b8565b8063924de9b7116101c1578063924de9b7146109ad57806395d89b41146109d65780639a7a23d614610a015780639c3b4fdc14610a2a576103b8565b80638da5cb5b1461092c5780638ea5220f146109575780639213691314610982576103b8565b8063313ce567116102d7578063715018a61161026a57806375f0a8741161023957806375f0a874146108965780637bce5a04146108c15780638095d564146108ec5780638a8c523c14610915576103b8565b8063715018a614610802578063730c188814610819578063751039fc146108425780637571336a1461086d576103b8565b80634fbee193116102a65780634fbee193146107325780636a486a8e1461076f5780636ddd17131461079a57806370a08231146107c5576103b8565b8063313ce56714610674578063395093511461069f57806349bd5a5e146106dc5780634a62bb6514610707576103b8565b8063199ffc721161034f57806323b872dd1161031e57806323b872dd146105b657806327c8f835146105f35780632c3e486c1461061e5780632e82f1a014610649576103b8565b8063199ffc721461050c5780631a8145bb146105375780631f3fed8f14610562578063203e727e1461058d576103b8565b80631694505e1161038b5780631694505e1461046257806318160ddd1461048d5780631816467f146104b8578063184c16c5146104e1576103b8565b806306fdde03146103bd578063095ea7b3146103e857806310d5de5314610425576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610ebf565b6040516103df91906144d0565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a919061458b565b610f51565b60405161041c91906145e6565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190614601565b610f6f565b60405161045991906145e6565b60405180910390f35b34801561046e57600080fd5b50610477610f8e565b604051610484919061468d565b60405180910390f35b34801561049957600080fd5b506104a2610fb2565b6040516104af91906146b7565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da9190614601565b610fbc565b005b3480156104ed57600080fd5b506104f66110f8565b60405161050391906146b7565b60405180910390f35b34801561051857600080fd5b506105216110fe565b60405161052e91906146b7565b60405180910390f35b34801561054357600080fd5b5061054c611104565b60405161055991906146b7565b60405180910390f35b34801561056e57600080fd5b5061057761110a565b60405161058491906146b7565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af91906146d2565b611110565b005b3480156105c257600080fd5b506105dd60048036038101906105d891906146ff565b61121f565b6040516105ea91906145e6565b60405180910390f35b3480156105ff57600080fd5b50610608611317565b6040516106159190614761565b60405180910390f35b34801561062a57600080fd5b5061063361131d565b60405161064091906146b7565b60405180910390f35b34801561065557600080fd5b5061065e611323565b60405161066b91906145e6565b60405180910390f35b34801561068057600080fd5b50610689611336565b6040516106969190614798565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c1919061458b565b61133f565b6040516106d391906145e6565b60405180910390f35b3480156106e857600080fd5b506106f16113eb565b6040516106fe9190614761565b60405180910390f35b34801561071357600080fd5b5061071c61140f565b60405161072991906145e6565b60405180910390f35b34801561073e57600080fd5b5061075960048036038101906107549190614601565b611422565b60405161076691906145e6565b60405180910390f35b34801561077b57600080fd5b50610784611478565b60405161079191906146b7565b60405180910390f35b3480156107a657600080fd5b506107af61147e565b6040516107bc91906145e6565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e79190614601565b611491565b6040516107f991906146b7565b60405180910390f35b34801561080e57600080fd5b506108176114d9565b005b34801561082557600080fd5b50610840600480360381019061083b91906147df565b611561565b005b34801561084e57600080fd5b506108576116a1565b60405161086491906145e6565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f9190614832565b611741565b005b3480156108a257600080fd5b506108ab611818565b6040516108b89190614761565b60405180910390f35b3480156108cd57600080fd5b506108d661183e565b6040516108e391906146b7565b60405180910390f35b3480156108f857600080fd5b50610913600480360381019061090e9190614872565b611844565b005b34801561092157600080fd5b5061092a611943565b005b34801561093857600080fd5b506109416119fe565b60405161094e9190614761565b60405180910390f35b34801561096357600080fd5b5061096c611a28565b6040516109799190614761565b60405180910390f35b34801561098e57600080fd5b50610997611a4e565b6040516109a491906146b7565b60405180910390f35b3480156109b957600080fd5b506109d460048036038101906109cf91906148c5565b611a54565b005b3480156109e257600080fd5b506109eb611aed565b6040516109f891906144d0565b60405180910390f35b348015610a0d57600080fd5b50610a286004803603810190610a239190614832565b611b7f565b005b348015610a3657600080fd5b50610a3f611c97565b604051610a4c91906146b7565b60405180910390f35b348015610a6157600080fd5b50610a6a611c9d565b604051610a7791906146b7565b60405180910390f35b348015610a8c57600080fd5b50610a95611ca3565b604051610aa291906146b7565b60405180910390f35b348015610ab757600080fd5b50610ac0611ca9565b604051610acd91906146b7565b60405180910390f35b348015610ae257600080fd5b50610afd6004803603810190610af8919061458b565b611caf565b604051610b0a91906145e6565b60405180910390f35b348015610b1f57600080fd5b50610b28611d9a565b604051610b3591906146b7565b60405180910390f35b348015610b4a57600080fd5b50610b656004803603810190610b60919061458b565b611da0565b604051610b7291906145e6565b60405180910390f35b348015610b8757600080fd5b50610ba26004803603810190610b9d9190614601565b611dbe565b005b348015610bb057600080fd5b50610bcb6004803603810190610bc69190614601565b611efa565b604051610bd891906145e6565b60405180910390f35b348015610bed57600080fd5b50610bf6611f1a565b604051610c0391906145e6565b60405180910390f35b348015610c1857600080fd5b50610c336004803603810190610c2e9190614832565b611f2d565b005b348015610c4157600080fd5b50610c5c6004803603810190610c579190614872565b612052565b005b348015610c6a57600080fd5b50610c856004803603810190610c8091906146d2565b612151565b005b348015610c9357600080fd5b50610c9c612260565b604051610ca991906145e6565b60405180910390f35b348015610cbe57600080fd5b50610cc7612273565b604051610cd491906146b7565b60405180910390f35b348015610ce957600080fd5b50610d046004803603810190610cff91906146d2565b612279565b604051610d1191906145e6565b60405180910390f35b348015610d2657600080fd5b50610d2f6123ce565b604051610d3c91906146b7565b60405180910390f35b348015610d5157600080fd5b50610d6c6004803603810190610d6791906148f2565b6123d4565b604051610d7991906146b7565b60405180910390f35b348015610d8e57600080fd5b50610d9761245b565b604051610da491906146b7565b60405180910390f35b348015610db957600080fd5b50610dc2612461565b604051610dcf91906145e6565b60405180910390f35b348015610de457600080fd5b50610ded612501565b604051610dfa91906146b7565b60405180910390f35b348015610e0f57600080fd5b50610e2a6004803603810190610e259190614601565b612507565b005b348015610e3857600080fd5b50610e416125fe565b604051610e4e91906146b7565b60405180910390f35b348015610e6357600080fd5b50610e6c612604565b604051610e7991906146b7565b60405180910390f35b348015610e8e57600080fd5b50610ea96004803603810190610ea491906146d2565b61260a565b604051610eb691906145e6565b60405180910390f35b606060038054610ece90614961565b80601f0160208091040260200160405190810160405280929190818152602001828054610efa90614961565b8015610f475780601f10610f1c57610100808354040283529160200191610f47565b820191906000526020600020905b815481529060010190602001808311610f2a57829003601f168201915b5050505050905090565b6000610f65610f5e6128e2565b84846128ea565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610fc46128e2565b73ffffffffffffffffffffffffffffffffffffffff16610fe26119fe565b73ffffffffffffffffffffffffffffffffffffffff1614611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f906149de565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b6111186128e2565b73ffffffffffffffffffffffffffffffffffffffff166111366119fe565b73ffffffffffffffffffffffffffffffffffffffff161461118c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611183906149de565b60405180910390fd5b670de0b6b3a76400006103e860016111a2610fb2565b6111ac9190614a2d565b6111b69190614a9e565b6111c09190614a9e565b811015611202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f990614b41565b60405180910390fd5b670de0b6b3a7640000816112169190614a2d565b60088190555050565b600061122c848484612ab3565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006112776128e2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156112f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ee90614bd3565b60405180910390fd5b61130b856113036128e2565b8584036128ea565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60006113e161134c6128e2565b84846001600061135a6128e2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113dc9190614bf3565b6128ea565b6001905092915050565b7f000000000000000000000000671dc575bb4e3abf0452d1947e4f2127584ce4b881565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114e16128e2565b73ffffffffffffffffffffffffffffffffffffffff166114ff6119fe565b73ffffffffffffffffffffffffffffffffffffffff1614611555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154c906149de565b60405180910390fd5b61155f6000613848565b565b6115696128e2565b73ffffffffffffffffffffffffffffffffffffffff166115876119fe565b73ffffffffffffffffffffffffffffffffffffffff16146115dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d4906149de565b60405180910390fd5b610258831015611622576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161990614c99565b60405180910390fd5b6103e88211158015611635575060008210155b611674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166b90614d2b565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006116ab6128e2565b73ffffffffffffffffffffffffffffffffffffffff166116c96119fe565b73ffffffffffffffffffffffffffffffffffffffff161461171f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611716906149de565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b6117496128e2565b73ffffffffffffffffffffffffffffffffffffffff166117676119fe565b73ffffffffffffffffffffffffffffffffffffffff16146117bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b4906149de565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b61184c6128e2565b73ffffffffffffffffffffffffffffffffffffffff1661186a6119fe565b73ffffffffffffffffffffffffffffffffffffffff16146118c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b7906149de565b60405180910390fd5b8260158190555081601681905550806017819055506017546016546015546118e89190614bf3565b6118f29190614bf3565b6014819055506009601454111561193e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193590614d97565b60405180910390fd5b505050565b61194b6128e2565b73ffffffffffffffffffffffffffffffffffffffff166119696119fe565b73ffffffffffffffffffffffffffffffffffffffff16146119bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b6906149de565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b611a5c6128e2565b73ffffffffffffffffffffffffffffffffffffffff16611a7a6119fe565b73ffffffffffffffffffffffffffffffffffffffff1614611ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac7906149de565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611afc90614961565b80601f0160208091040260200160405190810160405280929190818152602001828054611b2890614961565b8015611b755780601f10611b4a57610100808354040283529160200191611b75565b820191906000526020600020905b815481529060010190602001808311611b5857829003601f168201915b5050505050905090565b611b876128e2565b73ffffffffffffffffffffffffffffffffffffffff16611ba56119fe565b73ffffffffffffffffffffffffffffffffffffffff1614611bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf2906149de565b60405180910390fd5b7f000000000000000000000000671dc575bb4e3abf0452d1947e4f2127584ce4b873ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8090614e29565b60405180910390fd5b611c93828261390e565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611cbe6128e2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7290614ebb565b60405180910390fd5b611d8f611d866128e2565b858584036128ea565b600191505092915050565b600e5481565b6000611db4611dad6128e2565b8484612ab3565b6001905092915050565b611dc66128e2565b73ffffffffffffffffffffffffffffffffffffffff16611de46119fe565b73ffffffffffffffffffffffffffffffffffffffff1614611e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e31906149de565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611f356128e2565b73ffffffffffffffffffffffffffffffffffffffff16611f536119fe565b73ffffffffffffffffffffffffffffffffffffffff1614611fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa0906149de565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161204691906145e6565b60405180910390a25050565b61205a6128e2565b73ffffffffffffffffffffffffffffffffffffffff166120786119fe565b73ffffffffffffffffffffffffffffffffffffffff16146120ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c5906149de565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a546019546120f69190614bf3565b6121009190614bf3565b6018819055506009601854111561214c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214390614d97565b60405180910390fd5b505050565b6121596128e2565b73ffffffffffffffffffffffffffffffffffffffff166121776119fe565b73ffffffffffffffffffffffffffffffffffffffff16146121cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c4906149de565b60405180910390fd5b670de0b6b3a76400006103e860056121e3610fb2565b6121ed9190614a2d565b6121f79190614a9e565b6122019190614a9e565b811015612243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223a90614f4d565b60405180910390fd5b670de0b6b3a7640000816122579190614a2d565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b60006122836128e2565b73ffffffffffffffffffffffffffffffffffffffff166122a16119fe565b73ffffffffffffffffffffffffffffffffffffffff16146122f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ee906149de565b60405180910390fd5b620186a06001612305610fb2565b61230f9190614a2d565b6123199190614a9e565b82101561235b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235290614fdf565b60405180910390fd5b6103e86005612368610fb2565b6123729190614a2d565b61237c9190614a9e565b8211156123be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b590615071565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061246b6128e2565b73ffffffffffffffffffffffffffffffffffffffff166124896119fe565b73ffffffffffffffffffffffffffffffffffffffff16146124df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d6906149de565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b61250f6128e2565b73ffffffffffffffffffffffffffffffffffffffff1661252d6119fe565b73ffffffffffffffffffffffffffffffffffffffff1614612583576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257a906149de565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036125f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e990615103565b60405180910390fd5b6125fb81613848565b50565b601a5481565b600a5481565b60006126146128e2565b73ffffffffffffffffffffffffffffffffffffffff166126326119fe565b73ffffffffffffffffffffffffffffffffffffffff1614612688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267f906149de565b60405180910390fd5b600f546010546126989190614bf3565b42116126d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d09061516f565b60405180910390fd5b6103e882111561271e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271590615201565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000671dc575bb4e3abf0452d1947e4f2127584ce4b86040518263ffffffff1660e01b81526004016127809190614761565b602060405180830381865afa15801561279d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127c19190615236565b905060006127ec6127106127de86856139af90919063ffffffff16565b6139c590919063ffffffff16565b90506000811115612825576128247f000000000000000000000000671dc575bb4e3abf0452d1947e4f2127584ce4b861dead836139db565b5b60007f000000000000000000000000671dc575bb4e3abf0452d1947e4f2127584ce4b890508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561289257600080fd5b505af11580156128a6573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612959576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612950906152d5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036129c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129bf90615367565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612aa691906146b7565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b19906153f9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b889061548b565b60405180910390fd5b60008103612baa57612ba5838360006139db565b613843565b601160009054906101000a900460ff161561326d57612bc76119fe565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612c355750612c056119fe565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c6e5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ca8575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612cc15750600560149054906101000a900460ff16155b1561326c57601160019054906101000a900460ff16612dbb57601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d7b5750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db1906154f7565b60405180910390fd5b5b601360009054906101000a900460ff1615612f8357612dd86119fe565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612e5f57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612eb757507f000000000000000000000000671dc575bb4e3abf0452d1947e4f2127584ce4b873ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612f825743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612f3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f34906155af565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156130265750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156130cd57600854811115613070576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306790615641565b60405180910390fd5b600a5461307c83611491565b826130879190614bf3565b11156130c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130bf906156ad565b60405180910390fd5b61326b565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131705750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156131bf576008548111156131ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131b19061573f565b60405180910390fd5b61326a565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661326957600a5461321c83611491565b826132279190614bf3565b1115613268576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325f906156ad565b60405180910390fd5b5b5b5b5b5b600061327830611491565b90506000600954821015905080801561329d5750601160029054906101000a900460ff165b80156132b65750600560149054906101000a900460ff16155b801561330c5750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133625750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133b85750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156133fc576001600560146101000a81548160ff0219169083151502179055506133e0613c5a565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156134625750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561347a5750600c60009054906101000a900460ff165b80156134955750600d54600e546134919190614bf3565b4210155b80156134eb5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156134fa576134f8613f41565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806135b05750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156135ba57600090505b6000811561383357602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561361d57506000601854115b156136ea5761364a606461363c601854886139af90919063ffffffff16565b6139c590919063ffffffff16565b9050601854601a548261365d9190614a2d565b6136679190614a9e565b601d60008282546136789190614bf3565b92505081905550601854601b54826136909190614a2d565b61369a9190614a9e565b601e60008282546136ab9190614bf3565b92505081905550601854601954826136c39190614a2d565b6136cd9190614a9e565b601c60008282546136de9190614bf3565b9250508190555061380f565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561374557506000601454115b1561380e576137726064613764601454886139af90919063ffffffff16565b6139c590919063ffffffff16565b9050601454601654826137859190614a2d565b61378f9190614a9e565b601d60008282546137a09190614bf3565b92505081905550601454601754826137b89190614a2d565b6137c29190614a9e565b601e60008282546137d39190614bf3565b92505081905550601454601554826137eb9190614a2d565b6137f59190614a9e565b601c60008282546138069190614bf3565b925050819055505b5b6000811115613824576138238730836139db565b5b8085613830919061575f565b94505b61383e8787876139db565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600081836139bd9190614a2d565b905092915050565b600081836139d39190614a9e565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613a4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a41906153f9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613ab9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ab09061548b565b60405180910390fd5b613ac4838383614107565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613b4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b4190615805565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613bdd9190614bf3565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613c4191906146b7565b60405180910390a3613c5484848461410c565b50505050565b6000613c6530611491565b90506000601e54601c54601d54613c7c9190614bf3565b613c869190614bf3565b9050600080831480613c985750600082145b15613ca557505050613f3f565b6014600954613cb49190614a2d565b831115613ccd576014600954613cca9190614a2d565b92505b6000600283601d5486613ce09190614a2d565b613cea9190614a9e565b613cf49190614a9e565b90506000613d0b828661411190919063ffffffff16565b90506000479050613d1b82614127565b6000613d30824761411190919063ffffffff16565b90506000613d5b87613d4d601c54856139af90919063ffffffff16565b6139c590919063ffffffff16565b90506000613d8688613d78601e54866139af90919063ffffffff16565b6139c590919063ffffffff16565b90506000818385613d97919061575f565b613da1919061575f565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613e0190615856565b60006040518083038185875af1925050503d8060008114613e3e576040519150601f19603f3d011682016040523d82523d6000602084013e613e43565b606091505b505080985050600087118015613e595750600081115b15613ea657613e688782614364565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613e9d9392919061586b565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613eec90615856565b60006040518083038185875af1925050503d8060008114613f29576040519150601f19603f3d011682016040523d82523d6000602084013e613f2e565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000671dc575bb4e3abf0452d1947e4f2127584ce4b86040518263ffffffff1660e01b8152600401613fa59190614761565b602060405180830381865afa158015613fc2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613fe69190615236565b90506000614013612710614005600b54856139af90919063ffffffff16565b6139c590919063ffffffff16565b9050600081111561404c5761404b7f000000000000000000000000671dc575bb4e3abf0452d1947e4f2127584ce4b861dead836139db565b5b60007f000000000000000000000000671dc575bb4e3abf0452d1947e4f2127584ce4b890508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156140b957600080fd5b505af11580156140cd573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b6000818361411f919061575f565b905092915050565b6000600267ffffffffffffffff811115614144576141436158a2565b5b6040519080825280602002602001820160405280156141725781602001602082028036833780820191505090505b509050308160008151811061418a576141896158d1565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561422f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906142539190615915565b81600181518110614267576142666158d1565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506142cc307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846128ea565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161432e959493929190615a3b565b600060405180830381600087803b15801561434857600080fd5b505af115801561435c573d6000803e3d6000fd5b505050505050565b61438f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846128ea565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b81526004016143f696959493929190615a95565b60606040518083038185885af1158015614414573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906144399190615af6565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561447a57808201518184015260208101905061445f565b60008484015250505050565b6000601f19601f8301169050919050565b60006144a282614440565b6144ac818561444b565b93506144bc81856020860161445c565b6144c581614486565b840191505092915050565b600060208201905081810360008301526144ea8184614497565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000614522826144f7565b9050919050565b61453281614517565b811461453d57600080fd5b50565b60008135905061454f81614529565b92915050565b6000819050919050565b61456881614555565b811461457357600080fd5b50565b6000813590506145858161455f565b92915050565b600080604083850312156145a2576145a16144f2565b5b60006145b085828601614540565b92505060206145c185828601614576565b9150509250929050565b60008115159050919050565b6145e0816145cb565b82525050565b60006020820190506145fb60008301846145d7565b92915050565b600060208284031215614617576146166144f2565b5b600061462584828501614540565b91505092915050565b6000819050919050565b600061465361464e614649846144f7565b61462e565b6144f7565b9050919050565b600061466582614638565b9050919050565b60006146778261465a565b9050919050565b6146878161466c565b82525050565b60006020820190506146a2600083018461467e565b92915050565b6146b181614555565b82525050565b60006020820190506146cc60008301846146a8565b92915050565b6000602082840312156146e8576146e76144f2565b5b60006146f684828501614576565b91505092915050565b600080600060608486031215614718576147176144f2565b5b600061472686828701614540565b935050602061473786828701614540565b925050604061474886828701614576565b9150509250925092565b61475b81614517565b82525050565b60006020820190506147766000830184614752565b92915050565b600060ff82169050919050565b6147928161477c565b82525050565b60006020820190506147ad6000830184614789565b92915050565b6147bc816145cb565b81146147c757600080fd5b50565b6000813590506147d9816147b3565b92915050565b6000806000606084860312156147f8576147f76144f2565b5b600061480686828701614576565b935050602061481786828701614576565b9250506040614828868287016147ca565b9150509250925092565b60008060408385031215614849576148486144f2565b5b600061485785828601614540565b9250506020614868858286016147ca565b9150509250929050565b60008060006060848603121561488b5761488a6144f2565b5b600061489986828701614576565b93505060206148aa86828701614576565b92505060406148bb86828701614576565b9150509250925092565b6000602082840312156148db576148da6144f2565b5b60006148e9848285016147ca565b91505092915050565b60008060408385031215614909576149086144f2565b5b600061491785828601614540565b925050602061492885828601614540565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061497957607f821691505b60208210810361498c5761498b614932565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006149c860208361444b565b91506149d382614992565b602082019050919050565b600060208201905081810360008301526149f7816149bb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614a3882614555565b9150614a4383614555565b9250828202614a5181614555565b91508282048414831517614a6857614a676149fe565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614aa982614555565b9150614ab483614555565b925082614ac457614ac3614a6f565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614b2b602f8361444b565b9150614b3682614acf565b604082019050919050565b60006020820190508181036000830152614b5a81614b1e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614bbd60288361444b565b9150614bc882614b61565b604082019050919050565b60006020820190508181036000830152614bec81614bb0565b9050919050565b6000614bfe82614555565b9150614c0983614555565b9250828201905080821115614c2157614c206149fe565b5b92915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614c8360338361444b565b9150614c8e82614c27565b604082019050919050565b60006020820190508181036000830152614cb281614c76565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614d1560308361444b565b9150614d2082614cb9565b604082019050919050565b60006020820190508181036000830152614d4481614d08565b9050919050565b7f4d757374206b6565702066656573206174203925206f72206c65737300000000600082015250565b6000614d81601c8361444b565b9150614d8c82614d4b565b602082019050919050565b60006020820190508181036000830152614db081614d74565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614e1360398361444b565b9150614e1e82614db7565b604082019050919050565b60006020820190508181036000830152614e4281614e06565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614ea560258361444b565b9150614eb082614e49565b604082019050919050565b60006020820190508181036000830152614ed481614e98565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614f3760248361444b565b9150614f4282614edb565b604082019050919050565b60006020820190508181036000830152614f6681614f2a565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614fc960358361444b565b9150614fd482614f6d565b604082019050919050565b60006020820190508181036000830152614ff881614fbc565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061505b60348361444b565b915061506682614fff565b604082019050919050565b6000602082019050818103600083015261508a8161504e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006150ed60268361444b565b91506150f882615091565b604082019050919050565b6000602082019050818103600083015261511c816150e0565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b600061515960208361444b565b915061516482615123565b602082019050919050565b600060208201905081810360008301526151888161514c565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b60006151eb602a8361444b565b91506151f68261518f565b604082019050919050565b6000602082019050818103600083015261521a816151de565b9050919050565b6000815190506152308161455f565b92915050565b60006020828403121561524c5761524b6144f2565b5b600061525a84828501615221565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006152bf60248361444b565b91506152ca82615263565b604082019050919050565b600060208201905081810360008301526152ee816152b2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061535160228361444b565b915061535c826152f5565b604082019050919050565b6000602082019050818103600083015261538081615344565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006153e360258361444b565b91506153ee82615387565b604082019050919050565b60006020820190508181036000830152615412816153d6565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061547560238361444b565b915061548082615419565b604082019050919050565b600060208201905081810360008301526154a481615468565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006154e160168361444b565b91506154ec826154ab565b602082019050919050565b60006020820190508181036000830152615510816154d4565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061559960498361444b565b91506155a482615517565b606082019050919050565b600060208201905081810360008301526155c88161558c565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b600061562b60358361444b565b9150615636826155cf565b604082019050919050565b6000602082019050818103600083015261565a8161561e565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061569760138361444b565b91506156a282615661565b602082019050919050565b600060208201905081810360008301526156c68161568a565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b600061572960368361444b565b9150615734826156cd565b604082019050919050565b600060208201905081810360008301526157588161571c565b9050919050565b600061576a82614555565b915061577583614555565b925082820390508181111561578d5761578c6149fe565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006157ef60268361444b565b91506157fa82615793565b604082019050919050565b6000602082019050818103600083015261581e816157e2565b9050919050565b600081905092915050565b50565b6000615840600083615825565b915061584b82615830565b600082019050919050565b600061586182615833565b9150819050919050565b600060608201905061588060008301866146a8565b61588d60208301856146a8565b61589a60408301846146a8565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061590f81614529565b92915050565b60006020828403121561592b5761592a6144f2565b5b600061593984828501615900565b91505092915050565b6000819050919050565b600061596761596261595d84615942565b61462e565b614555565b9050919050565b6159778161594c565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6159b281614517565b82525050565b60006159c483836159a9565b60208301905092915050565b6000602082019050919050565b60006159e88261597d565b6159f28185615988565b93506159fd83615999565b8060005b83811015615a2e578151615a1588826159b8565b9750615a20836159d0565b925050600181019050615a01565b5085935050505092915050565b600060a082019050615a5060008301886146a8565b615a5d602083018761596e565b8181036040830152615a6f81866159dd565b9050615a7e6060830185614752565b615a8b60808301846146a8565b9695505050505050565b600060c082019050615aaa6000830189614752565b615ab760208301886146a8565b615ac4604083018761596e565b615ad1606083018661596e565b615ade6080830185614752565b615aeb60a08301846146a8565b979650505050505050565b600080600060608486031215615b0f57615b0e6144f2565b5b6000615b1d86828701615221565b9350506020615b2e86828701615221565b9250506040615b3f86828701615221565b915050925092509256fea2646970667358221220dcf4c6155226f9662e8040c3f2684ad5e09a4e59410dd29c37d22f1cad19fa3e64736f6c63430008120033

Deployed Bytecode Sourcemap

31864:18623:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9283:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11450:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33372:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31940:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10403:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39865:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32493:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32320:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33156:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33116;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37271:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12101:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32043:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32403:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32364:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10245:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13002:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31998:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32591:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40030:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32971:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32671:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10574:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2518:103;;;;;;;;;;;;;:::i;:::-;;48069:555;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36494:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37818:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32135:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32864;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38101:401;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36331:155;;;;;;;;;;;;;:::i;:::-;;1867:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32172:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33006:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37993:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9502:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39118:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32938:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32547:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33196:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33082:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13720:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32455:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10914:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39626:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33593:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32631:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38928:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38510:410;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37554:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32782:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32205:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36766:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32830:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11152:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32247:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36623:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32901:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2776:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33044:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32287:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49428:1056;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9283:100;9337:13;9370:5;9363:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9283:100;:::o;11450:169::-;11533:4;11550:39;11559:12;:10;:12::i;:::-;11573:7;11582:6;11550:8;:39::i;:::-;11607:4;11600:11;;11450:169;;;;:::o;33372:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;31940:51::-;;;:::o;10403:108::-;10464:7;10491:12;;10484:19;;10403:108;:::o;39865:157::-;2098:12;:10;:12::i;:::-;2087:23;;:7;:5;:7::i;:::-;:23;;;2079:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39972:9:::1;;;;;;;;;;;39944:38;;39961:9;39944:38;;;;;;;;;;;;40005:9;39993;;:21;;;;;;;;;;;;;;;;;;39865:157:::0;:::o;32493:47::-;;;;:::o;32320:36::-;;;;:::o;33156:33::-;;;;:::o;33116:::-;;;;:::o;37271:275::-;2098:12;:10;:12::i;:::-;2087:23;;:7;:5;:7::i;:::-;:23;;;2079:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37408:4:::1;37400;37395:1;37379:13;:11;:13::i;:::-;:17;;;;:::i;:::-;37378:26;;;;:::i;:::-;37377:35;;;;:::i;:::-;37367:6;:45;;37345:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;37531:6;37521;:17;;;;:::i;:::-;37498:20;:40;;;;37271:275:::0;:::o;12101:492::-;12241:4;12258:36;12268:6;12276:9;12287:6;12258:9;:36::i;:::-;12307:24;12334:11;:19;12346:6;12334:19;;;;;;;;;;;;;;;:33;12354:12;:10;:12::i;:::-;12334:33;;;;;;;;;;;;;;;;12307:60;;12406:6;12386:16;:26;;12378:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12493:57;12502:6;12510:12;:10;:12::i;:::-;12543:6;12524:16;:25;12493:8;:57::i;:::-;12581:4;12574:11;;;12101:492;;;;;:::o;32043:53::-;32089:6;32043:53;:::o;32403:45::-;;;;:::o;32364:32::-;;;;;;;;;;;;;:::o;10245:93::-;10303:5;10328:2;10321:9;;10245:93;:::o;13002:215::-;13090:4;13107:80;13116:12;:10;:12::i;:::-;13130:7;13176:10;13139:11;:25;13151:12;:10;:12::i;:::-;13139:25;;;;;;;;;;;;;;;:34;13165:7;13139:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13107:8;:80::i;:::-;13205:4;13198:11;;13002:215;;;;:::o;31998:38::-;;;:::o;32591:33::-;;;;;;;;;;;;;:::o;40030:126::-;40096:4;40120:19;:28;40140:7;40120:28;;;;;;;;;;;;;;;;;;;;;;;;;40113:35;;40030:126;;;:::o;32971:28::-;;;;:::o;32671:31::-;;;;;;;;;;;;;:::o;10574:127::-;10648:7;10675:9;:18;10685:7;10675:18;;;;;;;;;;;;;;;;10668:25;;10574:127;;;:::o;2518:103::-;2098:12;:10;:12::i;:::-;2087:23;;:7;:5;:7::i;:::-;:23;;;2079:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2583:30:::1;2610:1;2583:18;:30::i;:::-;2518:103::o:0;48069:555::-;2098:12;:10;:12::i;:::-;2087:23;;:7;:5;:7::i;:::-;:23;;;2079:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48271:3:::1;48248:19;:26;;48226:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;48398:4;48386:8;:16;;:33;;;;;48418:1;48406:8;:13;;48386:33;48364:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;48524:19;48506:15;:37;;;;48573:8;48554:16;:27;;;;48608:8;48592:13;;:24;;;;;;;;;;;;;;;;;;48069:555:::0;;;:::o;36494:121::-;36546:4;2098:12;:10;:12::i;:::-;2087:23;;:7;:5;:7::i;:::-;:23;;;2079:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36580:5:::1;36563:14;;:22;;;;;;;;;;;;;;;;;;36603:4;36596:11;;36494:121:::0;:::o;37818:167::-;2098:12;:10;:12::i;:::-;2087:23;;:7;:5;:7::i;:::-;:23;;;2079:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37973:4:::1;37931:31;:39;37963:6;37931:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;37818:167:::0;;:::o;32135:30::-;;;;;;;;;;;;;:::o;32864:::-;;;;:::o;38101:401::-;2098:12;:10;:12::i;:::-;2087:23;;:7;:5;:7::i;:::-;:23;;;2079:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38269:13:::1;38251:15;:31;;;;38311:13;38293:15;:31;;;;38347:7;38335:9;:19;;;;38416:9;;38398:15;;38380;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;38365:12;:60;;;;38460:1;38444:12;;:17;;38436:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;38101:401:::0;;;:::o;36331:155::-;2098:12;:10;:12::i;:::-;2087:23;;:7;:5;:7::i;:::-;:23;;;2079:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36402:4:::1;36386:13;;:20;;;;;;;;;;;;;;;;;;36431:4;36417:11;;:18;;;;;;;;;;;;;;;;;;36463:15;36446:14;:32;;;;36331:155::o:0;1867:87::-;1913:7;1940:6;;;;;;;;;;;1933:13;;1867:87;:::o;32172:24::-;;;;;;;;;;;;;:::o;33006:31::-;;;;:::o;37993:100::-;2098:12;:10;:12::i;:::-;2087:23;;:7;:5;:7::i;:::-;:23;;;2079:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38078:7:::1;38064:11;;:21;;;;;;;;;;;;;;;;;;37993:100:::0;:::o;9502:104::-;9558:13;9591:7;9584:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9502:104;:::o;39118:304::-;2098:12;:10;:12::i;:::-;2087:23;;:7;:5;:7::i;:::-;:23;;;2079:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39262:13:::1;39254:21;;:4;:21;;::::0;39232:128:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;39373:41;39402:4;39408:5;39373:28;:41::i;:::-;39118:304:::0;;:::o;32938:24::-;;;;:::o;32547:35::-;;;;:::o;33196:27::-;;;;:::o;33082:25::-;;;;:::o;13720:413::-;13813:4;13830:24;13857:11;:25;13869:12;:10;:12::i;:::-;13857:25;;;;;;;;;;;;;;;:34;13883:7;13857:34;;;;;;;;;;;;;;;;13830:61;;13930:15;13910:16;:35;;13902:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14023:67;14032:12;:10;:12::i;:::-;14046:7;14074:15;14055:16;:34;14023:8;:67::i;:::-;14121:4;14114:11;;;13720:413;;;;:::o;32455:29::-;;;;:::o;10914:175::-;11000:4;11017:42;11027:12;:10;:12::i;:::-;11041:9;11052:6;11017:9;:42::i;:::-;11077:4;11070:11;;10914:175;;;;:::o;39626:231::-;2098:12;:10;:12::i;:::-;2087:23;;:7;:5;:7::i;:::-;:23;;;2079:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39786:15:::1;;;;;;;;;;;39743:59;;39766:18;39743:59;;;;;;;;;;;;39831:18;39813:15;;:36;;;;;;;;;;;;;;;;;;39626:231:::0;:::o;33593:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;32631:33::-;;;;;;;;;;;;;:::o;38928:182::-;2098:12;:10;:12::i;:::-;2087:23;;:7;:5;:7::i;:::-;:23;;;2079:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39044:8:::1;39013:19;:28;39033:7;39013:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;39084:7;39068:34;;;39093:8;39068:34;;;;;;:::i;:::-;;;;;;;;38928:182:::0;;:::o;38510:410::-;2098:12;:10;:12::i;:::-;2087:23;;:7;:5;:7::i;:::-;:23;;;2079:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38680:13:::1;38661:16;:32;;;;38723:13;38704:16;:32;;;;38760:7;38747:10;:20;;;;38832:10;;38813:16;;38794;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;38778:13;:64;;;;38878:1;38861:13;;:18;;38853:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;38510:410:::0;;;:::o;37554:256::-;2098:12;:10;:12::i;:::-;2087:23;;:7;:5;:7::i;:::-;:23;;;2079:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37694:4:::1;37686;37681:1;37665:13;:11;:13::i;:::-;:17;;;;:::i;:::-;37664:26;;;;:::i;:::-;37663:35;;;;:::i;:::-;37653:6;:45;;37631:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;37795:6;37785;:17;;;;:::i;:::-;37773:9;:29;;;;37554:256:::0;:::o;32782:39::-;;;;;;;;;;;;;:::o;32205:35::-;;;;:::o;36766:497::-;36874:4;2098:12;:10;:12::i;:::-;2087:23;;:7;:5;:7::i;:::-;:23;;;2079:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36953:6:::1;36948:1;36932:13;:11;:13::i;:::-;:17;;;;:::i;:::-;36931:28;;;;:::i;:::-;36918:9;:41;;36896:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;37108:4;37103:1;37087:13;:11;:13::i;:::-;:17;;;;:::i;:::-;37086:26;;;;:::i;:::-;37073:9;:39;;37051:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;37224:9;37203:18;:30;;;;37251:4;37244:11;;36766:497:::0;;;:::o;32830:27::-;;;;:::o;11152:151::-;11241:7;11268:11;:18;11280:5;11268:18;;;;;;;;;;;;;;;:27;11287:7;11268:27;;;;;;;;;;;;;;;;11261:34;;11152:151;;;;:::o;32247:33::-;;;;:::o;36623:135::-;36683:4;2098:12;:10;:12::i;:::-;2087:23;;:7;:5;:7::i;:::-;:23;;;2079:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36723:5:::1;36700:20;;:28;;;;;;;;;;;;;;;;;;36746:4;36739:11;;36623:135:::0;:::o;32901:30::-;;;;:::o;2776:201::-;2098:12;:10;:12::i;:::-;2087:23;;:7;:5;:7::i;:::-;:23;;;2079:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2885:1:::1;2865:22;;:8;:22;;::::0;2857:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2941:28;2960:8;2941:18;:28::i;:::-;2776:201:::0;:::o;33044:31::-;;;;:::o;32287:24::-;;;;:::o;49428:1056::-;49539:4;2098:12;:10;:12::i;:::-;2087:23;;:7;:5;:7::i;:::-;:23;;;2079:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49624:19:::1;;49601:20;;:42;;;;:::i;:::-;49583:15;:60;49561:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;49733:4;49722:7;:15;;49714:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;49818:15;49795:20;:38;;;;49888:28;49919:4;:14;;;49934:13;49919:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49888:60;;49998:20;50021:44;50059:5;50021:33;50046:7;50021:20;:24;;:33;;;;:::i;:::-;:37;;:44;;;;:::i;:::-;49998:67;;50185:1;50170:12;:16;50166:110;;;50203:61;50219:13;50242:6;50251:12;50203:15;:61::i;:::-;50166:110;50351:19;50388:13;50351:51;;50413:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;50440:14;;;;;;;;;;50472:4;50465:11;;;;;49428:1056:::0;;;:::o;540:98::-;593:7;620:10;613:17;;540:98;:::o;17404:380::-;17557:1;17540:19;;:5;:19;;;17532:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17638:1;17619:21;;:7;:21;;;17611:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17722:6;17692:11;:18;17704:5;17692:18;;;;;;;;;;;;;;;:27;17711:7;17692:27;;;;;;;;;;;;;;;:36;;;;17760:7;17744:32;;17753:5;17744:32;;;17769:6;17744:32;;;;;;:::i;:::-;;;;;;;;17404:380;;;:::o;40164:5011::-;40312:1;40296:18;;:4;:18;;;40288:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40389:1;40375:16;;:2;:16;;;40367:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;40458:1;40448:6;:11;40444:93;;40476:28;40492:4;40498:2;40502:1;40476:15;:28::i;:::-;40519:7;;40444:93;40553:14;;;;;;;;;;;40549:2487;;;40614:7;:5;:7::i;:::-;40606:15;;:4;:15;;;;:49;;;;;40648:7;:5;:7::i;:::-;40642:13;;:2;:13;;;;40606:49;:86;;;;;40690:1;40676:16;;:2;:16;;;;40606:86;:128;;;;;40727:6;40713:21;;:2;:21;;;;40606:128;:158;;;;;40756:8;;;;;;;;;;;40755:9;40606:158;40584:2441;;;40804:13;;;;;;;;;;;40799:223;;40876:19;:25;40896:4;40876:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;40905:19;:23;40925:2;40905:23;;;;;;;;;;;;;;;;;;;;;;;;;40876:52;40842:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;40799:223;41178:20;;;;;;;;;;;41174:641;;;41259:7;:5;:7::i;:::-;41253:13;;:2;:13;;;;:72;;;;;41309:15;41295:30;;:2;:30;;;;41253:72;:129;;;;;41368:13;41354:28;;:2;:28;;;;41253:129;41223:573;;;41546:12;41471:28;:39;41500:9;41471:39;;;;;;;;;;;;;;;;:87;41433:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;41760:12;41718:28;:39;41747:9;41718:39;;;;;;;;;;;;;;;:54;;;;41223:573;41174:641;41889:25;:31;41915:4;41889:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;41946:31;:35;41978:2;41946:35;;;;;;;;;;;;;;;;;;;;;;;;;41945:36;41889:92;41863:1147;;;42068:20;;42058:6;:30;;42024:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;42276:9;;42259:13;42269:2;42259:9;:13::i;:::-;42250:6;:22;;;;:::i;:::-;:35;;42216:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;41863:1147;;;42454:25;:29;42480:2;42454:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;42509:31;:37;42541:4;42509:37;;;;;;;;;;;;;;;;;;;;;;;;;42508:38;42454:92;42428:582;;;42633:20;;42623:6;:30;;42589:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;42428:582;;;42790:31;:35;42822:2;42790:35;;;;;;;;;;;;;;;;;;;;;;;;;42785:225;;42910:9;;42893:13;42903:2;42893:9;:13::i;:::-;42884:6;:22;;;;:::i;:::-;:35;;42850:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;42785:225;42428:582;41863:1147;40584:2441;40549:2487;43048:28;43079:24;43097:4;43079:9;:24::i;:::-;43048:55;;43116:12;43155:18;;43131:20;:42;;43116:57;;43204:7;:35;;;;;43228:11;;;;;;;;;;;43204:35;:61;;;;;43257:8;;;;;;;;;;;43256:9;43204:61;:110;;;;;43283:25;:31;43309:4;43283:31;;;;;;;;;;;;;;;;;;;;;;;;;43282:32;43204:110;:153;;;;;43332:19;:25;43352:4;43332:25;;;;;;;;;;;;;;;;;;;;;;;;;43331:26;43204:153;:194;;;;;43375:19;:23;43395:2;43375:23;;;;;;;;;;;;;;;;;;;;;;;;;43374:24;43204:194;43186:326;;;43436:4;43425:8;;:15;;;;;;;;;;;;;;;;;;43457:10;:8;:10::i;:::-;43495:5;43484:8;;:16;;;;;;;;;;;;;;;;;;43186:326;43543:8;;;;;;;;;;;43542:9;:55;;;;;43568:25;:29;43594:2;43568:29;;;;;;;;;;;;;;;;;;;;;;;;;43542:55;:85;;;;;43614:13;;;;;;;;;;;43542:85;:153;;;;;43680:15;;43663:14;;:32;;;;:::i;:::-;43644:15;:51;;43542:153;:196;;;;;43713:19;:25;43733:4;43713:25;;;;;;;;;;;;;;;;;;;;;;;;;43712:26;43542:196;43524:282;;;43765:29;:27;:29::i;:::-;;43524:282;43818:12;43834:8;;;;;;;;;;;43833:9;43818:24;;43944:19;:25;43964:4;43944:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;43973:19;:23;43993:2;43973:23;;;;;;;;;;;;;;;;;;;;;;;;;43944:52;43940:100;;;44023:5;44013:15;;43940:100;44052:12;44157:7;44153:969;;;44209:25;:29;44235:2;44209:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;44258:1;44242:13;;:17;44209:50;44205:768;;;44287:34;44317:3;44287:25;44298:13;;44287:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;44280:41;;44390:13;;44370:16;;44363:4;:23;;;;:::i;:::-;44362:41;;;;:::i;:::-;44340:18;;:63;;;;;;;:::i;:::-;;;;;;;;44460:13;;44446:10;;44439:4;:17;;;;:::i;:::-;44438:35;;;;:::i;:::-;44422:12;;:51;;;;;;;:::i;:::-;;;;;;;;44542:13;;44522:16;;44515:4;:23;;;;:::i;:::-;44514:41;;;;:::i;:::-;44492:18;;:63;;;;;;;:::i;:::-;;;;;;;;44205:768;;;44617:25;:31;44643:4;44617:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;44667:1;44652:12;;:16;44617:51;44613:360;;;44696:33;44725:3;44696:24;44707:12;;44696:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;44689:40;;44797:12;;44778:15;;44771:4;:22;;;;:::i;:::-;44770:39;;;;:::i;:::-;44748:18;;:61;;;;;;;:::i;:::-;;;;;;;;44865:12;;44852:9;;44845:4;:16;;;;:::i;:::-;44844:33;;;;:::i;:::-;44828:12;;:49;;;;;;;:::i;:::-;;;;;;;;44945:12;;44926:15;;44919:4;:22;;;;:::i;:::-;44918:39;;;;:::i;:::-;44896:18;;:61;;;;;;;:::i;:::-;;;;;;;;44613:360;44205:768;45000:1;44993:4;:8;44989:91;;;45022:42;45038:4;45052;45059;45022:15;:42::i;:::-;44989:91;45106:4;45096:14;;;;;:::i;:::-;;;44153:969;45134:33;45150:4;45156:2;45160:6;45134:15;:33::i;:::-;40277:4898;;;;40164:5011;;;;:::o;3137:191::-;3211:16;3230:6;;;;;;;;;;;3211:25;;3256:8;3247:6;;:17;;;;;;;;;;;;;;;;;;3311:8;3280:40;;3301:8;3280:40;;;;;;;;;;;;3200:128;3137:191;:::o;39430:188::-;39547:5;39513:25;:31;39539:4;39513:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;39604:5;39570:40;;39598:4;39570:40;;;;;;;;;;;;39430:188;;:::o;22857:98::-;22915:7;22946:1;22942;:5;;;;:::i;:::-;22935:12;;22857:98;;;;:::o;23256:::-;23314:7;23345:1;23341;:5;;;;:::i;:::-;23334:12;;23256:98;;;;:::o;14623:733::-;14781:1;14763:20;;:6;:20;;;14755:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14865:1;14844:23;;:9;:23;;;14836:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14920:47;14941:6;14949:9;14960:6;14920:20;:47::i;:::-;14980:21;15004:9;:17;15014:6;15004:17;;;;;;;;;;;;;;;;14980:41;;15057:6;15040:13;:23;;15032:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15178:6;15162:13;:22;15142:9;:17;15152:6;15142:17;;;;;;;;;;;;;;;:42;;;;15230:6;15206:9;:20;15216:9;15206:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15271:9;15254:35;;15263:6;15254:35;;;15282:6;15254:35;;;;;;:::i;:::-;;;;;;;;15302:46;15322:6;15330:9;15341:6;15302:19;:46::i;:::-;14744:612;14623:733;;;:::o;46305:1756::-;46344:23;46370:24;46388:4;46370:9;:24::i;:::-;46344:50;;46405:25;46501:12;;46467:18;;46433;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;46405:108;;46524:12;46572:1;46553:15;:20;:46;;;;46598:1;46577:17;:22;46553:46;46549:85;;;46616:7;;;;;46549:85;46689:2;46668:18;;:23;;;;:::i;:::-;46650:15;:41;46646:115;;;46747:2;46726:18;;:23;;;;:::i;:::-;46708:41;;46646:115;46822:23;46935:1;46902:17;46867:18;;46849:15;:36;;;;:::i;:::-;46848:71;;;;:::i;:::-;:88;;;;:::i;:::-;46822:114;;46947:26;46976:36;46996:15;46976;:19;;:36;;;;:::i;:::-;46947:65;;47025:25;47053:21;47025:49;;47087:36;47104:18;47087:16;:36::i;:::-;47136:18;47157:44;47183:17;47157:21;:25;;:44;;;;:::i;:::-;47136:65;;47214:23;47240:81;47293:17;47240:34;47255:18;;47240:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;47214:107;;47332:17;47352:51;47385:17;47352:28;47367:12;;47352:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;47332:71;;47416:23;47473:9;47455:15;47442:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;47416:66;;47516:1;47495:18;:22;;;;47549:1;47528:18;:22;;;;47576:1;47561:12;:16;;;;47612:9;;;;;;;;;;;47604:23;;47635:9;47604:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47590:59;;;;;47684:1;47666:15;:19;:42;;;;;47707:1;47689:15;:19;47666:42;47662:278;;;47725:46;47738:15;47755;47725:12;:46::i;:::-;47791:137;47824:18;47861:15;47895:18;;47791:137;;;;;;;;:::i;:::-;;;;;;;;47662:278;47974:15;;;;;;;;;;;47966:29;;48017:21;47966:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47952:101;;;;;46333:1728;;;;;;;;;;46305:1756;:::o;48632:788::-;48689:4;48723:15;48706:14;:32;;;;48793:28;48824:4;:14;;;48839:13;48824:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48793:60;;48903:20;48926:77;48987:5;48926:42;48951:16;;48926:20;:24;;:42;;;;:::i;:::-;:46;;:77;;;;:::i;:::-;48903:100;;49123:1;49108:12;:16;49104:110;;;49141:61;49157:13;49180:6;49189:12;49141:15;:61::i;:::-;49104:110;49289:19;49326:13;49289:51;;49351:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49378:12;;;;;;;;;;49408:4;49401:11;;;;;48632:788;:::o;18384:125::-;;;;:::o;19113:124::-;;;;:::o;22500:98::-;22558:7;22589:1;22585;:5;;;;:::i;:::-;22578:12;;22500:98;;;;:::o;45183:589::-;45309:21;45347:1;45333:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45309:40;;45378:4;45360;45365:1;45360:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;45404:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45394:4;45399:1;45394:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;45439:62;45456:4;45471:15;45489:11;45439:8;:62::i;:::-;45540:15;:66;;;45621:11;45647:1;45691:4;45718;45738:15;45540:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45238:534;45183:589;:::o;45780:517::-;45928:62;45945:4;45960:15;45978:11;45928:8;:62::i;:::-;46033:15;:31;;;46072:9;46105:4;46125:11;46151:1;46194;32089:6;46263:15;46033:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;45780: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:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:60::-;3809:3;3830:5;3823:12;;3781:60;;;:::o;3847:142::-;3897:9;3930:53;3948:34;3957:24;3975:5;3957:24;:::i;:::-;3948:34;:::i;:::-;3930:53;:::i;:::-;3917:66;;3847:142;;;:::o;3995:126::-;4045:9;4078:37;4109:5;4078:37;:::i;:::-;4065:50;;3995:126;;;:::o;4127:153::-;4204:9;4237:37;4268:5;4237:37;:::i;:::-;4224:50;;4127:153;;;:::o;4286:185::-;4400:64;4458:5;4400:64;:::i;:::-;4395:3;4388:77;4286:185;;:::o;4477:276::-;4597:4;4635:2;4624:9;4620:18;4612:26;;4648:98;4743:1;4732:9;4728:17;4719:6;4648:98;:::i;:::-;4477:276;;;;:::o;4759:118::-;4846:24;4864:5;4846:24;:::i;:::-;4841:3;4834:37;4759:118;;:::o;4883:222::-;4976:4;5014:2;5003:9;4999:18;4991:26;;5027:71;5095:1;5084:9;5080:17;5071:6;5027:71;:::i;:::-;4883:222;;;;:::o;5111:329::-;5170:6;5219:2;5207:9;5198:7;5194:23;5190:32;5187:119;;;5225:79;;:::i;:::-;5187:119;5345:1;5370:53;5415:7;5406:6;5395:9;5391:22;5370:53;:::i;:::-;5360:63;;5316:117;5111:329;;;;:::o;5446:619::-;5523:6;5531;5539;5588:2;5576:9;5567:7;5563:23;5559:32;5556:119;;;5594:79;;:::i;:::-;5556:119;5714:1;5739:53;5784:7;5775:6;5764:9;5760:22;5739:53;:::i;:::-;5729:63;;5685:117;5841:2;5867:53;5912:7;5903:6;5892:9;5888:22;5867:53;:::i;:::-;5857:63;;5812:118;5969:2;5995:53;6040:7;6031:6;6020:9;6016:22;5995:53;:::i;:::-;5985:63;;5940:118;5446:619;;;;;:::o;6071:118::-;6158:24;6176:5;6158:24;:::i;:::-;6153:3;6146:37;6071:118;;:::o;6195:222::-;6288:4;6326:2;6315:9;6311:18;6303:26;;6339:71;6407:1;6396:9;6392:17;6383:6;6339:71;:::i;:::-;6195:222;;;;:::o;6423:86::-;6458:7;6498:4;6491:5;6487:16;6476:27;;6423:86;;;:::o;6515:112::-;6598:22;6614:5;6598:22;:::i;:::-;6593:3;6586:35;6515:112;;:::o;6633:214::-;6722:4;6760:2;6749:9;6745:18;6737:26;;6773:67;6837:1;6826:9;6822:17;6813:6;6773:67;:::i;:::-;6633:214;;;;:::o;6853:116::-;6923:21;6938:5;6923:21;:::i;:::-;6916:5;6913:32;6903:60;;6959:1;6956;6949:12;6903:60;6853:116;:::o;6975:133::-;7018:5;7056:6;7043:20;7034:29;;7072:30;7096:5;7072:30;:::i;:::-;6975:133;;;;:::o;7114:613::-;7188:6;7196;7204;7253:2;7241:9;7232:7;7228:23;7224:32;7221:119;;;7259:79;;:::i;:::-;7221:119;7379:1;7404:53;7449:7;7440:6;7429:9;7425:22;7404:53;:::i;:::-;7394:63;;7350:117;7506:2;7532:53;7577:7;7568:6;7557:9;7553:22;7532:53;:::i;:::-;7522:63;;7477:118;7634:2;7660:50;7702:7;7693:6;7682:9;7678:22;7660:50;:::i;:::-;7650:60;;7605:115;7114:613;;;;;:::o;7733:468::-;7798:6;7806;7855:2;7843:9;7834:7;7830:23;7826:32;7823:119;;;7861:79;;:::i;:::-;7823:119;7981:1;8006:53;8051:7;8042:6;8031:9;8027:22;8006:53;:::i;:::-;7996:63;;7952:117;8108:2;8134:50;8176:7;8167:6;8156:9;8152:22;8134:50;:::i;:::-;8124:60;;8079:115;7733:468;;;;;:::o;8207:619::-;8284:6;8292;8300;8349:2;8337:9;8328:7;8324:23;8320:32;8317:119;;;8355:79;;:::i;:::-;8317:119;8475:1;8500:53;8545:7;8536:6;8525:9;8521:22;8500:53;:::i;:::-;8490:63;;8446:117;8602:2;8628:53;8673:7;8664:6;8653:9;8649:22;8628:53;:::i;:::-;8618:63;;8573:118;8730:2;8756:53;8801:7;8792:6;8781:9;8777:22;8756:53;:::i;:::-;8746:63;;8701:118;8207:619;;;;;:::o;8832:323::-;8888:6;8937:2;8925:9;8916:7;8912:23;8908:32;8905:119;;;8943:79;;:::i;:::-;8905:119;9063:1;9088:50;9130:7;9121:6;9110:9;9106:22;9088:50;:::i;:::-;9078:60;;9034:114;8832:323;;;;:::o;9161:474::-;9229:6;9237;9286:2;9274:9;9265:7;9261:23;9257:32;9254:119;;;9292:79;;:::i;:::-;9254:119;9412:1;9437:53;9482:7;9473:6;9462:9;9458:22;9437:53;:::i;:::-;9427:63;;9383:117;9539:2;9565:53;9610:7;9601:6;9590:9;9586:22;9565:53;:::i;:::-;9555:63;;9510:118;9161:474;;;;;:::o;9641:180::-;9689:77;9686:1;9679:88;9786:4;9783:1;9776:15;9810:4;9807:1;9800:15;9827:320;9871:6;9908:1;9902:4;9898:12;9888:22;;9955:1;9949:4;9945:12;9976:18;9966:81;;10032:4;10024:6;10020:17;10010:27;;9966:81;10094:2;10086:6;10083:14;10063:18;10060:38;10057:84;;10113:18;;:::i;:::-;10057:84;9878:269;9827:320;;;:::o;10153:182::-;10293:34;10289:1;10281:6;10277:14;10270:58;10153:182;:::o;10341:366::-;10483:3;10504:67;10568:2;10563:3;10504:67;:::i;:::-;10497:74;;10580:93;10669:3;10580:93;:::i;:::-;10698:2;10693:3;10689:12;10682:19;;10341:366;;;:::o;10713:419::-;10879:4;10917:2;10906:9;10902:18;10894:26;;10966:9;10960:4;10956:20;10952:1;10941:9;10937:17;10930:47;10994:131;11120:4;10994:131;:::i;:::-;10986:139;;10713:419;;;:::o;11138:180::-;11186:77;11183:1;11176:88;11283:4;11280:1;11273:15;11307:4;11304:1;11297:15;11324:410;11364:7;11387:20;11405:1;11387:20;:::i;:::-;11382:25;;11421:20;11439:1;11421:20;:::i;:::-;11416:25;;11476:1;11473;11469:9;11498:30;11516:11;11498:30;:::i;:::-;11487:41;;11677:1;11668:7;11664:15;11661:1;11658:22;11638:1;11631:9;11611:83;11588:139;;11707:18;;:::i;:::-;11588:139;11372:362;11324:410;;;;:::o;11740:180::-;11788:77;11785:1;11778:88;11885:4;11882:1;11875:15;11909:4;11906:1;11899:15;11926:185;11966:1;11983:20;12001:1;11983:20;:::i;:::-;11978:25;;12017:20;12035:1;12017:20;:::i;:::-;12012:25;;12056:1;12046:35;;12061:18;;:::i;:::-;12046:35;12103:1;12100;12096:9;12091:14;;11926:185;;;;:::o;12117:234::-;12257:34;12253:1;12245:6;12241:14;12234:58;12326:17;12321:2;12313:6;12309:15;12302:42;12117:234;:::o;12357:366::-;12499:3;12520:67;12584:2;12579:3;12520:67;:::i;:::-;12513:74;;12596:93;12685:3;12596:93;:::i;:::-;12714:2;12709:3;12705:12;12698:19;;12357:366;;;:::o;12729:419::-;12895:4;12933:2;12922:9;12918:18;12910:26;;12982:9;12976:4;12972:20;12968:1;12957:9;12953:17;12946:47;13010:131;13136:4;13010:131;:::i;:::-;13002:139;;12729:419;;;:::o;13154:227::-;13294:34;13290:1;13282:6;13278:14;13271:58;13363:10;13358:2;13350:6;13346:15;13339:35;13154:227;:::o;13387:366::-;13529:3;13550:67;13614:2;13609:3;13550:67;:::i;:::-;13543:74;;13626:93;13715:3;13626:93;:::i;:::-;13744:2;13739:3;13735:12;13728:19;;13387:366;;;:::o;13759:419::-;13925:4;13963:2;13952:9;13948:18;13940:26;;14012:9;14006:4;14002:20;13998:1;13987:9;13983:17;13976:47;14040:131;14166:4;14040:131;:::i;:::-;14032:139;;13759:419;;;:::o;14184:191::-;14224:3;14243:20;14261:1;14243:20;:::i;:::-;14238:25;;14277:20;14295:1;14277:20;:::i;:::-;14272:25;;14320:1;14317;14313:9;14306:16;;14341:3;14338:1;14335:10;14332:36;;;14348:18;;:::i;:::-;14332:36;14184:191;;;;:::o;14381:238::-;14521:34;14517:1;14509:6;14505:14;14498:58;14590:21;14585:2;14577:6;14573:15;14566:46;14381:238;:::o;14625:366::-;14767:3;14788:67;14852:2;14847:3;14788:67;:::i;:::-;14781:74;;14864:93;14953:3;14864:93;:::i;:::-;14982:2;14977:3;14973:12;14966:19;;14625:366;;;:::o;14997:419::-;15163:4;15201:2;15190:9;15186:18;15178:26;;15250:9;15244:4;15240:20;15236:1;15225:9;15221:17;15214:47;15278:131;15404:4;15278:131;:::i;:::-;15270:139;;14997:419;;;:::o;15422:235::-;15562:34;15558:1;15550:6;15546:14;15539:58;15631:18;15626:2;15618:6;15614:15;15607:43;15422:235;:::o;15663:366::-;15805:3;15826:67;15890:2;15885:3;15826:67;:::i;:::-;15819:74;;15902:93;15991:3;15902:93;:::i;:::-;16020:2;16015:3;16011:12;16004:19;;15663:366;;;:::o;16035:419::-;16201:4;16239:2;16228:9;16224:18;16216:26;;16288:9;16282:4;16278:20;16274:1;16263:9;16259:17;16252:47;16316:131;16442:4;16316:131;:::i;:::-;16308:139;;16035:419;;;:::o;16460:178::-;16600:30;16596:1;16588:6;16584:14;16577:54;16460:178;:::o;16644:366::-;16786:3;16807:67;16871:2;16866:3;16807:67;:::i;:::-;16800:74;;16883:93;16972:3;16883:93;:::i;:::-;17001:2;16996:3;16992:12;16985:19;;16644:366;;;:::o;17016:419::-;17182:4;17220:2;17209:9;17205:18;17197:26;;17269:9;17263:4;17259:20;17255:1;17244:9;17240:17;17233:47;17297:131;17423:4;17297:131;:::i;:::-;17289:139;;17016:419;;;:::o;17441:244::-;17581:34;17577:1;17569:6;17565:14;17558:58;17650:27;17645:2;17637:6;17633:15;17626:52;17441:244;:::o;17691:366::-;17833:3;17854:67;17918:2;17913:3;17854:67;:::i;:::-;17847:74;;17930:93;18019:3;17930:93;:::i;:::-;18048:2;18043:3;18039:12;18032:19;;17691:366;;;:::o;18063:419::-;18229:4;18267:2;18256:9;18252:18;18244:26;;18316:9;18310:4;18306:20;18302:1;18291:9;18287:17;18280:47;18344:131;18470:4;18344:131;:::i;:::-;18336:139;;18063:419;;;:::o;18488:224::-;18628:34;18624:1;18616:6;18612:14;18605:58;18697:7;18692:2;18684:6;18680:15;18673:32;18488:224;:::o;18718:366::-;18860:3;18881:67;18945:2;18940:3;18881:67;:::i;:::-;18874:74;;18957:93;19046:3;18957:93;:::i;:::-;19075:2;19070:3;19066:12;19059:19;;18718:366;;;:::o;19090:419::-;19256:4;19294:2;19283:9;19279:18;19271:26;;19343:9;19337:4;19333:20;19329:1;19318:9;19314:17;19307:47;19371:131;19497:4;19371:131;:::i;:::-;19363:139;;19090:419;;;:::o;19515:223::-;19655:34;19651:1;19643:6;19639:14;19632:58;19724:6;19719:2;19711:6;19707:15;19700:31;19515:223;:::o;19744:366::-;19886:3;19907:67;19971:2;19966:3;19907:67;:::i;:::-;19900:74;;19983:93;20072:3;19983:93;:::i;:::-;20101:2;20096:3;20092:12;20085:19;;19744:366;;;:::o;20116:419::-;20282:4;20320:2;20309:9;20305:18;20297:26;;20369:9;20363:4;20359:20;20355:1;20344:9;20340:17;20333:47;20397:131;20523:4;20397:131;:::i;:::-;20389:139;;20116:419;;;:::o;20541:240::-;20681:34;20677:1;20669:6;20665:14;20658:58;20750:23;20745:2;20737:6;20733:15;20726:48;20541:240;:::o;20787:366::-;20929:3;20950:67;21014:2;21009:3;20950:67;:::i;:::-;20943:74;;21026:93;21115:3;21026:93;:::i;:::-;21144:2;21139:3;21135:12;21128:19;;20787:366;;;:::o;21159:419::-;21325:4;21363:2;21352:9;21348:18;21340:26;;21412:9;21406:4;21402:20;21398:1;21387:9;21383:17;21376:47;21440:131;21566:4;21440:131;:::i;:::-;21432:139;;21159:419;;;:::o;21584:239::-;21724:34;21720:1;21712:6;21708:14;21701:58;21793:22;21788:2;21780:6;21776:15;21769:47;21584:239;:::o;21829:366::-;21971:3;21992:67;22056:2;22051:3;21992:67;:::i;:::-;21985:74;;22068:93;22157:3;22068:93;:::i;:::-;22186:2;22181:3;22177:12;22170:19;;21829:366;;;:::o;22201:419::-;22367:4;22405:2;22394:9;22390:18;22382:26;;22454:9;22448:4;22444:20;22440:1;22429:9;22425:17;22418:47;22482:131;22608:4;22482:131;:::i;:::-;22474:139;;22201:419;;;:::o;22626:225::-;22766:34;22762:1;22754:6;22750:14;22743:58;22835:8;22830:2;22822:6;22818:15;22811:33;22626:225;:::o;22857:366::-;22999:3;23020:67;23084:2;23079:3;23020:67;:::i;:::-;23013:74;;23096:93;23185:3;23096:93;:::i;:::-;23214:2;23209:3;23205:12;23198:19;;22857:366;;;:::o;23229:419::-;23395:4;23433:2;23422:9;23418:18;23410:26;;23482:9;23476:4;23472:20;23468:1;23457:9;23453:17;23446:47;23510:131;23636:4;23510:131;:::i;:::-;23502:139;;23229:419;;;:::o;23654:182::-;23794:34;23790:1;23782:6;23778:14;23771:58;23654:182;:::o;23842:366::-;23984:3;24005:67;24069:2;24064:3;24005:67;:::i;:::-;23998:74;;24081:93;24170:3;24081:93;:::i;:::-;24199:2;24194:3;24190:12;24183:19;;23842:366;;;:::o;24214:419::-;24380:4;24418:2;24407:9;24403:18;24395:26;;24467:9;24461:4;24457:20;24453:1;24442:9;24438:17;24431:47;24495:131;24621:4;24495:131;:::i;:::-;24487:139;;24214:419;;;:::o;24639:229::-;24779:34;24775:1;24767:6;24763:14;24756:58;24848:12;24843:2;24835:6;24831:15;24824:37;24639:229;:::o;24874:366::-;25016:3;25037:67;25101:2;25096:3;25037:67;:::i;:::-;25030:74;;25113:93;25202:3;25113:93;:::i;:::-;25231:2;25226:3;25222:12;25215:19;;24874:366;;;:::o;25246:419::-;25412:4;25450:2;25439:9;25435:18;25427:26;;25499:9;25493:4;25489:20;25485:1;25474:9;25470:17;25463:47;25527:131;25653:4;25527:131;:::i;:::-;25519:139;;25246:419;;;:::o;25671:143::-;25728:5;25759:6;25753:13;25744:22;;25775:33;25802:5;25775:33;:::i;:::-;25671:143;;;;:::o;25820:351::-;25890:6;25939:2;25927:9;25918:7;25914:23;25910:32;25907:119;;;25945:79;;:::i;:::-;25907:119;26065:1;26090:64;26146:7;26137:6;26126:9;26122:22;26090:64;:::i;:::-;26080:74;;26036:128;25820:351;;;;:::o;26177:223::-;26317:34;26313:1;26305:6;26301:14;26294:58;26386:6;26381:2;26373:6;26369:15;26362:31;26177:223;:::o;26406:366::-;26548:3;26569:67;26633:2;26628:3;26569:67;:::i;:::-;26562:74;;26645:93;26734:3;26645:93;:::i;:::-;26763:2;26758:3;26754:12;26747:19;;26406:366;;;:::o;26778:419::-;26944:4;26982:2;26971:9;26967:18;26959:26;;27031:9;27025:4;27021:20;27017:1;27006:9;27002:17;26995:47;27059:131;27185:4;27059:131;:::i;:::-;27051:139;;26778:419;;;:::o;27203:221::-;27343:34;27339:1;27331:6;27327:14;27320:58;27412:4;27407:2;27399:6;27395:15;27388:29;27203:221;:::o;27430:366::-;27572:3;27593:67;27657:2;27652:3;27593:67;:::i;:::-;27586:74;;27669:93;27758:3;27669:93;:::i;:::-;27787:2;27782:3;27778:12;27771:19;;27430:366;;;:::o;27802:419::-;27968:4;28006:2;27995:9;27991:18;27983:26;;28055:9;28049:4;28045:20;28041:1;28030:9;28026:17;28019:47;28083:131;28209:4;28083:131;:::i;:::-;28075:139;;27802:419;;;:::o;28227:224::-;28367:34;28363:1;28355:6;28351:14;28344:58;28436:7;28431:2;28423:6;28419:15;28412:32;28227:224;:::o;28457:366::-;28599:3;28620:67;28684:2;28679:3;28620:67;:::i;:::-;28613:74;;28696:93;28785:3;28696:93;:::i;:::-;28814:2;28809:3;28805:12;28798:19;;28457:366;;;:::o;28829:419::-;28995:4;29033:2;29022:9;29018:18;29010:26;;29082:9;29076:4;29072:20;29068:1;29057:9;29053:17;29046:47;29110:131;29236:4;29110:131;:::i;:::-;29102:139;;28829:419;;;:::o;29254:222::-;29394:34;29390:1;29382:6;29378:14;29371:58;29463:5;29458:2;29450:6;29446:15;29439:30;29254:222;:::o;29482:366::-;29624:3;29645:67;29709:2;29704:3;29645:67;:::i;:::-;29638:74;;29721:93;29810:3;29721:93;:::i;:::-;29839:2;29834:3;29830:12;29823:19;;29482:366;;;:::o;29854:419::-;30020:4;30058:2;30047:9;30043:18;30035:26;;30107:9;30101:4;30097:20;30093:1;30082:9;30078:17;30071:47;30135:131;30261:4;30135:131;:::i;:::-;30127:139;;29854:419;;;:::o;30279:172::-;30419:24;30415:1;30407:6;30403:14;30396:48;30279:172;:::o;30457:366::-;30599:3;30620:67;30684:2;30679:3;30620:67;:::i;:::-;30613:74;;30696:93;30785:3;30696:93;:::i;:::-;30814:2;30809:3;30805:12;30798:19;;30457:366;;;:::o;30829:419::-;30995:4;31033:2;31022:9;31018:18;31010:26;;31082:9;31076:4;31072:20;31068:1;31057:9;31053:17;31046:47;31110:131;31236:4;31110:131;:::i;:::-;31102:139;;30829:419;;;:::o;31254:297::-;31394:34;31390:1;31382:6;31378:14;31371:58;31463:34;31458:2;31450:6;31446:15;31439:59;31532:11;31527:2;31519:6;31515:15;31508:36;31254:297;:::o;31557:366::-;31699:3;31720:67;31784:2;31779:3;31720:67;:::i;:::-;31713:74;;31796:93;31885:3;31796:93;:::i;:::-;31914:2;31909:3;31905:12;31898:19;;31557:366;;;:::o;31929:419::-;32095:4;32133:2;32122:9;32118:18;32110:26;;32182:9;32176:4;32172:20;32168:1;32157:9;32153:17;32146:47;32210:131;32336:4;32210:131;:::i;:::-;32202:139;;31929:419;;;:::o;32354:240::-;32494:34;32490:1;32482:6;32478:14;32471:58;32563:23;32558:2;32550:6;32546:15;32539:48;32354:240;:::o;32600:366::-;32742:3;32763:67;32827:2;32822:3;32763:67;:::i;:::-;32756:74;;32839:93;32928:3;32839:93;:::i;:::-;32957:2;32952:3;32948:12;32941:19;;32600:366;;;:::o;32972:419::-;33138:4;33176:2;33165:9;33161:18;33153:26;;33225:9;33219:4;33215:20;33211:1;33200:9;33196:17;33189:47;33253:131;33379:4;33253:131;:::i;:::-;33245:139;;32972:419;;;:::o;33397:169::-;33537:21;33533:1;33525:6;33521:14;33514:45;33397:169;:::o;33572:366::-;33714:3;33735:67;33799:2;33794:3;33735:67;:::i;:::-;33728:74;;33811:93;33900:3;33811:93;:::i;:::-;33929:2;33924:3;33920:12;33913:19;;33572:366;;;:::o;33944:419::-;34110:4;34148:2;34137:9;34133:18;34125:26;;34197:9;34191:4;34187:20;34183:1;34172:9;34168:17;34161:47;34225:131;34351:4;34225:131;:::i;:::-;34217:139;;33944:419;;;:::o;34369:241::-;34509:34;34505:1;34497:6;34493:14;34486:58;34578:24;34573:2;34565:6;34561:15;34554:49;34369:241;:::o;34616:366::-;34758:3;34779:67;34843:2;34838:3;34779:67;:::i;:::-;34772:74;;34855:93;34944:3;34855:93;:::i;:::-;34973:2;34968:3;34964:12;34957:19;;34616:366;;;:::o;34988:419::-;35154:4;35192:2;35181:9;35177:18;35169:26;;35241:9;35235:4;35231:20;35227:1;35216:9;35212:17;35205:47;35269:131;35395:4;35269:131;:::i;:::-;35261:139;;34988:419;;;:::o;35413:194::-;35453:4;35473:20;35491:1;35473:20;:::i;:::-;35468:25;;35507:20;35525:1;35507:20;:::i;:::-;35502:25;;35551:1;35548;35544:9;35536:17;;35575:1;35569:4;35566:11;35563:37;;;35580:18;;:::i;:::-;35563:37;35413:194;;;;:::o;35613:225::-;35753:34;35749:1;35741:6;35737:14;35730:58;35822:8;35817:2;35809:6;35805:15;35798:33;35613:225;:::o;35844:366::-;35986:3;36007:67;36071:2;36066:3;36007:67;:::i;:::-;36000:74;;36083:93;36172:3;36083:93;:::i;:::-;36201:2;36196:3;36192:12;36185:19;;35844:366;;;:::o;36216:419::-;36382:4;36420:2;36409:9;36405:18;36397:26;;36469:9;36463:4;36459:20;36455:1;36444:9;36440:17;36433:47;36497:131;36623:4;36497:131;:::i;:::-;36489:139;;36216:419;;;:::o;36641:147::-;36742:11;36779:3;36764:18;;36641:147;;;;:::o;36794:114::-;;:::o;36914:398::-;37073:3;37094:83;37175:1;37170:3;37094:83;:::i;:::-;37087:90;;37186:93;37275:3;37186:93;:::i;:::-;37304:1;37299:3;37295:11;37288:18;;36914:398;;;:::o;37318:379::-;37502:3;37524:147;37667:3;37524:147;:::i;:::-;37517:154;;37688:3;37681:10;;37318:379;;;:::o;37703:442::-;37852:4;37890:2;37879:9;37875:18;37867:26;;37903:71;37971:1;37960:9;37956:17;37947:6;37903:71;:::i;:::-;37984:72;38052:2;38041:9;38037:18;38028:6;37984:72;:::i;:::-;38066;38134:2;38123:9;38119:18;38110:6;38066:72;:::i;:::-;37703:442;;;;;;:::o;38151:180::-;38199:77;38196:1;38189:88;38296:4;38293:1;38286:15;38320:4;38317:1;38310:15;38337:180;38385:77;38382:1;38375:88;38482:4;38479:1;38472:15;38506:4;38503:1;38496:15;38523:143;38580:5;38611:6;38605:13;38596:22;;38627:33;38654:5;38627:33;:::i;:::-;38523:143;;;;:::o;38672:351::-;38742:6;38791:2;38779:9;38770:7;38766:23;38762:32;38759:119;;;38797:79;;:::i;:::-;38759:119;38917:1;38942:64;38998:7;38989:6;38978:9;38974:22;38942:64;:::i;:::-;38932:74;;38888:128;38672:351;;;;:::o;39029:85::-;39074:7;39103:5;39092:16;;39029:85;;;:::o;39120:158::-;39178:9;39211:61;39229:42;39238:32;39264:5;39238:32;:::i;:::-;39229:42;:::i;:::-;39211:61;:::i;:::-;39198:74;;39120:158;;;:::o;39284:147::-;39379:45;39418:5;39379:45;:::i;:::-;39374:3;39367:58;39284:147;;:::o;39437:114::-;39504:6;39538:5;39532:12;39522:22;;39437:114;;;:::o;39557:184::-;39656:11;39690:6;39685:3;39678:19;39730:4;39725:3;39721:14;39706:29;;39557:184;;;;:::o;39747:132::-;39814:4;39837:3;39829:11;;39867:4;39862:3;39858:14;39850:22;;39747:132;;;:::o;39885:108::-;39962:24;39980:5;39962:24;:::i;:::-;39957:3;39950:37;39885:108;;:::o;39999:179::-;40068:10;40089:46;40131:3;40123:6;40089:46;:::i;:::-;40167:4;40162:3;40158:14;40144:28;;39999:179;;;;:::o;40184:113::-;40254:4;40286;40281:3;40277:14;40269:22;;40184:113;;;:::o;40333:732::-;40452:3;40481:54;40529:5;40481:54;:::i;:::-;40551:86;40630:6;40625:3;40551:86;:::i;:::-;40544:93;;40661:56;40711:5;40661:56;:::i;:::-;40740:7;40771:1;40756:284;40781:6;40778:1;40775:13;40756:284;;;40857:6;40851:13;40884:63;40943:3;40928:13;40884:63;:::i;:::-;40877:70;;40970:60;41023:6;40970:60;:::i;:::-;40960:70;;40816:224;40803:1;40800;40796:9;40791:14;;40756:284;;;40760:14;41056:3;41049:10;;40457:608;;;40333:732;;;;:::o;41071:831::-;41334:4;41372:3;41361:9;41357:19;41349:27;;41386:71;41454:1;41443:9;41439:17;41430:6;41386:71;:::i;:::-;41467:80;41543:2;41532:9;41528:18;41519:6;41467:80;:::i;:::-;41594:9;41588:4;41584:20;41579:2;41568:9;41564:18;41557:48;41622:108;41725:4;41716:6;41622:108;:::i;:::-;41614:116;;41740:72;41808:2;41797:9;41793:18;41784:6;41740:72;:::i;:::-;41822:73;41890:3;41879:9;41875:19;41866:6;41822:73;:::i;:::-;41071:831;;;;;;;;:::o;41908:807::-;42157:4;42195:3;42184:9;42180:19;42172:27;;42209:71;42277:1;42266:9;42262:17;42253:6;42209:71;:::i;:::-;42290:72;42358:2;42347:9;42343:18;42334:6;42290:72;:::i;:::-;42372:80;42448:2;42437:9;42433:18;42424:6;42372:80;:::i;:::-;42462;42538:2;42527:9;42523:18;42514:6;42462:80;:::i;:::-;42552:73;42620:3;42609:9;42605:19;42596:6;42552:73;:::i;:::-;42635;42703:3;42692:9;42688:19;42679:6;42635:73;:::i;:::-;41908:807;;;;;;;;;:::o;42721:663::-;42809:6;42817;42825;42874:2;42862:9;42853:7;42849:23;42845:32;42842:119;;;42880:79;;:::i;:::-;42842:119;43000:1;43025:64;43081:7;43072:6;43061:9;43057:22;43025:64;:::i;:::-;43015:74;;42971:128;43138:2;43164:64;43220:7;43211:6;43200:9;43196:22;43164:64;:::i;:::-;43154:74;;43109:129;43277:2;43303:64;43359:7;43350:6;43339:9;43335:22;43303:64;:::i;:::-;43293:74;;43248:129;42721:663;;;;;:::o

Swarm Source

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