ETH Price: $2,286.79 (+0.44%)

Token

Degen Inu (DEGEN)
 

Overview

Max Total Supply

1,000,000,000 DEGEN

Holders

51

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
9,222,143.9468162355 DEGEN

Value
$0.00
0xc5dce6a74434a7615f7f6630d8aacb44c88e0953
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:
degeninu

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

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

/**
   DEGEN INU $DEGEN
   
   https://twitter.com/DegenInuERC

*/

// SPDX-License-Identifier: MIT
pragma solidity =0.8.10 >=0.8.10 >=0.8.0 <0.9.0;
pragma experimental ABIEncoderV2;
////// lib/openzeppelin-contracts/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)
/* pragma solidity ^0.8.0; */


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

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

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

/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function WETH() external pure returns (address);

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

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

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

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

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

/* pragma solidity >=0.8.10; */

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

contract degeninu 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 charityWallet;
    address public marketingWallet;
    address public devWallet;

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

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

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

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

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

	uint256 public tokensForCharity;
    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 SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    constructor() ERC20("Degen Inu", "DEGEN") {
        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 _buyCharityFee = 0;
        uint256 _buyMarketingFee = 10;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 0;

		uint256 _sellCharityFee = 0;
        uint256 _sellMarketingFee = 15;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 0;

        uint256 totalSupply = 1000000000 * 1e18;

        maxTransactionAmount = 20000000 * 1e18; // 1% from total supply maxTransactionAmountTxn
        maxWallet = 20000000 * 1e18; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 10) / 10000; // 0.1% swap wallet

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

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

		charityWallet = address(0xc9677bF4A45d84CF38198F57Dc78AbdF90b5D3CD); // set as charity wallet
        marketingWallet = address(0xc9677bF4A45d84CF38198F57Dc78AbdF90b5D3CD); // set as marketing wallet
        devWallet = address(0xc9677bF4A45d84CF38198F57Dc78AbdF90b5D3CD); // set as dev wallet

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

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

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

    receive() external payable {}

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

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

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

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 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() * 5) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.5%"
        );
        maxTransactionAmount = newNum * (10**18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newNum * (10**18);
    }
	
    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

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

    function updateBuyFees(
		uint256 _charityFee,
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
		require((_charityFee + _marketingFee + _liquidityFee) <= 10, "Max Buy Fee 10%");
		buyCharityFee = _charityFee;
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyCharityFee + buyMarketingFee + buyLiquidityFee + buyDevFee;
     }

    function updateSellFees(
		uint256 _charityFee,
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
		require((_charityFee + _marketingFee + _liquidityFee) <= 10, "Max Sell Fee 10%");
		sellCharityFee = _charityFee;
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellCharityFee + sellMarketingFee + sellLiquidityFee + sellDevFee;
    }

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

        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);
				tokensForCharity += (fees * sellCharityFee) / sellTotalFees;
                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);
				tokensForCharity += (fees * buyCharityFee) / buyTotalFees;
                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
            devWallet,
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForCharity + 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 ethForCharity = ethBalance.mul(tokensForCharity).div(totalTokensToSwap);
        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap);
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForCharity - ethForMarketing - ethForDev;

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

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


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

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

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"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":"buyCharityFee","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":"charityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellCharityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"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":"tokensForCharity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"_charityFee","type":"uint256"},{"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":"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":"_charityFee","type":"uint256"},{"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"}]

60c06040526001600c60006101000a81548160ff0219169083151502179055506001600c60016101000a81548160ff0219169083151502179055506001600c60026101000a81548160ff0219169083151502179055506001600e60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600981526020017f446567656e20496e7500000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f444547454e00000000000000000000000000000000000000000000000000000081525081600390805190602001906200010292919062000b66565b5080600490805190602001906200011b92919062000b66565b5050506200013e620001326200062660201b60201c565b6200062e60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200016a816001620006f460201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000210919062000c80565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000278573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200029e919062000c80565b6040518363ffffffff1660e01b8152600401620002bd92919062000cc3565b6020604051808303816000875af1158015620002dd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000303919062000c80565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200034b60a0516001620006f460201b60201c565b6200036060a0516001620007de60201b60201c565b600080600a9050600080600080600f905060008060006b033b2e3c9fd0803ce800000090506a108b2a2c280290940000006009819055506a108b2a2c28029094000000600b81905550612710600a82620003bb919062000d29565b620003c7919062000db9565b600a819055508860108190555087601181905550866012819055508560138190555060135460125460115460105462000401919062000df1565b6200040d919062000df1565b62000419919062000df1565b600f819055508460158190555083601681905550826017819055508160188190555060185460175460165460155462000453919062000df1565b6200045f919062000df1565b6200046b919062000df1565b60148190555073c9677bf4a45d84cf38198f57dc78abdf90b5d3cd600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073c9677bf4a45d84cf38198f57dc78abdf90b5d3cd600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073c9677bf4a45d84cf38198f57dc78abdf90b5d3cd600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000592620005846200087f60201b60201c565b6001620008a960201b60201c565b620005a5306001620008a960201b60201c565b620005ba61dead6001620008a960201b60201c565b620005dc620005ce6200087f60201b60201c565b6001620006f460201b60201c565b620005ef306001620006f460201b60201c565b6200060461dead6001620006f460201b60201c565b620006163382620009e360201b60201c565b5050505050505050505062001010565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620007046200062660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200072a6200087f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000783576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200077a9062000eaf565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008b96200062660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008df6200087f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000938576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200092f9062000eaf565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009d7919062000eee565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a56576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a4d9062000f5b565b60405180910390fd5b62000a6a6000838362000b5c60201b60201c565b806002600082825462000a7e919062000df1565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000ad5919062000df1565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b3c919062000f8e565b60405180910390a362000b586000838362000b6160201b60201c565b5050565b505050565b505050565b82805462000b749062000fda565b90600052602060002090601f01602090048101928262000b98576000855562000be4565b82601f1062000bb357805160ff191683800117855562000be4565b8280016001018555821562000be4579182015b8281111562000be357825182559160200191906001019062000bc6565b5b50905062000bf3919062000bf7565b5090565b5b8082111562000c1257600081600090555060010162000bf8565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c488262000c1b565b9050919050565b62000c5a8162000c3b565b811462000c6657600080fd5b50565b60008151905062000c7a8162000c4f565b92915050565b60006020828403121562000c995762000c9862000c16565b5b600062000ca98482850162000c69565b91505092915050565b62000cbd8162000c3b565b82525050565b600060408201905062000cda600083018562000cb2565b62000ce9602083018462000cb2565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000d368262000cf0565b915062000d438362000cf0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000d7f5762000d7e62000cfa565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000dc68262000cf0565b915062000dd38362000cf0565b92508262000de65762000de562000d8a565b5b828204905092915050565b600062000dfe8262000cf0565b915062000e0b8362000cf0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000e435762000e4262000cfa565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000e9760208362000e4e565b915062000ea48262000e5f565b602082019050919050565b6000602082019050818103600083015262000eca8162000e88565b9050919050565b60008115159050919050565b62000ee88162000ed1565b82525050565b600060208201905062000f05600083018462000edd565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000f43601f8362000e4e565b915062000f508262000f0b565b602082019050919050565b6000602082019050818103600083015262000f768162000f34565b9050919050565b62000f888162000cf0565b82525050565b600060208201905062000fa5600083018462000f7d565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000ff357607f821691505b602082108114156200100a576200100962000fab565b5b50919050565b60805160a0516150b96200106e600039600081816112710152818161186101526126e2015260008181610e470152818161268a015281816138be0152818161399f015281816139c601528181613a620152613a8901526150b96000f3fe60806040526004361061036f5760003560e01c80638da5cb5b116101c6578063c0246668116100f7578063e2f4560511610095578063f11a24d31161006f578063f11a24d314610cc5578063f2fde38b14610cf0578063f637434214610d19578063f8b45b0514610d4457610376565b8063e2f4560514610c46578063e7ad9fcd14610c71578063e884f26014610c9a57610376565b8063c8c8ebe4116100d1578063c8c8ebe414610b76578063d257b34f14610ba1578063d85ba06314610bde578063dd62ed3e14610c0957610376565b8063c024666814610af9578063c18bc19514610b22578063c876d0b914610b4b57610376565b80639fccce3211610164578063a457c2d71161013e578063a457c2d714610a17578063a9059cbb14610a54578063b62496f514610a91578063bbc0c74214610ace57610376565b80639fccce3214610996578063a0d82dc5146109c1578063a1dc92bc146109ec57610376565b8063924de9b7116101a0578063924de9b7146108ee57806395d89b41146109175780639a7a23d6146109425780639c3b4fdc1461096b57610376565b80638da5cb5b1461086d5780638ea5220f1461089857806392136913146108c357610376565b806344249f04116102a0578063715018a61161023e57806375f0a8741161021857806375f0a874146107d55780637b208769146108005780637bce5a041461082b5780638a8c523c1461085657610376565b8063715018a61461076a578063751039fc146107815780637571336a146107ac57610376565b80634fbee1931161027a5780634fbee1931461069a5780636a486a8e146106d75780636ddd17131461070257806370a082311461072d57610376565b806344249f041461061957806349bd5a5e146106445780634a62bb651461066f57610376565b80631f3fed8f1161030d57806327c8f835116102e757806327c8f8351461055d5780632e6ed7ef14610588578063313ce567146105b157806339509351146105dc57610376565b80631f3fed8f146104cc578063203e727e146104f757806323b872dd1461052057610376565b806310d5de531161034957806310d5de531461040e5780631694505e1461044b57806318160ddd146104765780631a8145bb146104a157610376565b806306fdde031461037b578063095ea7b3146103a65780630d7f1441146103e357610376565b3661037657005b600080fd5b34801561038757600080fd5b50610390610d6f565b60405161039d9190613bf1565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c89190613cac565b610e01565b6040516103da9190613d07565b60405180910390f35b3480156103ef57600080fd5b506103f8610e1f565b6040516104059190613d31565b60405180910390f35b34801561041a57600080fd5b5061043560048036038101906104309190613d4c565b610e25565b6040516104429190613d07565b60405180910390f35b34801561045757600080fd5b50610460610e45565b60405161046d9190613dd8565b60405180910390f35b34801561048257600080fd5b5061048b610e69565b6040516104989190613d31565b60405180910390f35b3480156104ad57600080fd5b506104b6610e73565b6040516104c39190613d31565b60405180910390f35b3480156104d857600080fd5b506104e1610e79565b6040516104ee9190613d31565b60405180910390f35b34801561050357600080fd5b5061051e60048036038101906105199190613df3565b610e7f565b005b34801561052c57600080fd5b5061054760048036038101906105429190613e20565b610f8e565b6040516105549190613d07565b60405180910390f35b34801561056957600080fd5b50610572611086565b60405161057f9190613e82565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa9190613e9d565b61108c565b005b3480156105bd57600080fd5b506105c66111b4565b6040516105d39190613f20565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe9190613cac565b6111bd565b6040516106109190613d07565b60405180910390f35b34801561062557600080fd5b5061062e611269565b60405161063b9190613d31565b60405180910390f35b34801561065057600080fd5b5061065961126f565b6040516106669190613e82565b60405180910390f35b34801561067b57600080fd5b50610684611293565b6040516106919190613d07565b60405180910390f35b3480156106a657600080fd5b506106c160048036038101906106bc9190613d4c565b6112a6565b6040516106ce9190613d07565b60405180910390f35b3480156106e357600080fd5b506106ec6112fc565b6040516106f99190613d31565b60405180910390f35b34801561070e57600080fd5b50610717611302565b6040516107249190613d07565b60405180910390f35b34801561073957600080fd5b50610754600480360381019061074f9190613d4c565b611315565b6040516107619190613d31565b60405180910390f35b34801561077657600080fd5b5061077f61135d565b005b34801561078d57600080fd5b506107966113e5565b6040516107a39190613d07565b60405180910390f35b3480156107b857600080fd5b506107d360048036038101906107ce9190613f67565b611485565b005b3480156107e157600080fd5b506107ea61155c565b6040516107f79190613e82565b60405180910390f35b34801561080c57600080fd5b50610815611582565b6040516108229190613e82565b60405180910390f35b34801561083757600080fd5b506108406115a8565b60405161084d9190613d31565b60405180910390f35b34801561086257600080fd5b5061086b6115ae565b005b34801561087957600080fd5b50610882611662565b60405161088f9190613e82565b60405180910390f35b3480156108a457600080fd5b506108ad61168c565b6040516108ba9190613e82565b60405180910390f35b3480156108cf57600080fd5b506108d86116b2565b6040516108e59190613d31565b60405180910390f35b3480156108fa57600080fd5b5061091560048036038101906109109190613fa7565b6116b8565b005b34801561092357600080fd5b5061092c611751565b6040516109399190613bf1565b60405180910390f35b34801561094e57600080fd5b5061096960048036038101906109649190613f67565b6117e3565b005b34801561097757600080fd5b506109806118fc565b60405161098d9190613d31565b60405180910390f35b3480156109a257600080fd5b506109ab611902565b6040516109b89190613d31565b60405180910390f35b3480156109cd57600080fd5b506109d6611908565b6040516109e39190613d31565b60405180910390f35b3480156109f857600080fd5b50610a0161190e565b604051610a0e9190613d31565b60405180910390f35b348015610a2357600080fd5b50610a3e6004803603810190610a399190613cac565b611914565b604051610a4b9190613d07565b60405180910390f35b348015610a6057600080fd5b50610a7b6004803603810190610a769190613cac565b6119ff565b604051610a889190613d07565b60405180910390f35b348015610a9d57600080fd5b50610ab86004803603810190610ab39190613d4c565b611a1d565b604051610ac59190613d07565b60405180910390f35b348015610ada57600080fd5b50610ae3611a3d565b604051610af09190613d07565b60405180910390f35b348015610b0557600080fd5b50610b206004803603810190610b1b9190613f67565b611a50565b005b348015610b2e57600080fd5b50610b496004803603810190610b449190613df3565b611b75565b005b348015610b5757600080fd5b50610b60611c84565b604051610b6d9190613d07565b60405180910390f35b348015610b8257600080fd5b50610b8b611c97565b604051610b989190613d31565b60405180910390f35b348015610bad57600080fd5b50610bc86004803603810190610bc39190613df3565b611c9d565b604051610bd59190613d07565b60405180910390f35b348015610bea57600080fd5b50610bf3611df2565b604051610c009190613d31565b60405180910390f35b348015610c1557600080fd5b50610c306004803603810190610c2b9190613fd4565b611df8565b604051610c3d9190613d31565b60405180910390f35b348015610c5257600080fd5b50610c5b611e7f565b604051610c689190613d31565b60405180910390f35b348015610c7d57600080fd5b50610c986004803603810190610c939190613e9d565b611e85565b005b348015610ca657600080fd5b50610caf611fad565b604051610cbc9190613d07565b60405180910390f35b348015610cd157600080fd5b50610cda61204d565b604051610ce79190613d31565b60405180910390f35b348015610cfc57600080fd5b50610d176004803603810190610d129190613d4c565b612053565b005b348015610d2557600080fd5b50610d2e61214b565b604051610d3b9190613d31565b60405180910390f35b348015610d5057600080fd5b50610d59612151565b604051610d669190613d31565b60405180910390f35b606060038054610d7e90614043565b80601f0160208091040260200160405190810160405280929190818152602001828054610daa90614043565b8015610df75780601f10610dcc57610100808354040283529160200191610df7565b820191906000526020600020905b815481529060010190602001808311610dda57829003601f168201915b5050505050905090565b6000610e15610e0e612157565b848461215f565b6001905092915050565b60155481565b601e6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b601b5481565b601a5481565b610e87612157565b73ffffffffffffffffffffffffffffffffffffffff16610ea5611662565b73ffffffffffffffffffffffffffffffffffffffff1614610efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef2906140c1565b60405180910390fd5b670de0b6b3a76400006103e86005610f11610e69565b610f1b9190614110565b610f259190614199565b610f2f9190614199565b811015610f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f689061423c565b60405180910390fd5b670de0b6b3a764000081610f859190614110565b60098190555050565b6000610f9b84848461232a565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610fe6612157565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105d906142ce565b60405180910390fd5b61107a85611072612157565b85840361215f565b60019150509392505050565b61dead81565b611094612157565b73ffffffffffffffffffffffffffffffffffffffff166110b2611662565b73ffffffffffffffffffffffffffffffffffffffff1614611108576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ff906140c1565b60405180910390fd5b600a82848661111791906142ee565b61112191906142ee565b1115611162576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115990614390565b60405180910390fd5b8360108190555082601181905550816012819055508060138190555060135460125460115460105461119491906142ee565b61119e91906142ee565b6111a891906142ee565b600f8190555050505050565b60006012905090565b600061125f6111ca612157565b8484600160006111d8612157565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461125a91906142ee565b61215f565b6001905092915050565b60195481565b7f000000000000000000000000000000000000000000000000000000000000000081565b600c60009054906101000a900460ff1681565b6000601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600c60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611365612157565b73ffffffffffffffffffffffffffffffffffffffff16611383611662565b73ffffffffffffffffffffffffffffffffffffffff16146113d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d0906140c1565b60405180910390fd5b6113e3600061302a565b565b60006113ef612157565b73ffffffffffffffffffffffffffffffffffffffff1661140d611662565b73ffffffffffffffffffffffffffffffffffffffff1614611463576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145a906140c1565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b61148d612157565b73ffffffffffffffffffffffffffffffffffffffff166114ab611662565b73ffffffffffffffffffffffffffffffffffffffff1614611501576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f8906140c1565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b6115b6612157565b73ffffffffffffffffffffffffffffffffffffffff166115d4611662565b73ffffffffffffffffffffffffffffffffffffffff161461162a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611621906140c1565b60405180910390fd5b6001600c60016101000a81548160ff0219169083151502179055506001600c60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60165481565b6116c0612157565b73ffffffffffffffffffffffffffffffffffffffff166116de611662565b73ffffffffffffffffffffffffffffffffffffffff1614611734576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172b906140c1565b60405180910390fd5b80600c60026101000a81548160ff02191690831515021790555050565b60606004805461176090614043565b80601f016020809104026020016040519081016040528092919081815260200182805461178c90614043565b80156117d95780601f106117ae576101008083540402835291602001916117d9565b820191906000526020600020905b8154815290600101906020018083116117bc57829003601f168201915b5050505050905090565b6117eb612157565b73ffffffffffffffffffffffffffffffffffffffff16611809611662565b73ffffffffffffffffffffffffffffffffffffffff161461185f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611856906140c1565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e590614422565b60405180910390fd5b6118f882826130f0565b5050565b60135481565b601c5481565b60185481565b60105481565b60008060016000611923612157565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156119e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d7906144b4565b60405180910390fd5b6119f46119eb612157565b8585840361215f565b600191505092915050565b6000611a13611a0c612157565b848461232a565b6001905092915050565b601f6020528060005260406000206000915054906101000a900460ff1681565b600c60019054906101000a900460ff1681565b611a58612157565b73ffffffffffffffffffffffffffffffffffffffff16611a76611662565b73ffffffffffffffffffffffffffffffffffffffff1614611acc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac3906140c1565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611b699190613d07565b60405180910390a25050565b611b7d612157565b73ffffffffffffffffffffffffffffffffffffffff16611b9b611662565b73ffffffffffffffffffffffffffffffffffffffff1614611bf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be8906140c1565b60405180910390fd5b670de0b6b3a76400006103e86005611c07610e69565b611c119190614110565b611c1b9190614199565b611c259190614199565b811015611c67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5e90614546565b60405180910390fd5b670de0b6b3a764000081611c7b9190614110565b600b8190555050565b600e60009054906101000a900460ff1681565b60095481565b6000611ca7612157565b73ffffffffffffffffffffffffffffffffffffffff16611cc5611662565b73ffffffffffffffffffffffffffffffffffffffff1614611d1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d12906140c1565b60405180910390fd5b620186a06001611d29610e69565b611d339190614110565b611d3d9190614199565b821015611d7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d76906145d8565b60405180910390fd5b6103e86005611d8c610e69565b611d969190614110565b611da09190614199565b821115611de2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd99061466a565b60405180910390fd5b81600a8190555060019050919050565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b611e8d612157565b73ffffffffffffffffffffffffffffffffffffffff16611eab611662565b73ffffffffffffffffffffffffffffffffffffffff1614611f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef8906140c1565b60405180910390fd5b600a828486611f1091906142ee565b611f1a91906142ee565b1115611f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f52906146d6565b60405180910390fd5b83601581905550826016819055508160178190555080601881905550601854601754601654601554611f8d91906142ee565b611f9791906142ee565b611fa191906142ee565b60148190555050505050565b6000611fb7612157565b73ffffffffffffffffffffffffffffffffffffffff16611fd5611662565b73ffffffffffffffffffffffffffffffffffffffff161461202b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612022906140c1565b60405180910390fd5b6000600e60006101000a81548160ff0219169083151502179055506001905090565b60125481565b61205b612157565b73ffffffffffffffffffffffffffffffffffffffff16612079611662565b73ffffffffffffffffffffffffffffffffffffffff16146120cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c6906140c1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561213f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213690614768565b60405180910390fd5b6121488161302a565b50565b60175481565b600b5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c6906147fa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561223f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122369061488c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161231d9190613d31565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561239a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123919061491e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561240a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612401906149b0565b60405180910390fd5b60008114156124245761241f83836000613191565b613025565b600c60009054906101000a900460ff1615612ae757612441611662565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156124af575061247f611662565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124e85750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612522575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561253b5750600560149054906101000a900460ff16155b15612ae657600c60019054906101000a900460ff1661263557601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806125f55750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612634576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262b90614a1c565b60405180910390fd5b5b600e60009054906101000a900460ff16156127fd57612652611662565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156126d957507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561273157507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156127fc5743600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106127b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ae90614ad4565b60405180910390fd5b43600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128a05750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612947576009548111156128ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e190614b66565b60405180910390fd5b600b546128f683611315565b8261290191906142ee565b1115612942576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293990614bd2565b60405180910390fd5b612ae5565b601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156129ea5750601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612a3957600954811115612a34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2b90614c64565b60405180910390fd5b612ae4565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612ae357600b54612a9683611315565b82612aa191906142ee565b1115612ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad990614bd2565b60405180910390fd5b5b5b5b5b5b6000612af230611315565b90506000600a548210159050808015612b175750600c60029054906101000a900460ff165b8015612b305750600560149054906101000a900460ff16155b8015612b865750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612bdc5750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612c325750601d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c76576001600560146101000a81548160ff021916908315150217905550612c5a613412565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d2c5750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612d3657600090505b6000811561301557601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d9957506000601454115b15612e9957612dc66064612db8601454886137d390919063ffffffff16565b6137e990919063ffffffff16565b905060145460155482612dd99190614110565b612de39190614199565b60196000828254612df491906142ee565b9250508190555060145460175482612e0c9190614110565b612e169190614199565b601b6000828254612e2791906142ee565b9250508190555060145460185482612e3f9190614110565b612e499190614199565b601c6000828254612e5a91906142ee565b9250508190555060145460165482612e729190614110565b612e7c9190614199565b601a6000828254612e8d91906142ee565b92505081905550612ff1565b601f60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ef457506000600f54115b15612ff057612f216064612f13600f54886137d390919063ffffffff16565b6137e990919063ffffffff16565b9050600f5460105482612f349190614110565b612f3e9190614199565b60196000828254612f4f91906142ee565b92505081905550600f5460125482612f679190614110565b612f719190614199565b601b6000828254612f8291906142ee565b92505081905550600f5460135482612f9a9190614110565b612fa49190614199565b601c6000828254612fb591906142ee565b92505081905550600f5460115482612fcd9190614110565b612fd79190614199565b601a6000828254612fe891906142ee565b925050819055505b5b600081111561300657613005873083613191565b5b80856130129190614c84565b94505b613020878787613191565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131f89061491e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613271576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613268906149b0565b60405180910390fd5b61327c8383836137ff565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132f990614d2a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461339591906142ee565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516133f99190613d31565b60405180910390a361340c848484613804565b50505050565b600061341d30611315565b90506000601c54601a54601b5460195461343791906142ee565b61344191906142ee565b61344b91906142ee565b905060008083148061345d5750600082145b1561346a575050506137d1565b6014600a546134799190614110565b831115613492576014600a5461348f9190614110565b92505b6000600283601b54866134a59190614110565b6134af9190614199565b6134b99190614199565b905060006134d0828661380990919063ffffffff16565b905060004790506134e08261381f565b60006134f5824761380990919063ffffffff16565b9050600061352087613512601954856137d390919063ffffffff16565b6137e990919063ffffffff16565b9050600061354b8861353d601a54866137d390919063ffffffff16565b6137e990919063ffffffff16565b9050600061357689613568601c54876137d390919063ffffffff16565b6137e990919063ffffffff16565b90506000818385876135889190614c84565b6135929190614c84565b61359c9190614c84565b90506000601b8190555060006019819055506000601a819055506000601c81905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161360490614d7b565b60006040518083038185875af1925050503d8060008114613641576040519150601f19603f3d011682016040523d82523d6000602084013e613646565b606091505b505080995050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168360405161369290614d7b565b60006040518083038185875af1925050503d80600081146136cf576040519150601f19603f3d011682016040523d82523d6000602084013e6136d4565b606091505b5050809950506000881180156136ea5750600081115b15613737576136f98882613a5c565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618782601b5460405161372e93929190614d90565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161377d90614d7b565b60006040518083038185875af1925050503d80600081146137ba576040519150601f19603f3d011682016040523d82523d6000602084013e6137bf565b606091505b50508099505050505050505050505050505b565b600081836137e19190614110565b905092915050565b600081836137f79190614199565b905092915050565b505050565b505050565b600081836138179190614c84565b905092915050565b6000600267ffffffffffffffff81111561383c5761383b614dc7565b5b60405190808252806020026020018201604052801561386a5781602001602082028036833780820191505090505b509050308160008151811061388257613881614df6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613927573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061394b9190614e3a565b8160018151811061395f5761395e614df6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506139c4307f00000000000000000000000000000000000000000000000000000000000000008461215f565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613a26959493929190614f60565b600060405180830381600087803b158015613a4057600080fd5b505af1158015613a54573d6000803e3d6000fd5b505050505050565b613a87307f00000000000000000000000000000000000000000000000000000000000000008461215f565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401613b0e96959493929190614fba565b60606040518083038185885af1158015613b2c573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613b519190615030565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613b92578082015181840152602081019050613b77565b83811115613ba1576000848401525b50505050565b6000601f19601f8301169050919050565b6000613bc382613b58565b613bcd8185613b63565b9350613bdd818560208601613b74565b613be681613ba7565b840191505092915050565b60006020820190508181036000830152613c0b8184613bb8565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c4382613c18565b9050919050565b613c5381613c38565b8114613c5e57600080fd5b50565b600081359050613c7081613c4a565b92915050565b6000819050919050565b613c8981613c76565b8114613c9457600080fd5b50565b600081359050613ca681613c80565b92915050565b60008060408385031215613cc357613cc2613c13565b5b6000613cd185828601613c61565b9250506020613ce285828601613c97565b9150509250929050565b60008115159050919050565b613d0181613cec565b82525050565b6000602082019050613d1c6000830184613cf8565b92915050565b613d2b81613c76565b82525050565b6000602082019050613d466000830184613d22565b92915050565b600060208284031215613d6257613d61613c13565b5b6000613d7084828501613c61565b91505092915050565b6000819050919050565b6000613d9e613d99613d9484613c18565b613d79565b613c18565b9050919050565b6000613db082613d83565b9050919050565b6000613dc282613da5565b9050919050565b613dd281613db7565b82525050565b6000602082019050613ded6000830184613dc9565b92915050565b600060208284031215613e0957613e08613c13565b5b6000613e1784828501613c97565b91505092915050565b600080600060608486031215613e3957613e38613c13565b5b6000613e4786828701613c61565b9350506020613e5886828701613c61565b9250506040613e6986828701613c97565b9150509250925092565b613e7c81613c38565b82525050565b6000602082019050613e976000830184613e73565b92915050565b60008060008060808587031215613eb757613eb6613c13565b5b6000613ec587828801613c97565b9450506020613ed687828801613c97565b9350506040613ee787828801613c97565b9250506060613ef887828801613c97565b91505092959194509250565b600060ff82169050919050565b613f1a81613f04565b82525050565b6000602082019050613f356000830184613f11565b92915050565b613f4481613cec565b8114613f4f57600080fd5b50565b600081359050613f6181613f3b565b92915050565b60008060408385031215613f7e57613f7d613c13565b5b6000613f8c85828601613c61565b9250506020613f9d85828601613f52565b9150509250929050565b600060208284031215613fbd57613fbc613c13565b5b6000613fcb84828501613f52565b91505092915050565b60008060408385031215613feb57613fea613c13565b5b6000613ff985828601613c61565b925050602061400a85828601613c61565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061405b57607f821691505b6020821081141561406f5761406e614014565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006140ab602083613b63565b91506140b682614075565b602082019050919050565b600060208201905081810360008301526140da8161409e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061411b82613c76565b915061412683613c76565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561415f5761415e6140e1565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006141a482613c76565b91506141af83613c76565b9250826141bf576141be61416a565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b6000614226602f83613b63565b9150614231826141ca565b604082019050919050565b6000602082019050818103600083015261425581614219565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006142b8602883613b63565b91506142c38261425c565b604082019050919050565b600060208201905081810360008301526142e7816142ab565b9050919050565b60006142f982613c76565b915061430483613c76565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614339576143386140e1565b5b828201905092915050565b7f4d61782042757920466565203130250000000000000000000000000000000000600082015250565b600061437a600f83613b63565b915061438582614344565b602082019050919050565b600060208201905081810360008301526143a98161436d565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061440c603983613b63565b9150614417826143b0565b604082019050919050565b6000602082019050818103600083015261443b816143ff565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061449e602583613b63565b91506144a982614442565b604082019050919050565b600060208201905081810360008301526144cd81614491565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614530602483613b63565b915061453b826144d4565b604082019050919050565b6000602082019050818103600083015261455f81614523565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006145c2603583613b63565b91506145cd82614566565b604082019050919050565b600060208201905081810360008301526145f1816145b5565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614654603483613b63565b915061465f826145f8565b604082019050919050565b6000602082019050818103600083015261468381614647565b9050919050565b7f4d61782053656c6c204665652031302500000000000000000000000000000000600082015250565b60006146c0601083613b63565b91506146cb8261468a565b602082019050919050565b600060208201905081810360008301526146ef816146b3565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614752602683613b63565b915061475d826146f6565b604082019050919050565b6000602082019050818103600083015261478181614745565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006147e4602483613b63565b91506147ef82614788565b604082019050919050565b60006020820190508181036000830152614813816147d7565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614876602283613b63565b91506148818261481a565b604082019050919050565b600060208201905081810360008301526148a581614869565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614908602583613b63565b9150614913826148ac565b604082019050919050565b60006020820190508181036000830152614937816148fb565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061499a602383613b63565b91506149a58261493e565b604082019050919050565b600060208201905081810360008301526149c98161498d565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614a06601683613b63565b9150614a11826149d0565b602082019050919050565b60006020820190508181036000830152614a35816149f9565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614abe604983613b63565b9150614ac982614a3c565b606082019050919050565b60006020820190508181036000830152614aed81614ab1565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614b50603583613b63565b9150614b5b82614af4565b604082019050919050565b60006020820190508181036000830152614b7f81614b43565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614bbc601383613b63565b9150614bc782614b86565b602082019050919050565b60006020820190508181036000830152614beb81614baf565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614c4e603683613b63565b9150614c5982614bf2565b604082019050919050565b60006020820190508181036000830152614c7d81614c41565b9050919050565b6000614c8f82613c76565b9150614c9a83613c76565b925082821015614cad57614cac6140e1565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614d14602683613b63565b9150614d1f82614cb8565b604082019050919050565b60006020820190508181036000830152614d4381614d07565b9050919050565b600081905092915050565b50565b6000614d65600083614d4a565b9150614d7082614d55565b600082019050919050565b6000614d8682614d58565b9150819050919050565b6000606082019050614da56000830186613d22565b614db26020830185613d22565b614dbf6040830184613d22565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614e3481613c4a565b92915050565b600060208284031215614e5057614e4f613c13565b5b6000614e5e84828501614e25565b91505092915050565b6000819050919050565b6000614e8c614e87614e8284614e67565b613d79565b613c76565b9050919050565b614e9c81614e71565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614ed781613c38565b82525050565b6000614ee98383614ece565b60208301905092915050565b6000602082019050919050565b6000614f0d82614ea2565b614f178185614ead565b9350614f2283614ebe565b8060005b83811015614f53578151614f3a8882614edd565b9750614f4583614ef5565b925050600181019050614f26565b5085935050505092915050565b600060a082019050614f756000830188613d22565b614f826020830187614e93565b8181036040830152614f948186614f02565b9050614fa36060830185613e73565b614fb06080830184613d22565b9695505050505050565b600060c082019050614fcf6000830189613e73565b614fdc6020830188613d22565b614fe96040830187614e93565b614ff66060830186614e93565b6150036080830185613e73565b61501060a0830184613d22565b979650505050505050565b60008151905061502a81613c80565b92915050565b60008060006060848603121561504957615048613c13565b5b60006150578682870161501b565b93505060206150688682870161501b565b92505060406150798682870161501b565b915050925092509256fea2646970667358221220f5d8926dbf30da94c9cfa7c6bd63ff8dd4ee25ec67d31ac4353f6674f5d5a17464736f6c634300080a0033

Deployed Bytecode

0x60806040526004361061036f5760003560e01c80638da5cb5b116101c6578063c0246668116100f7578063e2f4560511610095578063f11a24d31161006f578063f11a24d314610cc5578063f2fde38b14610cf0578063f637434214610d19578063f8b45b0514610d4457610376565b8063e2f4560514610c46578063e7ad9fcd14610c71578063e884f26014610c9a57610376565b8063c8c8ebe4116100d1578063c8c8ebe414610b76578063d257b34f14610ba1578063d85ba06314610bde578063dd62ed3e14610c0957610376565b8063c024666814610af9578063c18bc19514610b22578063c876d0b914610b4b57610376565b80639fccce3211610164578063a457c2d71161013e578063a457c2d714610a17578063a9059cbb14610a54578063b62496f514610a91578063bbc0c74214610ace57610376565b80639fccce3214610996578063a0d82dc5146109c1578063a1dc92bc146109ec57610376565b8063924de9b7116101a0578063924de9b7146108ee57806395d89b41146109175780639a7a23d6146109425780639c3b4fdc1461096b57610376565b80638da5cb5b1461086d5780638ea5220f1461089857806392136913146108c357610376565b806344249f04116102a0578063715018a61161023e57806375f0a8741161021857806375f0a874146107d55780637b208769146108005780637bce5a041461082b5780638a8c523c1461085657610376565b8063715018a61461076a578063751039fc146107815780637571336a146107ac57610376565b80634fbee1931161027a5780634fbee1931461069a5780636a486a8e146106d75780636ddd17131461070257806370a082311461072d57610376565b806344249f041461061957806349bd5a5e146106445780634a62bb651461066f57610376565b80631f3fed8f1161030d57806327c8f835116102e757806327c8f8351461055d5780632e6ed7ef14610588578063313ce567146105b157806339509351146105dc57610376565b80631f3fed8f146104cc578063203e727e146104f757806323b872dd1461052057610376565b806310d5de531161034957806310d5de531461040e5780631694505e1461044b57806318160ddd146104765780631a8145bb146104a157610376565b806306fdde031461037b578063095ea7b3146103a65780630d7f1441146103e357610376565b3661037657005b600080fd5b34801561038757600080fd5b50610390610d6f565b60405161039d9190613bf1565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c89190613cac565b610e01565b6040516103da9190613d07565b60405180910390f35b3480156103ef57600080fd5b506103f8610e1f565b6040516104059190613d31565b60405180910390f35b34801561041a57600080fd5b5061043560048036038101906104309190613d4c565b610e25565b6040516104429190613d07565b60405180910390f35b34801561045757600080fd5b50610460610e45565b60405161046d9190613dd8565b60405180910390f35b34801561048257600080fd5b5061048b610e69565b6040516104989190613d31565b60405180910390f35b3480156104ad57600080fd5b506104b6610e73565b6040516104c39190613d31565b60405180910390f35b3480156104d857600080fd5b506104e1610e79565b6040516104ee9190613d31565b60405180910390f35b34801561050357600080fd5b5061051e60048036038101906105199190613df3565b610e7f565b005b34801561052c57600080fd5b5061054760048036038101906105429190613e20565b610f8e565b6040516105549190613d07565b60405180910390f35b34801561056957600080fd5b50610572611086565b60405161057f9190613e82565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa9190613e9d565b61108c565b005b3480156105bd57600080fd5b506105c66111b4565b6040516105d39190613f20565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe9190613cac565b6111bd565b6040516106109190613d07565b60405180910390f35b34801561062557600080fd5b5061062e611269565b60405161063b9190613d31565b60405180910390f35b34801561065057600080fd5b5061065961126f565b6040516106669190613e82565b60405180910390f35b34801561067b57600080fd5b50610684611293565b6040516106919190613d07565b60405180910390f35b3480156106a657600080fd5b506106c160048036038101906106bc9190613d4c565b6112a6565b6040516106ce9190613d07565b60405180910390f35b3480156106e357600080fd5b506106ec6112fc565b6040516106f99190613d31565b60405180910390f35b34801561070e57600080fd5b50610717611302565b6040516107249190613d07565b60405180910390f35b34801561073957600080fd5b50610754600480360381019061074f9190613d4c565b611315565b6040516107619190613d31565b60405180910390f35b34801561077657600080fd5b5061077f61135d565b005b34801561078d57600080fd5b506107966113e5565b6040516107a39190613d07565b60405180910390f35b3480156107b857600080fd5b506107d360048036038101906107ce9190613f67565b611485565b005b3480156107e157600080fd5b506107ea61155c565b6040516107f79190613e82565b60405180910390f35b34801561080c57600080fd5b50610815611582565b6040516108229190613e82565b60405180910390f35b34801561083757600080fd5b506108406115a8565b60405161084d9190613d31565b60405180910390f35b34801561086257600080fd5b5061086b6115ae565b005b34801561087957600080fd5b50610882611662565b60405161088f9190613e82565b60405180910390f35b3480156108a457600080fd5b506108ad61168c565b6040516108ba9190613e82565b60405180910390f35b3480156108cf57600080fd5b506108d86116b2565b6040516108e59190613d31565b60405180910390f35b3480156108fa57600080fd5b5061091560048036038101906109109190613fa7565b6116b8565b005b34801561092357600080fd5b5061092c611751565b6040516109399190613bf1565b60405180910390f35b34801561094e57600080fd5b5061096960048036038101906109649190613f67565b6117e3565b005b34801561097757600080fd5b506109806118fc565b60405161098d9190613d31565b60405180910390f35b3480156109a257600080fd5b506109ab611902565b6040516109b89190613d31565b60405180910390f35b3480156109cd57600080fd5b506109d6611908565b6040516109e39190613d31565b60405180910390f35b3480156109f857600080fd5b50610a0161190e565b604051610a0e9190613d31565b60405180910390f35b348015610a2357600080fd5b50610a3e6004803603810190610a399190613cac565b611914565b604051610a4b9190613d07565b60405180910390f35b348015610a6057600080fd5b50610a7b6004803603810190610a769190613cac565b6119ff565b604051610a889190613d07565b60405180910390f35b348015610a9d57600080fd5b50610ab86004803603810190610ab39190613d4c565b611a1d565b604051610ac59190613d07565b60405180910390f35b348015610ada57600080fd5b50610ae3611a3d565b604051610af09190613d07565b60405180910390f35b348015610b0557600080fd5b50610b206004803603810190610b1b9190613f67565b611a50565b005b348015610b2e57600080fd5b50610b496004803603810190610b449190613df3565b611b75565b005b348015610b5757600080fd5b50610b60611c84565b604051610b6d9190613d07565b60405180910390f35b348015610b8257600080fd5b50610b8b611c97565b604051610b989190613d31565b60405180910390f35b348015610bad57600080fd5b50610bc86004803603810190610bc39190613df3565b611c9d565b604051610bd59190613d07565b60405180910390f35b348015610bea57600080fd5b50610bf3611df2565b604051610c009190613d31565b60405180910390f35b348015610c1557600080fd5b50610c306004803603810190610c2b9190613fd4565b611df8565b604051610c3d9190613d31565b60405180910390f35b348015610c5257600080fd5b50610c5b611e7f565b604051610c689190613d31565b60405180910390f35b348015610c7d57600080fd5b50610c986004803603810190610c939190613e9d565b611e85565b005b348015610ca657600080fd5b50610caf611fad565b604051610cbc9190613d07565b60405180910390f35b348015610cd157600080fd5b50610cda61204d565b604051610ce79190613d31565b60405180910390f35b348015610cfc57600080fd5b50610d176004803603810190610d129190613d4c565b612053565b005b348015610d2557600080fd5b50610d2e61214b565b604051610d3b9190613d31565b60405180910390f35b348015610d5057600080fd5b50610d59612151565b604051610d669190613d31565b60405180910390f35b606060038054610d7e90614043565b80601f0160208091040260200160405190810160405280929190818152602001828054610daa90614043565b8015610df75780601f10610dcc57610100808354040283529160200191610df7565b820191906000526020600020905b815481529060010190602001808311610dda57829003601f168201915b5050505050905090565b6000610e15610e0e612157565b848461215f565b6001905092915050565b60155481565b601e6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b601b5481565b601a5481565b610e87612157565b73ffffffffffffffffffffffffffffffffffffffff16610ea5611662565b73ffffffffffffffffffffffffffffffffffffffff1614610efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef2906140c1565b60405180910390fd5b670de0b6b3a76400006103e86005610f11610e69565b610f1b9190614110565b610f259190614199565b610f2f9190614199565b811015610f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f689061423c565b60405180910390fd5b670de0b6b3a764000081610f859190614110565b60098190555050565b6000610f9b84848461232a565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610fe6612157565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105d906142ce565b60405180910390fd5b61107a85611072612157565b85840361215f565b60019150509392505050565b61dead81565b611094612157565b73ffffffffffffffffffffffffffffffffffffffff166110b2611662565b73ffffffffffffffffffffffffffffffffffffffff1614611108576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ff906140c1565b60405180910390fd5b600a82848661111791906142ee565b61112191906142ee565b1115611162576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115990614390565b60405180910390fd5b8360108190555082601181905550816012819055508060138190555060135460125460115460105461119491906142ee565b61119e91906142ee565b6111a891906142ee565b600f8190555050505050565b60006012905090565b600061125f6111ca612157565b8484600160006111d8612157565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461125a91906142ee565b61215f565b6001905092915050565b60195481565b7f000000000000000000000000ffe72ee33a746ea71363e0bf85d80cfaf10aa07781565b600c60009054906101000a900460ff1681565b6000601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600c60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611365612157565b73ffffffffffffffffffffffffffffffffffffffff16611383611662565b73ffffffffffffffffffffffffffffffffffffffff16146113d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d0906140c1565b60405180910390fd5b6113e3600061302a565b565b60006113ef612157565b73ffffffffffffffffffffffffffffffffffffffff1661140d611662565b73ffffffffffffffffffffffffffffffffffffffff1614611463576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145a906140c1565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b61148d612157565b73ffffffffffffffffffffffffffffffffffffffff166114ab611662565b73ffffffffffffffffffffffffffffffffffffffff1614611501576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f8906140c1565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b6115b6612157565b73ffffffffffffffffffffffffffffffffffffffff166115d4611662565b73ffffffffffffffffffffffffffffffffffffffff161461162a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611621906140c1565b60405180910390fd5b6001600c60016101000a81548160ff0219169083151502179055506001600c60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60165481565b6116c0612157565b73ffffffffffffffffffffffffffffffffffffffff166116de611662565b73ffffffffffffffffffffffffffffffffffffffff1614611734576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172b906140c1565b60405180910390fd5b80600c60026101000a81548160ff02191690831515021790555050565b60606004805461176090614043565b80601f016020809104026020016040519081016040528092919081815260200182805461178c90614043565b80156117d95780601f106117ae576101008083540402835291602001916117d9565b820191906000526020600020905b8154815290600101906020018083116117bc57829003601f168201915b5050505050905090565b6117eb612157565b73ffffffffffffffffffffffffffffffffffffffff16611809611662565b73ffffffffffffffffffffffffffffffffffffffff161461185f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611856906140c1565b60405180910390fd5b7f000000000000000000000000ffe72ee33a746ea71363e0bf85d80cfaf10aa07773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e590614422565b60405180910390fd5b6118f882826130f0565b5050565b60135481565b601c5481565b60185481565b60105481565b60008060016000611923612157565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156119e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d7906144b4565b60405180910390fd5b6119f46119eb612157565b8585840361215f565b600191505092915050565b6000611a13611a0c612157565b848461232a565b6001905092915050565b601f6020528060005260406000206000915054906101000a900460ff1681565b600c60019054906101000a900460ff1681565b611a58612157565b73ffffffffffffffffffffffffffffffffffffffff16611a76611662565b73ffffffffffffffffffffffffffffffffffffffff1614611acc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac3906140c1565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611b699190613d07565b60405180910390a25050565b611b7d612157565b73ffffffffffffffffffffffffffffffffffffffff16611b9b611662565b73ffffffffffffffffffffffffffffffffffffffff1614611bf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be8906140c1565b60405180910390fd5b670de0b6b3a76400006103e86005611c07610e69565b611c119190614110565b611c1b9190614199565b611c259190614199565b811015611c67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5e90614546565b60405180910390fd5b670de0b6b3a764000081611c7b9190614110565b600b8190555050565b600e60009054906101000a900460ff1681565b60095481565b6000611ca7612157565b73ffffffffffffffffffffffffffffffffffffffff16611cc5611662565b73ffffffffffffffffffffffffffffffffffffffff1614611d1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d12906140c1565b60405180910390fd5b620186a06001611d29610e69565b611d339190614110565b611d3d9190614199565b821015611d7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d76906145d8565b60405180910390fd5b6103e86005611d8c610e69565b611d969190614110565b611da09190614199565b821115611de2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd99061466a565b60405180910390fd5b81600a8190555060019050919050565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b611e8d612157565b73ffffffffffffffffffffffffffffffffffffffff16611eab611662565b73ffffffffffffffffffffffffffffffffffffffff1614611f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef8906140c1565b60405180910390fd5b600a828486611f1091906142ee565b611f1a91906142ee565b1115611f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f52906146d6565b60405180910390fd5b83601581905550826016819055508160178190555080601881905550601854601754601654601554611f8d91906142ee565b611f9791906142ee565b611fa191906142ee565b60148190555050505050565b6000611fb7612157565b73ffffffffffffffffffffffffffffffffffffffff16611fd5611662565b73ffffffffffffffffffffffffffffffffffffffff161461202b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612022906140c1565b60405180910390fd5b6000600e60006101000a81548160ff0219169083151502179055506001905090565b60125481565b61205b612157565b73ffffffffffffffffffffffffffffffffffffffff16612079611662565b73ffffffffffffffffffffffffffffffffffffffff16146120cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c6906140c1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561213f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213690614768565b60405180910390fd5b6121488161302a565b50565b60175481565b600b5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c6906147fa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561223f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122369061488c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161231d9190613d31565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561239a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123919061491e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561240a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612401906149b0565b60405180910390fd5b60008114156124245761241f83836000613191565b613025565b600c60009054906101000a900460ff1615612ae757612441611662565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156124af575061247f611662565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124e85750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612522575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561253b5750600560149054906101000a900460ff16155b15612ae657600c60019054906101000a900460ff1661263557601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806125f55750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612634576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262b90614a1c565b60405180910390fd5b5b600e60009054906101000a900460ff16156127fd57612652611662565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156126d957507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561273157507f000000000000000000000000ffe72ee33a746ea71363e0bf85d80cfaf10aa07773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156127fc5743600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106127b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ae90614ad4565b60405180910390fd5b43600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128a05750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612947576009548111156128ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e190614b66565b60405180910390fd5b600b546128f683611315565b8261290191906142ee565b1115612942576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293990614bd2565b60405180910390fd5b612ae5565b601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156129ea5750601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612a3957600954811115612a34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2b90614c64565b60405180910390fd5b612ae4565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612ae357600b54612a9683611315565b82612aa191906142ee565b1115612ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad990614bd2565b60405180910390fd5b5b5b5b5b5b6000612af230611315565b90506000600a548210159050808015612b175750600c60029054906101000a900460ff165b8015612b305750600560149054906101000a900460ff16155b8015612b865750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612bdc5750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612c325750601d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c76576001600560146101000a81548160ff021916908315150217905550612c5a613412565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d2c5750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612d3657600090505b6000811561301557601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d9957506000601454115b15612e9957612dc66064612db8601454886137d390919063ffffffff16565b6137e990919063ffffffff16565b905060145460155482612dd99190614110565b612de39190614199565b60196000828254612df491906142ee565b9250508190555060145460175482612e0c9190614110565b612e169190614199565b601b6000828254612e2791906142ee565b9250508190555060145460185482612e3f9190614110565b612e499190614199565b601c6000828254612e5a91906142ee565b9250508190555060145460165482612e729190614110565b612e7c9190614199565b601a6000828254612e8d91906142ee565b92505081905550612ff1565b601f60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ef457506000600f54115b15612ff057612f216064612f13600f54886137d390919063ffffffff16565b6137e990919063ffffffff16565b9050600f5460105482612f349190614110565b612f3e9190614199565b60196000828254612f4f91906142ee565b92505081905550600f5460125482612f679190614110565b612f719190614199565b601b6000828254612f8291906142ee565b92505081905550600f5460135482612f9a9190614110565b612fa49190614199565b601c6000828254612fb591906142ee565b92505081905550600f5460115482612fcd9190614110565b612fd79190614199565b601a6000828254612fe891906142ee565b925050819055505b5b600081111561300657613005873083613191565b5b80856130129190614c84565b94505b613020878787613191565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131f89061491e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613271576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613268906149b0565b60405180910390fd5b61327c8383836137ff565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132f990614d2a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461339591906142ee565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516133f99190613d31565b60405180910390a361340c848484613804565b50505050565b600061341d30611315565b90506000601c54601a54601b5460195461343791906142ee565b61344191906142ee565b61344b91906142ee565b905060008083148061345d5750600082145b1561346a575050506137d1565b6014600a546134799190614110565b831115613492576014600a5461348f9190614110565b92505b6000600283601b54866134a59190614110565b6134af9190614199565b6134b99190614199565b905060006134d0828661380990919063ffffffff16565b905060004790506134e08261381f565b60006134f5824761380990919063ffffffff16565b9050600061352087613512601954856137d390919063ffffffff16565b6137e990919063ffffffff16565b9050600061354b8861353d601a54866137d390919063ffffffff16565b6137e990919063ffffffff16565b9050600061357689613568601c54876137d390919063ffffffff16565b6137e990919063ffffffff16565b90506000818385876135889190614c84565b6135929190614c84565b61359c9190614c84565b90506000601b8190555060006019819055506000601a819055506000601c81905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161360490614d7b565b60006040518083038185875af1925050503d8060008114613641576040519150601f19603f3d011682016040523d82523d6000602084013e613646565b606091505b505080995050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168360405161369290614d7b565b60006040518083038185875af1925050503d80600081146136cf576040519150601f19603f3d011682016040523d82523d6000602084013e6136d4565b606091505b5050809950506000881180156136ea5750600081115b15613737576136f98882613a5c565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618782601b5460405161372e93929190614d90565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161377d90614d7b565b60006040518083038185875af1925050503d80600081146137ba576040519150601f19603f3d011682016040523d82523d6000602084013e6137bf565b606091505b50508099505050505050505050505050505b565b600081836137e19190614110565b905092915050565b600081836137f79190614199565b905092915050565b505050565b505050565b600081836138179190614c84565b905092915050565b6000600267ffffffffffffffff81111561383c5761383b614dc7565b5b60405190808252806020026020018201604052801561386a5781602001602082028036833780820191505090505b509050308160008151811061388257613881614df6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613927573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061394b9190614e3a565b8160018151811061395f5761395e614df6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506139c4307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461215f565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613a26959493929190614f60565b600060405180830381600087803b158015613a4057600080fd5b505af1158015613a54573d6000803e3d6000fd5b505050505050565b613a87307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461215f565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401613b0e96959493929190614fba565b60606040518083038185885af1158015613b2c573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613b519190615030565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613b92578082015181840152602081019050613b77565b83811115613ba1576000848401525b50505050565b6000601f19601f8301169050919050565b6000613bc382613b58565b613bcd8185613b63565b9350613bdd818560208601613b74565b613be681613ba7565b840191505092915050565b60006020820190508181036000830152613c0b8184613bb8565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c4382613c18565b9050919050565b613c5381613c38565b8114613c5e57600080fd5b50565b600081359050613c7081613c4a565b92915050565b6000819050919050565b613c8981613c76565b8114613c9457600080fd5b50565b600081359050613ca681613c80565b92915050565b60008060408385031215613cc357613cc2613c13565b5b6000613cd185828601613c61565b9250506020613ce285828601613c97565b9150509250929050565b60008115159050919050565b613d0181613cec565b82525050565b6000602082019050613d1c6000830184613cf8565b92915050565b613d2b81613c76565b82525050565b6000602082019050613d466000830184613d22565b92915050565b600060208284031215613d6257613d61613c13565b5b6000613d7084828501613c61565b91505092915050565b6000819050919050565b6000613d9e613d99613d9484613c18565b613d79565b613c18565b9050919050565b6000613db082613d83565b9050919050565b6000613dc282613da5565b9050919050565b613dd281613db7565b82525050565b6000602082019050613ded6000830184613dc9565b92915050565b600060208284031215613e0957613e08613c13565b5b6000613e1784828501613c97565b91505092915050565b600080600060608486031215613e3957613e38613c13565b5b6000613e4786828701613c61565b9350506020613e5886828701613c61565b9250506040613e6986828701613c97565b9150509250925092565b613e7c81613c38565b82525050565b6000602082019050613e976000830184613e73565b92915050565b60008060008060808587031215613eb757613eb6613c13565b5b6000613ec587828801613c97565b9450506020613ed687828801613c97565b9350506040613ee787828801613c97565b9250506060613ef887828801613c97565b91505092959194509250565b600060ff82169050919050565b613f1a81613f04565b82525050565b6000602082019050613f356000830184613f11565b92915050565b613f4481613cec565b8114613f4f57600080fd5b50565b600081359050613f6181613f3b565b92915050565b60008060408385031215613f7e57613f7d613c13565b5b6000613f8c85828601613c61565b9250506020613f9d85828601613f52565b9150509250929050565b600060208284031215613fbd57613fbc613c13565b5b6000613fcb84828501613f52565b91505092915050565b60008060408385031215613feb57613fea613c13565b5b6000613ff985828601613c61565b925050602061400a85828601613c61565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061405b57607f821691505b6020821081141561406f5761406e614014565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006140ab602083613b63565b91506140b682614075565b602082019050919050565b600060208201905081810360008301526140da8161409e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061411b82613c76565b915061412683613c76565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561415f5761415e6140e1565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006141a482613c76565b91506141af83613c76565b9250826141bf576141be61416a565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b6000614226602f83613b63565b9150614231826141ca565b604082019050919050565b6000602082019050818103600083015261425581614219565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006142b8602883613b63565b91506142c38261425c565b604082019050919050565b600060208201905081810360008301526142e7816142ab565b9050919050565b60006142f982613c76565b915061430483613c76565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614339576143386140e1565b5b828201905092915050565b7f4d61782042757920466565203130250000000000000000000000000000000000600082015250565b600061437a600f83613b63565b915061438582614344565b602082019050919050565b600060208201905081810360008301526143a98161436d565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061440c603983613b63565b9150614417826143b0565b604082019050919050565b6000602082019050818103600083015261443b816143ff565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061449e602583613b63565b91506144a982614442565b604082019050919050565b600060208201905081810360008301526144cd81614491565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614530602483613b63565b915061453b826144d4565b604082019050919050565b6000602082019050818103600083015261455f81614523565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006145c2603583613b63565b91506145cd82614566565b604082019050919050565b600060208201905081810360008301526145f1816145b5565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614654603483613b63565b915061465f826145f8565b604082019050919050565b6000602082019050818103600083015261468381614647565b9050919050565b7f4d61782053656c6c204665652031302500000000000000000000000000000000600082015250565b60006146c0601083613b63565b91506146cb8261468a565b602082019050919050565b600060208201905081810360008301526146ef816146b3565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614752602683613b63565b915061475d826146f6565b604082019050919050565b6000602082019050818103600083015261478181614745565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006147e4602483613b63565b91506147ef82614788565b604082019050919050565b60006020820190508181036000830152614813816147d7565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614876602283613b63565b91506148818261481a565b604082019050919050565b600060208201905081810360008301526148a581614869565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614908602583613b63565b9150614913826148ac565b604082019050919050565b60006020820190508181036000830152614937816148fb565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061499a602383613b63565b91506149a58261493e565b604082019050919050565b600060208201905081810360008301526149c98161498d565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614a06601683613b63565b9150614a11826149d0565b602082019050919050565b60006020820190508181036000830152614a35816149f9565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614abe604983613b63565b9150614ac982614a3c565b606082019050919050565b60006020820190508181036000830152614aed81614ab1565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614b50603583613b63565b9150614b5b82614af4565b604082019050919050565b60006020820190508181036000830152614b7f81614b43565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614bbc601383613b63565b9150614bc782614b86565b602082019050919050565b60006020820190508181036000830152614beb81614baf565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614c4e603683613b63565b9150614c5982614bf2565b604082019050919050565b60006020820190508181036000830152614c7d81614c41565b9050919050565b6000614c8f82613c76565b9150614c9a83613c76565b925082821015614cad57614cac6140e1565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614d14602683613b63565b9150614d1f82614cb8565b604082019050919050565b60006020820190508181036000830152614d4381614d07565b9050919050565b600081905092915050565b50565b6000614d65600083614d4a565b9150614d7082614d55565b600082019050919050565b6000614d8682614d58565b9150819050919050565b6000606082019050614da56000830186613d22565b614db26020830185613d22565b614dbf6040830184613d22565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614e3481613c4a565b92915050565b600060208284031215614e5057614e4f613c13565b5b6000614e5e84828501614e25565b91505092915050565b6000819050919050565b6000614e8c614e87614e8284614e67565b613d79565b613c76565b9050919050565b614e9c81614e71565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614ed781613c38565b82525050565b6000614ee98383614ece565b60208301905092915050565b6000602082019050919050565b6000614f0d82614ea2565b614f178185614ead565b9350614f2283614ebe565b8060005b83811015614f53578151614f3a8882614edd565b9750614f4583614ef5565b925050600181019050614f26565b5085935050505092915050565b600060a082019050614f756000830188613d22565b614f826020830187614e93565b8181036040830152614f948186614f02565b9050614fa36060830185613e73565b614fb06080830184613d22565b9695505050505050565b600060c082019050614fcf6000830189613e73565b614fdc6020830188613d22565b614fe96040830187614e93565b614ff66060830186614e93565b6150036080830185613e73565b61501060a0830184613d22565b979650505050505050565b60008151905061502a81613c80565b92915050565b60008060006060848603121561504957615048613c13565b5b60006150578682870161501b565b93505060206150688682870161501b565b92505060406150798682870161501b565b915050925092509256fea2646970667358221220f5d8926dbf30da94c9cfa7c6bd63ff8dd4ee25ec67d31ac4353f6674f5d5a17464736f6c634300080a0033

Deployed Bytecode Sourcemap

32701:16486:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9628:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11795:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33740:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34177:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32779:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10748:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33961:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33921;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38570:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12446:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32882:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39489:489;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10590:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13347:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33883:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32837:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33191:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41191:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33708:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33270:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10919:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2863:103;;;;;;;;;;;;;:::i;:::-;;37678:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39118:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33006:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32971:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33601:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37514:112;;;;;;;;;;;;;:::i;:::-;;2212:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33043:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33776:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39381:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9847:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40683:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33675:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34001:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33852:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33566:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14065:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11259:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34398:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33231:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40493:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38853:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33487:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33076:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38065:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33535:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11497:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33118:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39986:499;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37860:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33638:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3121:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33814:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33158:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9628:100;9682:13;9715:5;9708:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9628:100;:::o;11795:169::-;11878:4;11895:39;11904:12;:10;:12::i;:::-;11918:7;11927:6;11895:8;:39::i;:::-;11952:4;11945:11;;11795:169;;;;:::o;33740:29::-;;;;:::o;34177:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;32779:51::-;;;:::o;10748:108::-;10809:7;10836:12;;10829:19;;10748:108;:::o;33961:33::-;;;;:::o;33921:::-;;;;:::o;38570:275::-;2443:12;:10;:12::i;:::-;2432:23;;:7;:5;:7::i;:::-;:23;;;2424:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38707:4:::1;38699;38694:1;38678:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38677:26;;;;:::i;:::-;38676:35;;;;:::i;:::-;38666:6;:45;;38644:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;38830:6;38820;:17;;;;:::i;:::-;38797:20;:40;;;;38570:275:::0;:::o;12446:492::-;12586:4;12603:36;12613:6;12621:9;12632:6;12603:9;:36::i;:::-;12652:24;12679:11;:19;12691:6;12679:19;;;;;;;;;;;;;;;:33;12699:12;:10;:12::i;:::-;12679:33;;;;;;;;;;;;;;;;12652:60;;12751:6;12731:16;:26;;12723:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12838:57;12847:6;12855:12;:10;:12::i;:::-;12888:6;12869:16;:25;12838:8;:57::i;:::-;12926:4;12919:11;;;12446:492;;;;;:::o;32882:53::-;32928:6;32882:53;:::o;39489:489::-;2443:12;:10;:12::i;:::-;2432:23;;:7;:5;:7::i;:::-;:23;;;2424:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39714:2:::1;39696:13;39680;39666:11;:27;;;;:::i;:::-;:43;;;;:::i;:::-;39665:51;;39657:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;39757:11;39741:13;:27;;;;39797:13;39779:15;:31;;;;39839:13;39821:15;:31;;;;39875:7;39863:9;:19;;;;39960:9;;39942:15;;39924;;39908:13;;:31;;;;:::i;:::-;:49;;;;:::i;:::-;:61;;;;:::i;:::-;39893:12;:76;;;;39489:489:::0;;;;:::o;10590:93::-;10648:5;10673:2;10666:9;;10590:93;:::o;13347:215::-;13435:4;13452:80;13461:12;:10;:12::i;:::-;13475:7;13521:10;13484:11;:25;13496:12;:10;:12::i;:::-;13484:25;;;;;;;;;;;;;;;:34;13510:7;13484:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13452:8;:80::i;:::-;13550:4;13543:11;;13347:215;;;;:::o;33883:31::-;;;;:::o;32837:38::-;;;:::o;33191:33::-;;;;;;;;;;;;;:::o;41191:126::-;41257:4;41281:19;:28;41301:7;41281:28;;;;;;;;;;;;;;;;;;;;;;;;;41274:35;;41191:126;;;:::o;33708:28::-;;;;:::o;33270:30::-;;;;;;;;;;;;;:::o;10919:127::-;10993:7;11020:9;:18;11030:7;11020:18;;;;;;;;;;;;;;;;11013:25;;10919:127;;;:::o;2863:103::-;2443:12;:10;:12::i;:::-;2432:23;;:7;:5;:7::i;:::-;:23;;;2424:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2928:30:::1;2955:1;2928:18;:30::i;:::-;2863:103::o:0;37678:121::-;37730:4;2443:12;:10;:12::i;:::-;2432:23;;:7;:5;:7::i;:::-;:23;;;2424:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37764:5:::1;37747:14;;:22;;;;;;;;;;;;;;;;;;37787:4;37780:11;;37678:121:::0;:::o;39118:167::-;2443:12;:10;:12::i;:::-;2432:23;;:7;:5;:7::i;:::-;:23;;;2424:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39273:4:::1;39231:31;:39;39263:6;39231:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;39118:167:::0;;:::o;33006:30::-;;;;;;;;;;;;;:::o;32971:28::-;;;;;;;;;;;;;:::o;33601:30::-;;;;:::o;37514:112::-;2443:12;:10;:12::i;:::-;2432:23;;:7;:5;:7::i;:::-;:23;;;2424:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37585:4:::1;37569:13;;:20;;;;;;;;;;;;;;;;;;37614:4;37600:11;;:18;;;;;;;;;;;;;;;;;;37514:112::o:0;2212:87::-;2258:7;2285:6;;;;;;;;;;;2278:13;;2212:87;:::o;33043:24::-;;;;;;;;;;;;;:::o;33776:31::-;;;;:::o;39381:100::-;2443:12;:10;:12::i;:::-;2432:23;;:7;:5;:7::i;:::-;:23;;;2424:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39466:7:::1;39452:11;;:21;;;;;;;;;;;;;;;;;;39381:100:::0;:::o;9847:104::-;9903:13;9936:7;9929:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9847:104;:::o;40683:304::-;2443:12;:10;:12::i;:::-;2432:23;;:7;:5;:7::i;:::-;:23;;;2424:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40827:13:::1;40819:21;;:4;:21;;;;40797:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;40938:41;40967:4;40973:5;40938:28;:41::i;:::-;40683:304:::0;;:::o;33675:24::-;;;;:::o;34001:27::-;;;;:::o;33852:25::-;;;;:::o;33566:28::-;;;;:::o;14065:413::-;14158:4;14175:24;14202:11;:25;14214:12;:10;:12::i;:::-;14202:25;;;;;;;;;;;;;;;:34;14228:7;14202:34;;;;;;;;;;;;;;;;14175:61;;14275:15;14255:16;:35;;14247:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14368:67;14377:12;:10;:12::i;:::-;14391:7;14419:15;14400:16;:34;14368:8;:67::i;:::-;14466:4;14459:11;;;14065:413;;;;:::o;11259:175::-;11345:4;11362:42;11372:12;:10;:12::i;:::-;11386:9;11397:6;11362:9;:42::i;:::-;11422:4;11415:11;;11259:175;;;;:::o;34398:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33231:32::-;;;;;;;;;;;;;:::o;40493:182::-;2443:12;:10;:12::i;:::-;2432:23;;:7;:5;:7::i;:::-;:23;;;2424:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40609:8:::1;40578:19;:28;40598:7;40578:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40649:7;40633:34;;;40658:8;40633:34;;;;;;:::i;:::-;;;;;;;;40493:182:::0;;:::o;38853:256::-;2443:12;:10;:12::i;:::-;2432:23;;:7;:5;:7::i;:::-;:23;;;2424:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38993:4:::1;38985;38980:1;38964:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38963:26;;;;:::i;:::-;38962:35;;;;:::i;:::-;38952:6;:45;;38930:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;39094:6;39084;:17;;;;:::i;:::-;39072:9;:29;;;;38853:256:::0;:::o;33487:39::-;;;;;;;;;;;;;:::o;33076:35::-;;;;:::o;38065:497::-;38173:4;2443:12;:10;:12::i;:::-;2432:23;;:7;:5;:7::i;:::-;:23;;;2424:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38252:6:::1;38247:1;38231:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38230:28;;;;:::i;:::-;38217:9;:41;;38195:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;38407:4;38402:1;38386:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38385:26;;;;:::i;:::-;38372:9;:39;;38350:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;38523:9;38502:18;:30;;;;38550:4;38543:11;;38065:497:::0;;;:::o;33535:27::-;;;;:::o;11497:151::-;11586:7;11613:11;:18;11625:5;11613:18;;;;;;;;;;;;;;;:27;11632:7;11613:27;;;;;;;;;;;;;;;;11606:34;;11497:151;;;;:::o;33118:33::-;;;;:::o;39986:499::-;2443:12;:10;:12::i;:::-;2432:23;;:7;:5;:7::i;:::-;:23;;;2424:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40212:2:::1;40194:13;40178;40164:11;:27;;;;:::i;:::-;:43;;;;:::i;:::-;40163:51;;40155:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;40257:11;40240:14;:28;;;;40298:13;40279:16;:32;;;;40341:13;40322:16;:32;;;;40378:7;40365:10;:20;;;;40467:10;;40448:16;;40429;;40412:14;;:33;;;;:::i;:::-;:52;;;;:::i;:::-;:65;;;;:::i;:::-;40396:13;:81;;;;39986:499:::0;;;;:::o;37860:135::-;37920:4;2443:12;:10;:12::i;:::-;2432:23;;:7;:5;:7::i;:::-;:23;;;2424:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37960:5:::1;37937:20;;:28;;;;;;;;;;;;;;;;;;37983:4;37976:11;;37860:135:::0;:::o;33638:30::-;;;;:::o;3121:201::-;2443:12;:10;:12::i;:::-;2432:23;;:7;:5;:7::i;:::-;:23;;;2424:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3230:1:::1;3210:22;;:8;:22;;;;3202:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3286:28;3305:8;3286:18;:28::i;:::-;3121:201:::0;:::o;33814:31::-;;;;:::o;33158:24::-;;;;:::o;885:98::-;938:7;965:10;958:17;;885:98;:::o;17749:380::-;17902:1;17885:19;;:5;:19;;;;17877:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17983:1;17964:21;;:7;:21;;;;17956:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18067:6;18037:11;:18;18049:5;18037:18;;;;;;;;;;;;;;;:27;18056:7;18037:27;;;;;;;;;;;;;;;:36;;;;18105:7;18089:32;;18098:5;18089:32;;;18114:6;18089:32;;;;;;:::i;:::-;;;;;;;;17749:380;;;:::o;41325:4847::-;41473:1;41457:18;;:4;:18;;;;41449:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41550:1;41536:16;;:2;:16;;;;41528:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;41619:1;41609:6;:11;41605:93;;;41637:28;41653:4;41659:2;41663:1;41637:15;:28::i;:::-;41680:7;;41605:93;41714:14;;;;;;;;;;;41710:2487;;;41775:7;:5;:7::i;:::-;41767:15;;:4;:15;;;;:49;;;;;41809:7;:5;:7::i;:::-;41803:13;;:2;:13;;;;41767:49;:86;;;;;41851:1;41837:16;;:2;:16;;;;41767:86;:128;;;;;41888:6;41874:21;;:2;:21;;;;41767:128;:158;;;;;41917:8;;;;;;;;;;;41916:9;41767:158;41745:2441;;;41965:13;;;;;;;;;;;41960:223;;42037:19;:25;42057:4;42037:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42066:19;:23;42086:2;42066:23;;;;;;;;;;;;;;;;;;;;;;;;;42037:52;42003:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;41960:223;42339:20;;;;;;;;;;;42335:641;;;42420:7;:5;:7::i;:::-;42414:13;;:2;:13;;;;:72;;;;;42470:15;42456:30;;:2;:30;;;;42414:72;:129;;;;;42529:13;42515:28;;:2;:28;;;;42414:129;42384:573;;;42707:12;42632:28;:39;42661:9;42632:39;;;;;;;;;;;;;;;;:87;42594:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;42921:12;42879:28;:39;42908:9;42879:39;;;;;;;;;;;;;;;:54;;;;42384:573;42335:641;43050:25;:31;43076:4;43050:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43107:31;:35;43139:2;43107:35;;;;;;;;;;;;;;;;;;;;;;;;;43106:36;43050:92;43024:1147;;;43229:20;;43219:6;:30;;43185:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;43437:9;;43420:13;43430:2;43420:9;:13::i;:::-;43411:6;:22;;;;:::i;:::-;:35;;43377:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43024:1147;;;43615:25;:29;43641:2;43615:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43670:31;:37;43702:4;43670:37;;;;;;;;;;;;;;;;;;;;;;;;;43669:38;43615:92;43589:582;;;43794:20;;43784:6;:30;;43750:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;43589:582;;;43951:31;:35;43983:2;43951:35;;;;;;;;;;;;;;;;;;;;;;;;;43946:225;;44071:9;;44054:13;44064:2;44054:9;:13::i;:::-;44045:6;:22;;;;:::i;:::-;:35;;44011:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43946:225;43589:582;43024:1147;41745:2441;41710:2487;44209:28;44240:24;44258:4;44240:9;:24::i;:::-;44209:55;;44277:12;44316:18;;44292:20;:42;;44277:57;;44365:7;:35;;;;;44389:11;;;;;;;;;;;44365:35;:61;;;;;44418:8;;;;;;;;;;;44417:9;44365:61;:110;;;;;44444:25;:31;44470:4;44444:31;;;;;;;;;;;;;;;;;;;;;;;;;44443:32;44365:110;:153;;;;;44493:19;:25;44513:4;44493:25;;;;;;;;;;;;;;;;;;;;;;;;;44492:26;44365:153;:194;;;;;44536:19;:23;44556:2;44536:23;;;;;;;;;;;;;;;;;;;;;;;;;44535:24;44365:194;44347:326;;;44597:4;44586:8;;:15;;;;;;;;;;;;;;;;;;44618:10;:8;:10::i;:::-;44656:5;44645:8;;:16;;;;;;;;;;;;;;;;;;44347:326;44685:12;44701:8;;;;;;;;;;;44700:9;44685:24;;44811:19;:25;44831:4;44811:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;44840:19;:23;44860:2;44840:23;;;;;;;;;;;;;;;;;;;;;;;;;44811:52;44807:100;;;44890:5;44880:15;;44807:100;44919:12;45024:7;45020:1099;;;45076:25;:29;45102:2;45076:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;45125:1;45109:13;;:17;45076:50;45072:898;;;45154:34;45184:3;45154:25;45165:13;;45154:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;45147:41;;45241:13;;45223:14;;45216:4;:21;;;;:::i;:::-;45215:39;;;;:::i;:::-;45195:16;;:59;;;;;;;:::i;:::-;;;;;;;;45323:13;;45303:16;;45296:4;:23;;;;:::i;:::-;45295:41;;;;:::i;:::-;45273:18;;:63;;;;;;;:::i;:::-;;;;;;;;45393:13;;45379:10;;45372:4;:17;;;;:::i;:::-;45371:35;;;;:::i;:::-;45355:12;;:51;;;;;;;:::i;:::-;;;;;;;;45475:13;;45455:16;;45448:4;:23;;;;:::i;:::-;45447:41;;;;:::i;:::-;45425:18;;:63;;;;;;;:::i;:::-;;;;;;;;45072:898;;;45550:25;:31;45576:4;45550:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;45600:1;45585:12;;:16;45550:51;45546:424;;;45629:33;45658:3;45629:24;45640:12;;45629:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;45622:40;;45714:12;;45697:13;;45690:4;:20;;;;:::i;:::-;45689:37;;;;:::i;:::-;45669:16;;:57;;;;;;;:::i;:::-;;;;;;;;45794:12;;45775:15;;45768:4;:22;;;;:::i;:::-;45767:39;;;;:::i;:::-;45745:18;;:61;;;;;;;:::i;:::-;;;;;;;;45862:12;;45849:9;;45842:4;:16;;;;:::i;:::-;45841:33;;;;:::i;:::-;45825:12;;:49;;;;;;;:::i;:::-;;;;;;;;45942:12;;45923:15;;45916:4;:22;;;;:::i;:::-;45915:39;;;;:::i;:::-;45893:18;;:61;;;;;;;:::i;:::-;;;;;;;;45546:424;45072:898;45997:1;45990:4;:8;45986:91;;;46019:42;46035:4;46049;46056;46019:15;:42::i;:::-;45986:91;46103:4;46093:14;;;;;:::i;:::-;;;45020:1099;46131:33;46147:4;46153:2;46157:6;46131:15;:33::i;:::-;41438:4734;;;;41325:4847;;;;:::o;3482:191::-;3556:16;3575:6;;;;;;;;;;;3556:25;;3601:8;3592:6;;:17;;;;;;;;;;;;;;;;;;3656:8;3625:40;;3646:8;3625:40;;;;;;;;;;;;3545:128;3482:191;:::o;40995:188::-;41112:5;41078:25;:31;41104:4;41078:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41169:5;41135:40;;41163:4;41135:40;;;;;;;;;;;;40995:188;;:::o;14968:733::-;15126:1;15108:20;;:6;:20;;;;15100:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15210:1;15189:23;;:9;:23;;;;15181:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15265:47;15286:6;15294:9;15305:6;15265:20;:47::i;:::-;15325:21;15349:9;:17;15359:6;15349:17;;;;;;;;;;;;;;;;15325:41;;15402:6;15385:13;:23;;15377:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15523:6;15507:13;:22;15487:9;:17;15497:6;15487:17;;;;;;;;;;;;;;;:42;;;;15575:6;15551:9;:20;15561:9;15551:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15616:9;15599:35;;15608:6;15599:35;;;15627:6;15599:35;;;;;;:::i;:::-;;;;;;;;15647:46;15667:6;15675:9;15686:6;15647:19;:46::i;:::-;15089:612;14968:733;;;:::o;47300:1882::-;47339:23;47365:24;47383:4;47365:9;:24::i;:::-;47339:50;;47400:25;47489:12;;47468:18;;47447;;47428:16;;:37;;;;:::i;:::-;:58;;;;:::i;:::-;:73;;;;:::i;:::-;47400:101;;47512:12;47560:1;47541:15;:20;:46;;;;47586:1;47565:17;:22;47541:46;47537:85;;;47604:7;;;;;47537:85;47677:2;47656:18;;:23;;;;:::i;:::-;47638:15;:41;47634:115;;;47735:2;47714:18;;:23;;;;:::i;:::-;47696:41;;47634:115;47810:23;47897:1;47877:17;47855:18;;47837:15;:36;;;;:::i;:::-;47836:58;;;;:::i;:::-;:62;;;;:::i;:::-;47810:88;;47909:26;47938:36;47958:15;47938;:19;;:36;;;;:::i;:::-;47909:65;;47987:25;48015:21;47987:49;;48049:36;48066:18;48049:16;:36::i;:::-;48098:18;48119:44;48145:17;48119:21;:25;;:44;;;;:::i;:::-;48098:65;;48170:21;48194:55;48231:17;48194:32;48209:16;;48194:10;:14;;:32;;;;:::i;:::-;:36;;:55;;;;:::i;:::-;48170:79;;48260:23;48286:57;48325:17;48286:34;48301:18;;48286:10;:14;;:34;;;;:::i;:::-;:38;;:57;;;;:::i;:::-;48260:83;;48354:17;48374:51;48407:17;48374:28;48389:12;;48374:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;48354:71;;48438:23;48511:9;48493:15;48477:13;48464:10;:26;;;;:::i;:::-;:44;;;;:::i;:::-;:56;;;;:::i;:::-;48438:82;;48554:1;48533:18;:22;;;;48579:1;48560:16;:20;;;;48612:1;48591:18;:22;;;;48639:1;48624:12;:16;;;;48675:9;;;;;;;;;;;48667:23;;48698:9;48667:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48653:59;;;;;48745:15;;;;;;;;;;;48737:29;;48774:15;48737:57;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48723:71;;;;;48831:1;48813:15;:19;:42;;;;;48854:1;48836:15;:19;48813:42;48809:278;;;48872:46;48885:15;48902;48872:12;:46::i;:::-;48938:137;48971:18;49008:15;49042:18;;48938:137;;;;;;;;:::i;:::-;;;;;;;;48809:278;49121:13;;;;;;;;;;;49113:27;;49148:21;49113:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49099:75;;;;;47328:1854;;;;;;;;;;;47300:1882;:::o;23202:98::-;23260:7;23291:1;23287;:5;;;;:::i;:::-;23280:12;;23202:98;;;;:::o;23601:::-;23659:7;23690:1;23686;:5;;;;:::i;:::-;23679:12;;23601:98;;;;:::o;18729:125::-;;;;:::o;19458:124::-;;;;:::o;22845:98::-;22903:7;22934:1;22930;:5;;;;:::i;:::-;22923:12;;22845:98;;;;:::o;46180:589::-;46306:21;46344:1;46330:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46306:40;;46375:4;46357;46362:1;46357:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;46401:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46391:4;46396:1;46391:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;46436:62;46453:4;46468:15;46486:11;46436:8;:62::i;:::-;46537:15;:66;;;46618:11;46644:1;46688:4;46715;46735:15;46537:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46235:534;46180:589;:::o;46777:515::-;46925:62;46942:4;46957:15;46975:11;46925:8;:62::i;:::-;47030:15;:31;;;47069:9;47102:4;47122:11;47148:1;47191;47234:9;;;;;;;;;;;47258:15;47030:254;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;46777:515;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:329::-;3905:6;3954:2;3942:9;3933:7;3929:23;3925:32;3922:119;;;3960:79;;:::i;:::-;3922:119;4080:1;4105:53;4150:7;4141:6;4130:9;4126:22;4105:53;:::i;:::-;4095:63;;4051:117;3846:329;;;;:::o;4181:60::-;4209:3;4230:5;4223:12;;4181:60;;;:::o;4247:142::-;4297:9;4330:53;4348:34;4357:24;4375:5;4357:24;:::i;:::-;4348:34;:::i;:::-;4330:53;:::i;:::-;4317:66;;4247:142;;;:::o;4395:126::-;4445:9;4478:37;4509:5;4478:37;:::i;:::-;4465:50;;4395:126;;;:::o;4527:153::-;4604:9;4637:37;4668:5;4637:37;:::i;:::-;4624:50;;4527:153;;;:::o;4686:185::-;4800:64;4858:5;4800:64;:::i;:::-;4795:3;4788:77;4686:185;;:::o;4877:276::-;4997:4;5035:2;5024:9;5020:18;5012:26;;5048:98;5143:1;5132:9;5128:17;5119:6;5048:98;:::i;:::-;4877:276;;;;:::o;5159:329::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:119;;;5273:79;;:::i;:::-;5235:119;5393:1;5418:53;5463:7;5454:6;5443:9;5439:22;5418:53;:::i;:::-;5408:63;;5364:117;5159:329;;;;:::o;5494:619::-;5571:6;5579;5587;5636:2;5624:9;5615:7;5611:23;5607:32;5604:119;;;5642:79;;:::i;:::-;5604:119;5762:1;5787:53;5832:7;5823:6;5812:9;5808:22;5787:53;:::i;:::-;5777:63;;5733:117;5889:2;5915:53;5960:7;5951:6;5940:9;5936:22;5915:53;:::i;:::-;5905:63;;5860:118;6017:2;6043:53;6088:7;6079:6;6068:9;6064:22;6043:53;:::i;:::-;6033:63;;5988:118;5494:619;;;;;:::o;6119:118::-;6206:24;6224:5;6206:24;:::i;:::-;6201:3;6194:37;6119:118;;:::o;6243:222::-;6336:4;6374:2;6363:9;6359:18;6351:26;;6387:71;6455:1;6444:9;6440:17;6431:6;6387:71;:::i;:::-;6243:222;;;;:::o;6471:765::-;6557:6;6565;6573;6581;6630:3;6618:9;6609:7;6605:23;6601:33;6598:120;;;6637:79;;:::i;:::-;6598:120;6757:1;6782:53;6827:7;6818:6;6807:9;6803:22;6782:53;:::i;:::-;6772:63;;6728:117;6884:2;6910:53;6955:7;6946:6;6935:9;6931:22;6910:53;:::i;:::-;6900:63;;6855:118;7012:2;7038:53;7083:7;7074:6;7063:9;7059:22;7038:53;:::i;:::-;7028:63;;6983:118;7140:2;7166:53;7211:7;7202:6;7191:9;7187:22;7166:53;:::i;:::-;7156:63;;7111:118;6471:765;;;;;;;:::o;7242:86::-;7277:7;7317:4;7310:5;7306:16;7295:27;;7242:86;;;:::o;7334:112::-;7417:22;7433:5;7417:22;:::i;:::-;7412:3;7405:35;7334:112;;:::o;7452:214::-;7541:4;7579:2;7568:9;7564:18;7556:26;;7592:67;7656:1;7645:9;7641:17;7632:6;7592:67;:::i;:::-;7452:214;;;;:::o;7672:116::-;7742:21;7757:5;7742:21;:::i;:::-;7735:5;7732:32;7722:60;;7778:1;7775;7768:12;7722:60;7672:116;:::o;7794:133::-;7837:5;7875:6;7862:20;7853:29;;7891:30;7915:5;7891:30;:::i;:::-;7794:133;;;;:::o;7933:468::-;7998:6;8006;8055:2;8043:9;8034:7;8030:23;8026:32;8023:119;;;8061:79;;:::i;:::-;8023:119;8181:1;8206:53;8251:7;8242:6;8231:9;8227:22;8206:53;:::i;:::-;8196:63;;8152:117;8308:2;8334:50;8376:7;8367:6;8356:9;8352:22;8334:50;:::i;:::-;8324:60;;8279:115;7933:468;;;;;:::o;8407:323::-;8463:6;8512:2;8500:9;8491:7;8487:23;8483:32;8480:119;;;8518:79;;:::i;:::-;8480:119;8638:1;8663:50;8705:7;8696:6;8685:9;8681:22;8663:50;:::i;:::-;8653:60;;8609:114;8407:323;;;;:::o;8736:474::-;8804:6;8812;8861:2;8849:9;8840:7;8836:23;8832:32;8829:119;;;8867:79;;:::i;:::-;8829:119;8987:1;9012:53;9057:7;9048:6;9037:9;9033:22;9012:53;:::i;:::-;9002:63;;8958:117;9114:2;9140:53;9185:7;9176:6;9165:9;9161:22;9140:53;:::i;:::-;9130:63;;9085:118;8736:474;;;;;:::o;9216:180::-;9264:77;9261:1;9254:88;9361:4;9358:1;9351:15;9385:4;9382:1;9375:15;9402:320;9446:6;9483:1;9477:4;9473:12;9463:22;;9530:1;9524:4;9520:12;9551:18;9541:81;;9607:4;9599:6;9595:17;9585:27;;9541:81;9669:2;9661:6;9658:14;9638:18;9635:38;9632:84;;;9688:18;;:::i;:::-;9632:84;9453:269;9402:320;;;:::o;9728:182::-;9868:34;9864:1;9856:6;9852:14;9845:58;9728:182;:::o;9916:366::-;10058:3;10079:67;10143:2;10138:3;10079:67;:::i;:::-;10072:74;;10155:93;10244:3;10155:93;:::i;:::-;10273:2;10268:3;10264:12;10257:19;;9916:366;;;:::o;10288:419::-;10454:4;10492:2;10481:9;10477:18;10469:26;;10541:9;10535:4;10531:20;10527:1;10516:9;10512:17;10505:47;10569:131;10695:4;10569:131;:::i;:::-;10561:139;;10288:419;;;:::o;10713:180::-;10761:77;10758:1;10751:88;10858:4;10855:1;10848:15;10882:4;10879:1;10872:15;10899:348;10939:7;10962:20;10980:1;10962:20;:::i;:::-;10957:25;;10996:20;11014:1;10996:20;:::i;:::-;10991:25;;11184:1;11116:66;11112:74;11109:1;11106:81;11101:1;11094:9;11087:17;11083:105;11080:131;;;11191:18;;:::i;:::-;11080:131;11239:1;11236;11232:9;11221:20;;10899:348;;;;:::o;11253:180::-;11301:77;11298:1;11291:88;11398:4;11395:1;11388:15;11422:4;11419:1;11412:15;11439:185;11479:1;11496:20;11514:1;11496:20;:::i;:::-;11491:25;;11530:20;11548:1;11530:20;:::i;:::-;11525:25;;11569:1;11559:35;;11574:18;;:::i;:::-;11559:35;11616:1;11613;11609:9;11604:14;;11439:185;;;;:::o;11630:234::-;11770:34;11766:1;11758:6;11754:14;11747:58;11839:17;11834:2;11826:6;11822:15;11815:42;11630:234;:::o;11870:366::-;12012:3;12033:67;12097:2;12092:3;12033:67;:::i;:::-;12026:74;;12109:93;12198:3;12109:93;:::i;:::-;12227:2;12222:3;12218:12;12211:19;;11870:366;;;:::o;12242:419::-;12408:4;12446:2;12435:9;12431:18;12423:26;;12495:9;12489:4;12485:20;12481:1;12470:9;12466:17;12459:47;12523:131;12649:4;12523:131;:::i;:::-;12515:139;;12242:419;;;:::o;12667:227::-;12807:34;12803:1;12795:6;12791:14;12784:58;12876:10;12871:2;12863:6;12859:15;12852:35;12667:227;:::o;12900:366::-;13042:3;13063:67;13127:2;13122:3;13063:67;:::i;:::-;13056:74;;13139:93;13228:3;13139:93;:::i;:::-;13257:2;13252:3;13248:12;13241:19;;12900:366;;;:::o;13272:419::-;13438:4;13476:2;13465:9;13461:18;13453:26;;13525:9;13519:4;13515:20;13511:1;13500:9;13496:17;13489:47;13553:131;13679:4;13553:131;:::i;:::-;13545:139;;13272:419;;;:::o;13697:305::-;13737:3;13756:20;13774:1;13756:20;:::i;:::-;13751:25;;13790:20;13808:1;13790:20;:::i;:::-;13785:25;;13944:1;13876:66;13872:74;13869:1;13866:81;13863:107;;;13950:18;;:::i;:::-;13863:107;13994:1;13991;13987:9;13980:16;;13697:305;;;;:::o;14008:165::-;14148:17;14144:1;14136:6;14132:14;14125:41;14008:165;:::o;14179:366::-;14321:3;14342:67;14406:2;14401:3;14342:67;:::i;:::-;14335:74;;14418:93;14507:3;14418:93;:::i;:::-;14536:2;14531:3;14527:12;14520:19;;14179:366;;;:::o;14551:419::-;14717:4;14755:2;14744:9;14740:18;14732:26;;14804:9;14798:4;14794:20;14790:1;14779:9;14775:17;14768:47;14832:131;14958:4;14832:131;:::i;:::-;14824:139;;14551:419;;;:::o;14976:244::-;15116:34;15112:1;15104:6;15100:14;15093:58;15185:27;15180:2;15172:6;15168:15;15161:52;14976:244;:::o;15226:366::-;15368:3;15389:67;15453:2;15448:3;15389:67;:::i;:::-;15382:74;;15465:93;15554:3;15465:93;:::i;:::-;15583:2;15578:3;15574:12;15567:19;;15226:366;;;:::o;15598:419::-;15764:4;15802:2;15791:9;15787:18;15779:26;;15851:9;15845:4;15841:20;15837:1;15826:9;15822:17;15815:47;15879:131;16005:4;15879:131;:::i;:::-;15871:139;;15598:419;;;:::o;16023:224::-;16163:34;16159:1;16151:6;16147:14;16140:58;16232:7;16227:2;16219:6;16215:15;16208:32;16023:224;:::o;16253:366::-;16395:3;16416:67;16480:2;16475:3;16416:67;:::i;:::-;16409:74;;16492:93;16581:3;16492:93;:::i;:::-;16610:2;16605:3;16601:12;16594:19;;16253:366;;;:::o;16625:419::-;16791:4;16829:2;16818:9;16814:18;16806:26;;16878:9;16872:4;16868:20;16864:1;16853:9;16849:17;16842:47;16906:131;17032:4;16906:131;:::i;:::-;16898:139;;16625:419;;;:::o;17050:223::-;17190:34;17186:1;17178:6;17174:14;17167:58;17259:6;17254:2;17246:6;17242:15;17235:31;17050:223;:::o;17279:366::-;17421:3;17442:67;17506:2;17501:3;17442:67;:::i;:::-;17435:74;;17518:93;17607:3;17518:93;:::i;:::-;17636:2;17631:3;17627:12;17620:19;;17279:366;;;:::o;17651:419::-;17817:4;17855:2;17844:9;17840:18;17832:26;;17904:9;17898:4;17894:20;17890:1;17879:9;17875:17;17868:47;17932:131;18058:4;17932:131;:::i;:::-;17924:139;;17651:419;;;:::o;18076:240::-;18216:34;18212:1;18204:6;18200:14;18193:58;18285:23;18280:2;18272:6;18268:15;18261:48;18076:240;:::o;18322:366::-;18464:3;18485:67;18549:2;18544:3;18485:67;:::i;:::-;18478:74;;18561:93;18650:3;18561:93;:::i;:::-;18679:2;18674:3;18670:12;18663:19;;18322:366;;;:::o;18694:419::-;18860:4;18898:2;18887:9;18883:18;18875:26;;18947:9;18941:4;18937:20;18933:1;18922:9;18918:17;18911:47;18975:131;19101:4;18975:131;:::i;:::-;18967:139;;18694:419;;;:::o;19119:239::-;19259:34;19255:1;19247:6;19243:14;19236:58;19328:22;19323:2;19315:6;19311:15;19304:47;19119:239;:::o;19364:366::-;19506:3;19527:67;19591:2;19586:3;19527:67;:::i;:::-;19520:74;;19603:93;19692:3;19603:93;:::i;:::-;19721:2;19716:3;19712:12;19705:19;;19364:366;;;:::o;19736:419::-;19902:4;19940:2;19929:9;19925:18;19917:26;;19989:9;19983:4;19979:20;19975:1;19964:9;19960:17;19953:47;20017:131;20143:4;20017:131;:::i;:::-;20009:139;;19736:419;;;:::o;20161:166::-;20301:18;20297:1;20289:6;20285:14;20278:42;20161:166;:::o;20333:366::-;20475:3;20496:67;20560:2;20555:3;20496:67;:::i;:::-;20489:74;;20572:93;20661:3;20572:93;:::i;:::-;20690:2;20685:3;20681:12;20674:19;;20333:366;;;:::o;20705:419::-;20871:4;20909:2;20898:9;20894:18;20886:26;;20958:9;20952:4;20948:20;20944:1;20933:9;20929:17;20922:47;20986:131;21112:4;20986:131;:::i;:::-;20978:139;;20705:419;;;:::o;21130:225::-;21270:34;21266:1;21258:6;21254:14;21247:58;21339:8;21334:2;21326:6;21322:15;21315:33;21130:225;:::o;21361:366::-;21503:3;21524:67;21588:2;21583:3;21524:67;:::i;:::-;21517:74;;21600:93;21689:3;21600:93;:::i;:::-;21718:2;21713:3;21709:12;21702:19;;21361:366;;;:::o;21733:419::-;21899:4;21937:2;21926:9;21922:18;21914:26;;21986:9;21980:4;21976:20;21972:1;21961:9;21957:17;21950:47;22014:131;22140:4;22014:131;:::i;:::-;22006:139;;21733:419;;;:::o;22158:223::-;22298:34;22294:1;22286:6;22282:14;22275:58;22367:6;22362:2;22354:6;22350:15;22343:31;22158:223;:::o;22387:366::-;22529:3;22550:67;22614:2;22609:3;22550:67;:::i;:::-;22543:74;;22626:93;22715:3;22626:93;:::i;:::-;22744:2;22739:3;22735:12;22728:19;;22387:366;;;:::o;22759:419::-;22925:4;22963:2;22952:9;22948:18;22940:26;;23012:9;23006:4;23002:20;22998:1;22987:9;22983:17;22976:47;23040:131;23166:4;23040:131;:::i;:::-;23032:139;;22759:419;;;:::o;23184:221::-;23324:34;23320:1;23312:6;23308:14;23301:58;23393:4;23388:2;23380:6;23376:15;23369:29;23184:221;:::o;23411:366::-;23553:3;23574:67;23638:2;23633:3;23574:67;:::i;:::-;23567:74;;23650:93;23739:3;23650:93;:::i;:::-;23768:2;23763:3;23759:12;23752:19;;23411:366;;;:::o;23783:419::-;23949:4;23987:2;23976:9;23972:18;23964:26;;24036:9;24030:4;24026:20;24022:1;24011:9;24007:17;24000:47;24064:131;24190:4;24064:131;:::i;:::-;24056:139;;23783:419;;;:::o;24208:224::-;24348:34;24344:1;24336:6;24332:14;24325:58;24417:7;24412:2;24404:6;24400:15;24393:32;24208:224;:::o;24438:366::-;24580:3;24601:67;24665:2;24660:3;24601:67;:::i;:::-;24594:74;;24677:93;24766:3;24677:93;:::i;:::-;24795:2;24790:3;24786:12;24779:19;;24438:366;;;:::o;24810:419::-;24976:4;25014:2;25003:9;24999:18;24991:26;;25063:9;25057:4;25053:20;25049:1;25038:9;25034:17;25027:47;25091:131;25217:4;25091:131;:::i;:::-;25083:139;;24810:419;;;:::o;25235:222::-;25375:34;25371:1;25363:6;25359:14;25352:58;25444:5;25439:2;25431:6;25427:15;25420:30;25235:222;:::o;25463:366::-;25605:3;25626:67;25690:2;25685:3;25626:67;:::i;:::-;25619:74;;25702:93;25791:3;25702:93;:::i;:::-;25820:2;25815:3;25811:12;25804:19;;25463:366;;;:::o;25835:419::-;26001:4;26039:2;26028:9;26024:18;26016:26;;26088:9;26082:4;26078:20;26074:1;26063:9;26059:17;26052:47;26116:131;26242:4;26116:131;:::i;:::-;26108:139;;25835:419;;;:::o;26260:172::-;26400:24;26396:1;26388:6;26384:14;26377:48;26260:172;:::o;26438:366::-;26580:3;26601:67;26665:2;26660:3;26601:67;:::i;:::-;26594:74;;26677:93;26766:3;26677:93;:::i;:::-;26795:2;26790:3;26786:12;26779:19;;26438:366;;;:::o;26810:419::-;26976:4;27014:2;27003:9;26999:18;26991:26;;27063:9;27057:4;27053:20;27049:1;27038:9;27034:17;27027:47;27091:131;27217:4;27091:131;:::i;:::-;27083:139;;26810:419;;;:::o;27235:297::-;27375:34;27371:1;27363:6;27359:14;27352:58;27444:34;27439:2;27431:6;27427:15;27420:59;27513:11;27508:2;27500:6;27496:15;27489:36;27235:297;:::o;27538:366::-;27680:3;27701:67;27765:2;27760:3;27701:67;:::i;:::-;27694:74;;27777:93;27866:3;27777:93;:::i;:::-;27895:2;27890:3;27886:12;27879:19;;27538:366;;;:::o;27910:419::-;28076:4;28114:2;28103:9;28099:18;28091:26;;28163:9;28157:4;28153:20;28149:1;28138:9;28134:17;28127:47;28191:131;28317:4;28191:131;:::i;:::-;28183:139;;27910:419;;;:::o;28335:240::-;28475:34;28471:1;28463:6;28459:14;28452:58;28544:23;28539:2;28531:6;28527:15;28520:48;28335:240;:::o;28581:366::-;28723:3;28744:67;28808:2;28803:3;28744:67;:::i;:::-;28737:74;;28820:93;28909:3;28820:93;:::i;:::-;28938:2;28933:3;28929:12;28922:19;;28581:366;;;:::o;28953:419::-;29119:4;29157:2;29146:9;29142:18;29134:26;;29206:9;29200:4;29196:20;29192:1;29181:9;29177:17;29170:47;29234:131;29360:4;29234:131;:::i;:::-;29226:139;;28953:419;;;:::o;29378:169::-;29518:21;29514:1;29506:6;29502:14;29495:45;29378:169;:::o;29553:366::-;29695:3;29716:67;29780:2;29775:3;29716:67;:::i;:::-;29709:74;;29792:93;29881:3;29792:93;:::i;:::-;29910:2;29905:3;29901:12;29894:19;;29553:366;;;:::o;29925:419::-;30091:4;30129:2;30118:9;30114:18;30106:26;;30178:9;30172:4;30168:20;30164:1;30153:9;30149:17;30142:47;30206:131;30332:4;30206:131;:::i;:::-;30198:139;;29925:419;;;:::o;30350:241::-;30490:34;30486:1;30478:6;30474:14;30467:58;30559:24;30554:2;30546:6;30542:15;30535:49;30350:241;:::o;30597:366::-;30739:3;30760:67;30824:2;30819:3;30760:67;:::i;:::-;30753:74;;30836:93;30925:3;30836:93;:::i;:::-;30954:2;30949:3;30945:12;30938:19;;30597:366;;;:::o;30969:419::-;31135:4;31173:2;31162:9;31158:18;31150:26;;31222:9;31216:4;31212:20;31208:1;31197:9;31193:17;31186:47;31250:131;31376:4;31250:131;:::i;:::-;31242:139;;30969:419;;;:::o;31394:191::-;31434:4;31454:20;31472:1;31454:20;:::i;:::-;31449:25;;31488:20;31506:1;31488:20;:::i;:::-;31483:25;;31527:1;31524;31521:8;31518:34;;;31532:18;;:::i;:::-;31518:34;31577:1;31574;31570:9;31562:17;;31394:191;;;;:::o;31591:225::-;31731:34;31727:1;31719:6;31715:14;31708:58;31800:8;31795:2;31787:6;31783:15;31776:33;31591:225;:::o;31822:366::-;31964:3;31985:67;32049:2;32044:3;31985:67;:::i;:::-;31978:74;;32061:93;32150:3;32061:93;:::i;:::-;32179:2;32174:3;32170:12;32163:19;;31822:366;;;:::o;32194:419::-;32360:4;32398:2;32387:9;32383:18;32375:26;;32447:9;32441:4;32437:20;32433:1;32422:9;32418:17;32411:47;32475:131;32601:4;32475:131;:::i;:::-;32467:139;;32194:419;;;:::o;32619:147::-;32720:11;32757:3;32742:18;;32619:147;;;;:::o;32772:114::-;;:::o;32892:398::-;33051:3;33072:83;33153:1;33148:3;33072:83;:::i;:::-;33065:90;;33164:93;33253:3;33164:93;:::i;:::-;33282:1;33277:3;33273:11;33266:18;;32892:398;;;:::o;33296:379::-;33480:3;33502:147;33645:3;33502:147;:::i;:::-;33495:154;;33666:3;33659:10;;33296:379;;;:::o;33681:442::-;33830:4;33868:2;33857:9;33853:18;33845:26;;33881:71;33949:1;33938:9;33934:17;33925:6;33881:71;:::i;:::-;33962:72;34030:2;34019:9;34015:18;34006:6;33962:72;:::i;:::-;34044;34112:2;34101:9;34097:18;34088:6;34044:72;:::i;:::-;33681:442;;;;;;:::o;34129:180::-;34177:77;34174:1;34167:88;34274:4;34271:1;34264:15;34298:4;34295:1;34288:15;34315:180;34363:77;34360:1;34353:88;34460:4;34457:1;34450:15;34484:4;34481:1;34474:15;34501:143;34558:5;34589:6;34583:13;34574:22;;34605:33;34632:5;34605:33;:::i;:::-;34501:143;;;;:::o;34650:351::-;34720:6;34769:2;34757:9;34748:7;34744:23;34740:32;34737:119;;;34775:79;;:::i;:::-;34737:119;34895:1;34920:64;34976:7;34967:6;34956:9;34952:22;34920:64;:::i;:::-;34910:74;;34866:128;34650:351;;;;:::o;35007:85::-;35052:7;35081:5;35070:16;;35007:85;;;:::o;35098:158::-;35156:9;35189:61;35207:42;35216:32;35242:5;35216:32;:::i;:::-;35207:42;:::i;:::-;35189:61;:::i;:::-;35176:74;;35098:158;;;:::o;35262:147::-;35357:45;35396:5;35357:45;:::i;:::-;35352:3;35345:58;35262:147;;:::o;35415:114::-;35482:6;35516:5;35510:12;35500:22;;35415:114;;;:::o;35535:184::-;35634:11;35668:6;35663:3;35656:19;35708:4;35703:3;35699:14;35684:29;;35535:184;;;;:::o;35725:132::-;35792:4;35815:3;35807:11;;35845:4;35840:3;35836:14;35828:22;;35725:132;;;:::o;35863:108::-;35940:24;35958:5;35940:24;:::i;:::-;35935:3;35928:37;35863:108;;:::o;35977:179::-;36046:10;36067:46;36109:3;36101:6;36067:46;:::i;:::-;36145:4;36140:3;36136:14;36122:28;;35977:179;;;;:::o;36162:113::-;36232:4;36264;36259:3;36255:14;36247:22;;36162:113;;;:::o;36311:732::-;36430:3;36459:54;36507:5;36459:54;:::i;:::-;36529:86;36608:6;36603:3;36529:86;:::i;:::-;36522:93;;36639:56;36689:5;36639:56;:::i;:::-;36718:7;36749:1;36734:284;36759:6;36756:1;36753:13;36734:284;;;36835:6;36829:13;36862:63;36921:3;36906:13;36862:63;:::i;:::-;36855:70;;36948:60;37001:6;36948:60;:::i;:::-;36938:70;;36794:224;36781:1;36778;36774:9;36769:14;;36734:284;;;36738:14;37034:3;37027:10;;36435:608;;;36311:732;;;;:::o;37049:831::-;37312:4;37350:3;37339:9;37335:19;37327:27;;37364:71;37432:1;37421:9;37417:17;37408:6;37364:71;:::i;:::-;37445:80;37521:2;37510:9;37506:18;37497:6;37445:80;:::i;:::-;37572:9;37566:4;37562:20;37557:2;37546:9;37542:18;37535:48;37600:108;37703:4;37694:6;37600:108;:::i;:::-;37592:116;;37718:72;37786:2;37775:9;37771:18;37762:6;37718:72;:::i;:::-;37800:73;37868:3;37857:9;37853:19;37844:6;37800:73;:::i;:::-;37049:831;;;;;;;;:::o;37886:807::-;38135:4;38173:3;38162:9;38158:19;38150:27;;38187:71;38255:1;38244:9;38240:17;38231:6;38187:71;:::i;:::-;38268:72;38336:2;38325:9;38321:18;38312:6;38268:72;:::i;:::-;38350:80;38426:2;38415:9;38411:18;38402:6;38350:80;:::i;:::-;38440;38516:2;38505:9;38501:18;38492:6;38440:80;:::i;:::-;38530:73;38598:3;38587:9;38583:19;38574:6;38530:73;:::i;:::-;38613;38681:3;38670:9;38666:19;38657:6;38613:73;:::i;:::-;37886:807;;;;;;;;;:::o;38699:143::-;38756:5;38787:6;38781:13;38772:22;;38803:33;38830:5;38803:33;:::i;:::-;38699:143;;;;:::o;38848:663::-;38936:6;38944;38952;39001:2;38989:9;38980:7;38976:23;38972:32;38969:119;;;39007:79;;:::i;:::-;38969:119;39127:1;39152:64;39208:7;39199:6;39188:9;39184:22;39152:64;:::i;:::-;39142:74;;39098:128;39265:2;39291:64;39347:7;39338:6;39327:9;39323:22;39291:64;:::i;:::-;39281:74;;39236:129;39404:2;39430:64;39486:7;39477:6;39466:9;39462:22;39430:64;:::i;:::-;39420:74;;39375:129;38848:663;;;;;:::o

Swarm Source

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