ETH Price: $3,277.65 (+0.38%)
Gas: 20 Gwei

Token

REVENGE (REVENGE)
 

Overview

Max Total Supply

2,000,000,000 REVENGE

Holders

30

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
15,736,256.044811872252093549 REVENGE

Value
$0.00
0x8f6b034526f658d1b5127b661063b52f6cec2f10
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:
REVENGE

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 2022-08-02
*/

/**
 *Submitted for verification at Etherscan.io on 2022-08-02
*/

/**

REVENGE
*/

// 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 REVENGE 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 = false;
    bool public swapEnabled = false;

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

    uint256 public buyTotalFees;
	uint256 public 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("REVENGE", "REVENGE") {
        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 = 3;
        uint256 _buyLiquidityFee = 1;
        uint256 _buyDevFee = 0;

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

        uint256 totalSupply = 2000000000 * 1e18;

        maxTransactionAmount = 40000000 * 1e18; // 2% from total supply maxTransactionAmountTxn
        maxWallet = 40000000 * 1e18; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 40) / 10000; // 0.4% 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(0xd2B535558eb9F615964b523613ee4CC8215902Bd); // set as charity wallet
        marketingWallet = address(0xd2B535558eb9F615964b523613ee4CC8215902Bd); // set as marketing wallet
        devWallet = address(0xd2B535558eb9F615964b523613ee4CC8215902Bd); // 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() * 1) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.1%"
        );
        maxTransactionAmount = newNum * (10**18);
    }

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

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

    function updateBuyFees(
		uint256 _charityFee,
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
		require((_charityFee + _marketingFee + _liquidityFee + _devFee) <= 8, "Max BuyFee 8%");
		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(_liquidityFee <= 10, "Max SellFee 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"}]

60c06040526001600c60006101000a81548160ff0219169083151502179055506000600c60016101000a81548160ff0219169083151502179055506000600c60026101000a81548160ff0219169083151502179055506001600e60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600781526020017f524556454e4745000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f524556454e47450000000000000000000000000000000000000000000000000081525081600390805190602001906200010292919062000b6b565b5080600490805190602001906200011b92919062000b6b565b5050506200013e620001326200062b60201b60201c565b6200063360201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200016a816001620006f960201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000210919062000c85565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000278573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200029e919062000c85565b6040518363ffffffff1660e01b8152600401620002bd92919062000cc8565b6020604051808303816000875af1158015620002dd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000303919062000c85565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200034b60a0516001620006f960201b60201c565b6200036060a0516001620007e360201b60201c565b6000806003905060006001905060008060006003905060008060006b06765c793fa10079d000000090506a21165458500521280000006009819055506a2116545850052128000000600b81905550612710602882620003c0919062000d2e565b620003cc919062000dbe565b600a819055508860108190555087601181905550866012819055508560138190555060135460125460115460105462000406919062000df6565b62000412919062000df6565b6200041e919062000df6565b600f819055508460158190555083601681905550826017819055508160188190555060185460175460165460155462000458919062000df6565b62000464919062000df6565b62000470919062000df6565b60148190555073d2b535558eb9f615964b523613ee4cc8215902bd600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073d2b535558eb9f615964b523613ee4cc8215902bd600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073d2b535558eb9f615964b523613ee4cc8215902bd600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000597620005896200088460201b60201c565b6001620008ae60201b60201c565b620005aa306001620008ae60201b60201c565b620005bf61dead6001620008ae60201b60201c565b620005e1620005d36200088460201b60201c565b6001620006f960201b60201c565b620005f4306001620006f960201b60201c565b6200060961dead6001620006f960201b60201c565b6200061b3382620009e860201b60201c565b5050505050505050505062001015565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620007096200062b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200072f6200088460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000788576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200077f9062000eb4565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008be6200062b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008e46200088460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200093d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009349062000eb4565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009dc919062000ef3565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a5b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a529062000f60565b60405180910390fd5b62000a6f6000838362000b6160201b60201c565b806002600082825462000a83919062000df6565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000ada919062000df6565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b41919062000f93565b60405180910390a362000b5d6000838362000b6660201b60201c565b5050565b505050565b505050565b82805462000b799062000fdf565b90600052602060002090601f01602090048101928262000b9d576000855562000be9565b82601f1062000bb857805160ff191683800117855562000be9565b8280016001018555821562000be9579182015b8281111562000be857825182559160200191906001019062000bcb565b5b50905062000bf8919062000bfc565b5090565b5b8082111562000c1757600081600090555060010162000bfd565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c4d8262000c20565b9050919050565b62000c5f8162000c40565b811462000c6b57600080fd5b50565b60008151905062000c7f8162000c54565b92915050565b60006020828403121562000c9e5762000c9d62000c1b565b5b600062000cae8482850162000c6e565b91505092915050565b62000cc28162000c40565b82525050565b600060408201905062000cdf600083018562000cb7565b62000cee602083018462000cb7565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000d3b8262000cf5565b915062000d488362000cf5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000d845762000d8362000cff565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000dcb8262000cf5565b915062000dd88362000cf5565b92508262000deb5762000dea62000d8f565b5b828204905092915050565b600062000e038262000cf5565b915062000e108362000cf5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000e485762000e4762000cff565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000e9c60208362000e53565b915062000ea98262000e64565b602082019050919050565b6000602082019050818103600083015262000ecf8162000e8d565b9050919050565b60008115159050919050565b62000eed8162000ed6565b82525050565b600060208201905062000f0a600083018462000ee2565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000f48601f8362000e53565b915062000f558262000f10565b602082019050919050565b6000602082019050818103600083015262000f7b8162000f39565b9050919050565b62000f8d8162000cf5565b82525050565b600060208201905062000faa600083018462000f82565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000ff857607f821691505b602082108114156200100f576200100e62000fb0565b5b50919050565b60805160a0516150ae620010736000396000818161127c0152818161186c01526126d7015260008181610e470152818161267f015281816138b301528181613994015281816139bb01528181613a570152613a7e01526150ae6000f3fe60806040526004361061036f5760003560e01c80638da5cb5b116101c6578063c0246668116100f7578063e2f4560511610095578063f11a24d31161006f578063f11a24d314610cc5578063f2fde38b14610cf0578063f637434214610d19578063f8b45b0514610d4457610376565b8063e2f4560514610c46578063e7ad9fcd14610c71578063e884f26014610c9a57610376565b8063c8c8ebe4116100d1578063c8c8ebe414610b76578063d257b34f14610ba1578063d85ba06314610bde578063dd62ed3e14610c0957610376565b8063c024666814610af9578063c18bc19514610b22578063c876d0b914610b4b57610376565b80639fccce3211610164578063a457c2d71161013e578063a457c2d714610a17578063a9059cbb14610a54578063b62496f514610a91578063bbc0c74214610ace57610376565b80639fccce3214610996578063a0d82dc5146109c1578063a1dc92bc146109ec57610376565b8063924de9b7116101a0578063924de9b7146108ee57806395d89b41146109175780639a7a23d6146109425780639c3b4fdc1461096b57610376565b80638da5cb5b1461086d5780638ea5220f1461089857806392136913146108c357610376565b806344249f04116102a0578063715018a61161023e57806375f0a8741161021857806375f0a874146107d55780637b208769146108005780637bce5a041461082b5780638a8c523c1461085657610376565b8063715018a61461076a578063751039fc146107815780637571336a146107ac57610376565b80634fbee1931161027a5780634fbee1931461069a5780636a486a8e146106d75780636ddd17131461070257806370a082311461072d57610376565b806344249f041461061957806349bd5a5e146106445780634a62bb651461066f57610376565b80631f3fed8f1161030d57806327c8f835116102e757806327c8f8351461055d5780632e6ed7ef14610588578063313ce567146105b157806339509351146105dc57610376565b80631f3fed8f146104cc578063203e727e146104f757806323b872dd1461052057610376565b806310d5de531161034957806310d5de531461040e5780631694505e1461044b57806318160ddd146104765780631a8145bb146104a157610376565b806306fdde031461037b578063095ea7b3146103a65780630d7f1441146103e357610376565b3661037657005b600080fd5b34801561038757600080fd5b50610390610d6f565b60405161039d9190613be6565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c89190613ca1565b610e01565b6040516103da9190613cfc565b60405180910390f35b3480156103ef57600080fd5b506103f8610e1f565b6040516104059190613d26565b60405180910390f35b34801561041a57600080fd5b5061043560048036038101906104309190613d41565b610e25565b6040516104429190613cfc565b60405180910390f35b34801561045757600080fd5b50610460610e45565b60405161046d9190613dcd565b60405180910390f35b34801561048257600080fd5b5061048b610e69565b6040516104989190613d26565b60405180910390f35b3480156104ad57600080fd5b506104b6610e73565b6040516104c39190613d26565b60405180910390f35b3480156104d857600080fd5b506104e1610e79565b6040516104ee9190613d26565b60405180910390f35b34801561050357600080fd5b5061051e60048036038101906105199190613de8565b610e7f565b005b34801561052c57600080fd5b5061054760048036038101906105429190613e15565b610f8e565b6040516105549190613cfc565b60405180910390f35b34801561056957600080fd5b50610572611086565b60405161057f9190613e77565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa9190613e92565b61108c565b005b3480156105bd57600080fd5b506105c66111bf565b6040516105d39190613f15565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe9190613ca1565b6111c8565b6040516106109190613cfc565b60405180910390f35b34801561062557600080fd5b5061062e611274565b60405161063b9190613d26565b60405180910390f35b34801561065057600080fd5b5061065961127a565b6040516106669190613e77565b60405180910390f35b34801561067b57600080fd5b5061068461129e565b6040516106919190613cfc565b60405180910390f35b3480156106a657600080fd5b506106c160048036038101906106bc9190613d41565b6112b1565b6040516106ce9190613cfc565b60405180910390f35b3480156106e357600080fd5b506106ec611307565b6040516106f99190613d26565b60405180910390f35b34801561070e57600080fd5b5061071761130d565b6040516107249190613cfc565b60405180910390f35b34801561073957600080fd5b50610754600480360381019061074f9190613d41565b611320565b6040516107619190613d26565b60405180910390f35b34801561077657600080fd5b5061077f611368565b005b34801561078d57600080fd5b506107966113f0565b6040516107a39190613cfc565b60405180910390f35b3480156107b857600080fd5b506107d360048036038101906107ce9190613f5c565b611490565b005b3480156107e157600080fd5b506107ea611567565b6040516107f79190613e77565b60405180910390f35b34801561080c57600080fd5b5061081561158d565b6040516108229190613e77565b60405180910390f35b34801561083757600080fd5b506108406115b3565b60405161084d9190613d26565b60405180910390f35b34801561086257600080fd5b5061086b6115b9565b005b34801561087957600080fd5b5061088261166d565b60405161088f9190613e77565b60405180910390f35b3480156108a457600080fd5b506108ad611697565b6040516108ba9190613e77565b60405180910390f35b3480156108cf57600080fd5b506108d86116bd565b6040516108e59190613d26565b60405180910390f35b3480156108fa57600080fd5b5061091560048036038101906109109190613f9c565b6116c3565b005b34801561092357600080fd5b5061092c61175c565b6040516109399190613be6565b60405180910390f35b34801561094e57600080fd5b5061096960048036038101906109649190613f5c565b6117ee565b005b34801561097757600080fd5b50610980611907565b60405161098d9190613d26565b60405180910390f35b3480156109a257600080fd5b506109ab61190d565b6040516109b89190613d26565b60405180910390f35b3480156109cd57600080fd5b506109d6611913565b6040516109e39190613d26565b60405180910390f35b3480156109f857600080fd5b50610a01611919565b604051610a0e9190613d26565b60405180910390f35b348015610a2357600080fd5b50610a3e6004803603810190610a399190613ca1565b61191f565b604051610a4b9190613cfc565b60405180910390f35b348015610a6057600080fd5b50610a7b6004803603810190610a769190613ca1565b611a0a565b604051610a889190613cfc565b60405180910390f35b348015610a9d57600080fd5b50610ab86004803603810190610ab39190613d41565b611a28565b604051610ac59190613cfc565b60405180910390f35b348015610ada57600080fd5b50610ae3611a48565b604051610af09190613cfc565b60405180910390f35b348015610b0557600080fd5b50610b206004803603810190610b1b9190613f5c565b611a5b565b005b348015610b2e57600080fd5b50610b496004803603810190610b449190613de8565b611b80565b005b348015610b5757600080fd5b50610b60611c8f565b604051610b6d9190613cfc565b60405180910390f35b348015610b8257600080fd5b50610b8b611ca2565b604051610b989190613d26565b60405180910390f35b348015610bad57600080fd5b50610bc86004803603810190610bc39190613de8565b611ca8565b604051610bd59190613cfc565b60405180910390f35b348015610bea57600080fd5b50610bf3611dfd565b604051610c009190613d26565b60405180910390f35b348015610c1557600080fd5b50610c306004803603810190610c2b9190613fc9565b611e03565b604051610c3d9190613d26565b60405180910390f35b348015610c5257600080fd5b50610c5b611e8a565b604051610c689190613d26565b60405180910390f35b348015610c7d57600080fd5b50610c986004803603810190610c939190613e92565b611e90565b005b348015610ca657600080fd5b50610caf611fa2565b604051610cbc9190613cfc565b60405180910390f35b348015610cd157600080fd5b50610cda612042565b604051610ce79190613d26565b60405180910390f35b348015610cfc57600080fd5b50610d176004803603810190610d129190613d41565b612048565b005b348015610d2557600080fd5b50610d2e612140565b604051610d3b9190613d26565b60405180910390f35b348015610d5057600080fd5b50610d59612146565b604051610d669190613d26565b60405180910390f35b606060038054610d7e90614038565b80601f0160208091040260200160405190810160405280929190818152602001828054610daa90614038565b8015610df75780601f10610dcc57610100808354040283529160200191610df7565b820191906000526020600020905b815481529060010190602001808311610dda57829003601f168201915b5050505050905090565b6000610e15610e0e61214c565b8484612154565b6001905092915050565b60155481565b601e6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b601b5481565b601a5481565b610e8761214c565b73ffffffffffffffffffffffffffffffffffffffff16610ea561166d565b73ffffffffffffffffffffffffffffffffffffffff1614610efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef2906140b6565b60405180910390fd5b670de0b6b3a76400006103e86001610f11610e69565b610f1b9190614105565b610f25919061418e565b610f2f919061418e565b811015610f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6890614231565b60405180910390fd5b670de0b6b3a764000081610f859190614105565b60098190555050565b6000610f9b84848461231f565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610fe661214c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105d906142c3565b60405180910390fd5b61107a8561107261214c565b858403612154565b60019150509392505050565b61dead81565b61109461214c565b73ffffffffffffffffffffffffffffffffffffffff166110b261166d565b73ffffffffffffffffffffffffffffffffffffffff1614611108576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ff906140b6565b60405180910390fd5b60088183858761111891906142e3565b61112291906142e3565b61112c91906142e3565b111561116d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116490614385565b60405180910390fd5b8360108190555082601181905550816012819055508060138190555060135460125460115460105461119f91906142e3565b6111a991906142e3565b6111b391906142e3565b600f8190555050505050565b60006012905090565b600061126a6111d561214c565b8484600160006111e361214c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461126591906142e3565b612154565b6001905092915050565b60195481565b7f000000000000000000000000000000000000000000000000000000000000000081565b600c60009054906101000a900460ff1681565b6000601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600c60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61137061214c565b73ffffffffffffffffffffffffffffffffffffffff1661138e61166d565b73ffffffffffffffffffffffffffffffffffffffff16146113e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113db906140b6565b60405180910390fd5b6113ee600061301f565b565b60006113fa61214c565b73ffffffffffffffffffffffffffffffffffffffff1661141861166d565b73ffffffffffffffffffffffffffffffffffffffff161461146e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611465906140b6565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b61149861214c565b73ffffffffffffffffffffffffffffffffffffffff166114b661166d565b73ffffffffffffffffffffffffffffffffffffffff161461150c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611503906140b6565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b6115c161214c565b73ffffffffffffffffffffffffffffffffffffffff166115df61166d565b73ffffffffffffffffffffffffffffffffffffffff1614611635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162c906140b6565b60405180910390fd5b6001600c60016101000a81548160ff0219169083151502179055506001600c60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60165481565b6116cb61214c565b73ffffffffffffffffffffffffffffffffffffffff166116e961166d565b73ffffffffffffffffffffffffffffffffffffffff161461173f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611736906140b6565b60405180910390fd5b80600c60026101000a81548160ff02191690831515021790555050565b60606004805461176b90614038565b80601f016020809104026020016040519081016040528092919081815260200182805461179790614038565b80156117e45780601f106117b9576101008083540402835291602001916117e4565b820191906000526020600020905b8154815290600101906020018083116117c757829003601f168201915b5050505050905090565b6117f661214c565b73ffffffffffffffffffffffffffffffffffffffff1661181461166d565b73ffffffffffffffffffffffffffffffffffffffff161461186a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611861906140b6565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f090614417565b60405180910390fd5b61190382826130e5565b5050565b60135481565b601c5481565b60185481565b60105481565b6000806001600061192e61214c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156119eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e2906144a9565b60405180910390fd5b6119ff6119f661214c565b85858403612154565b600191505092915050565b6000611a1e611a1761214c565b848461231f565b6001905092915050565b601f6020528060005260406000206000915054906101000a900460ff1681565b600c60019054906101000a900460ff1681565b611a6361214c565b73ffffffffffffffffffffffffffffffffffffffff16611a8161166d565b73ffffffffffffffffffffffffffffffffffffffff1614611ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ace906140b6565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611b749190613cfc565b60405180910390a25050565b611b8861214c565b73ffffffffffffffffffffffffffffffffffffffff16611ba661166d565b73ffffffffffffffffffffffffffffffffffffffff1614611bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf3906140b6565b60405180910390fd5b670de0b6b3a76400006103e86005611c12610e69565b611c1c9190614105565b611c26919061418e565b611c30919061418e565b811015611c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c699061453b565b60405180910390fd5b670de0b6b3a764000081611c869190614105565b600b8190555050565b600e60009054906101000a900460ff1681565b60095481565b6000611cb261214c565b73ffffffffffffffffffffffffffffffffffffffff16611cd061166d565b73ffffffffffffffffffffffffffffffffffffffff1614611d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1d906140b6565b60405180910390fd5b620186a06001611d34610e69565b611d3e9190614105565b611d48919061418e565b821015611d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d81906145cd565b60405180910390fd5b6103e86005611d97610e69565b611da19190614105565b611dab919061418e565b821115611ded576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de49061465f565b60405180910390fd5b81600a8190555060019050919050565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b611e9861214c565b73ffffffffffffffffffffffffffffffffffffffff16611eb661166d565b73ffffffffffffffffffffffffffffffffffffffff1614611f0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f03906140b6565b60405180910390fd5b600a821115611f50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f47906146cb565b60405180910390fd5b83601581905550826016819055508160178190555080601881905550601854601754601654601554611f8291906142e3565b611f8c91906142e3565b611f9691906142e3565b60148190555050505050565b6000611fac61214c565b73ffffffffffffffffffffffffffffffffffffffff16611fca61166d565b73ffffffffffffffffffffffffffffffffffffffff1614612020576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612017906140b6565b60405180910390fd5b6000600e60006101000a81548160ff0219169083151502179055506001905090565b60125481565b61205061214c565b73ffffffffffffffffffffffffffffffffffffffff1661206e61166d565b73ffffffffffffffffffffffffffffffffffffffff16146120c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120bb906140b6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212b9061475d565b60405180910390fd5b61213d8161301f565b50565b60175481565b600b5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121bb906147ef565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612234576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222b90614881565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516123129190613d26565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561238f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238690614913565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f6906149a5565b60405180910390fd5b60008114156124195761241483836000613186565b61301a565b600c60009054906101000a900460ff1615612adc5761243661166d565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156124a4575061247461166d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124dd5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612517575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125305750600560149054906101000a900460ff16155b15612adb57600c60019054906101000a900460ff1661262a57601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806125ea5750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612629576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262090614a11565b60405180910390fd5b5b600e60009054906101000a900460ff16156127f25761264761166d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156126ce57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561272657507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156127f15743600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106127ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a390614ac9565b60405180910390fd5b43600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128955750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561293c576009548111156128df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d690614b5b565b60405180910390fd5b600b546128eb83611320565b826128f691906142e3565b1115612937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292e90614bc7565b60405180910390fd5b612ada565b601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156129df5750601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612a2e57600954811115612a29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2090614c59565b60405180910390fd5b612ad9565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612ad857600b54612a8b83611320565b82612a9691906142e3565b1115612ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ace90614bc7565b60405180910390fd5b5b5b5b5b5b6000612ae730611320565b90506000600a548210159050808015612b0c5750600c60029054906101000a900460ff165b8015612b255750600560149054906101000a900460ff16155b8015612b7b5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612bd15750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612c275750601d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c6b576001600560146101000a81548160ff021916908315150217905550612c4f613407565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d215750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612d2b57600090505b6000811561300a57601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d8e57506000601454115b15612e8e57612dbb6064612dad601454886137c890919063ffffffff16565b6137de90919063ffffffff16565b905060145460155482612dce9190614105565b612dd8919061418e565b60196000828254612de991906142e3565b9250508190555060145460175482612e019190614105565b612e0b919061418e565b601b6000828254612e1c91906142e3565b9250508190555060145460185482612e349190614105565b612e3e919061418e565b601c6000828254612e4f91906142e3565b9250508190555060145460165482612e679190614105565b612e71919061418e565b601a6000828254612e8291906142e3565b92505081905550612fe6565b601f60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ee957506000600f54115b15612fe557612f166064612f08600f54886137c890919063ffffffff16565b6137de90919063ffffffff16565b9050600f5460105482612f299190614105565b612f33919061418e565b60196000828254612f4491906142e3565b92505081905550600f5460125482612f5c9190614105565b612f66919061418e565b601b6000828254612f7791906142e3565b92505081905550600f5460135482612f8f9190614105565b612f99919061418e565b601c6000828254612faa91906142e3565b92505081905550600f5460115482612fc29190614105565b612fcc919061418e565b601a6000828254612fdd91906142e3565b925050819055505b5b6000811115612ffb57612ffa873083613186565b5b80856130079190614c79565b94505b613015878787613186565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156131f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ed90614913565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325d906149a5565b60405180910390fd5b6132718383836137f4565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156132f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132ee90614d1f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461338a91906142e3565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516133ee9190613d26565b60405180910390a36134018484846137f9565b50505050565b600061341230611320565b90506000601c54601a54601b5460195461342c91906142e3565b61343691906142e3565b61344091906142e3565b90506000808314806134525750600082145b1561345f575050506137c6565b6014600a5461346e9190614105565b831115613487576014600a546134849190614105565b92505b6000600283601b548661349a9190614105565b6134a4919061418e565b6134ae919061418e565b905060006134c582866137fe90919063ffffffff16565b905060004790506134d582613814565b60006134ea82476137fe90919063ffffffff16565b9050600061351587613507601954856137c890919063ffffffff16565b6137de90919063ffffffff16565b9050600061354088613532601a54866137c890919063ffffffff16565b6137de90919063ffffffff16565b9050600061356b8961355d601c54876137c890919063ffffffff16565b6137de90919063ffffffff16565b905060008183858761357d9190614c79565b6135879190614c79565b6135919190614c79565b90506000601b8190555060006019819055506000601a819055506000601c81905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516135f990614d70565b60006040518083038185875af1925050503d8060008114613636576040519150601f19603f3d011682016040523d82523d6000602084013e61363b565b606091505b505080995050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168360405161368790614d70565b60006040518083038185875af1925050503d80600081146136c4576040519150601f19603f3d011682016040523d82523d6000602084013e6136c9565b606091505b5050809950506000881180156136df5750600081115b1561372c576136ee8882613a51565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618782601b5460405161372393929190614d85565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161377290614d70565b60006040518083038185875af1925050503d80600081146137af576040519150601f19603f3d011682016040523d82523d6000602084013e6137b4565b606091505b50508099505050505050505050505050505b565b600081836137d69190614105565b905092915050565b600081836137ec919061418e565b905092915050565b505050565b505050565b6000818361380c9190614c79565b905092915050565b6000600267ffffffffffffffff81111561383157613830614dbc565b5b60405190808252806020026020018201604052801561385f5781602001602082028036833780820191505090505b509050308160008151811061387757613876614deb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561391c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139409190614e2f565b8160018151811061395457613953614deb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506139b9307f000000000000000000000000000000000000000000000000000000000000000084612154565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613a1b959493929190614f55565b600060405180830381600087803b158015613a3557600080fd5b505af1158015613a49573d6000803e3d6000fd5b505050505050565b613a7c307f000000000000000000000000000000000000000000000000000000000000000084612154565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401613b0396959493929190614faf565b60606040518083038185885af1158015613b21573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613b469190615025565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613b87578082015181840152602081019050613b6c565b83811115613b96576000848401525b50505050565b6000601f19601f8301169050919050565b6000613bb882613b4d565b613bc28185613b58565b9350613bd2818560208601613b69565b613bdb81613b9c565b840191505092915050565b60006020820190508181036000830152613c008184613bad565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c3882613c0d565b9050919050565b613c4881613c2d565b8114613c5357600080fd5b50565b600081359050613c6581613c3f565b92915050565b6000819050919050565b613c7e81613c6b565b8114613c8957600080fd5b50565b600081359050613c9b81613c75565b92915050565b60008060408385031215613cb857613cb7613c08565b5b6000613cc685828601613c56565b9250506020613cd785828601613c8c565b9150509250929050565b60008115159050919050565b613cf681613ce1565b82525050565b6000602082019050613d116000830184613ced565b92915050565b613d2081613c6b565b82525050565b6000602082019050613d3b6000830184613d17565b92915050565b600060208284031215613d5757613d56613c08565b5b6000613d6584828501613c56565b91505092915050565b6000819050919050565b6000613d93613d8e613d8984613c0d565b613d6e565b613c0d565b9050919050565b6000613da582613d78565b9050919050565b6000613db782613d9a565b9050919050565b613dc781613dac565b82525050565b6000602082019050613de26000830184613dbe565b92915050565b600060208284031215613dfe57613dfd613c08565b5b6000613e0c84828501613c8c565b91505092915050565b600080600060608486031215613e2e57613e2d613c08565b5b6000613e3c86828701613c56565b9350506020613e4d86828701613c56565b9250506040613e5e86828701613c8c565b9150509250925092565b613e7181613c2d565b82525050565b6000602082019050613e8c6000830184613e68565b92915050565b60008060008060808587031215613eac57613eab613c08565b5b6000613eba87828801613c8c565b9450506020613ecb87828801613c8c565b9350506040613edc87828801613c8c565b9250506060613eed87828801613c8c565b91505092959194509250565b600060ff82169050919050565b613f0f81613ef9565b82525050565b6000602082019050613f2a6000830184613f06565b92915050565b613f3981613ce1565b8114613f4457600080fd5b50565b600081359050613f5681613f30565b92915050565b60008060408385031215613f7357613f72613c08565b5b6000613f8185828601613c56565b9250506020613f9285828601613f47565b9150509250929050565b600060208284031215613fb257613fb1613c08565b5b6000613fc084828501613f47565b91505092915050565b60008060408385031215613fe057613fdf613c08565b5b6000613fee85828601613c56565b9250506020613fff85828601613c56565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061405057607f821691505b6020821081141561406457614063614009565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006140a0602083613b58565b91506140ab8261406a565b602082019050919050565b600060208201905081810360008301526140cf81614093565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061411082613c6b565b915061411b83613c6b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614154576141536140d6565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061419982613c6b565b91506141a483613c6b565b9250826141b4576141b361415f565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b600061421b602f83613b58565b9150614226826141bf565b604082019050919050565b6000602082019050818103600083015261424a8161420e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006142ad602883613b58565b91506142b882614251565b604082019050919050565b600060208201905081810360008301526142dc816142a0565b9050919050565b60006142ee82613c6b565b91506142f983613c6b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561432e5761432d6140d6565b5b828201905092915050565b7f4d61782042757946656520382500000000000000000000000000000000000000600082015250565b600061436f600d83613b58565b915061437a82614339565b602082019050919050565b6000602082019050818103600083015261439e81614362565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614401603983613b58565b915061440c826143a5565b604082019050919050565b60006020820190508181036000830152614430816143f4565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614493602583613b58565b915061449e82614437565b604082019050919050565b600060208201905081810360008301526144c281614486565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614525602483613b58565b9150614530826144c9565b604082019050919050565b6000602082019050818103600083015261455481614518565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006145b7603583613b58565b91506145c28261455b565b604082019050919050565b600060208201905081810360008301526145e6816145aa565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614649603483613b58565b9150614654826145ed565b604082019050919050565b600060208201905081810360008301526146788161463c565b9050919050565b7f4d61782053656c6c466565203130250000000000000000000000000000000000600082015250565b60006146b5600f83613b58565b91506146c08261467f565b602082019050919050565b600060208201905081810360008301526146e4816146a8565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614747602683613b58565b9150614752826146eb565b604082019050919050565b600060208201905081810360008301526147768161473a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006147d9602483613b58565b91506147e48261477d565b604082019050919050565b60006020820190508181036000830152614808816147cc565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061486b602283613b58565b91506148768261480f565b604082019050919050565b6000602082019050818103600083015261489a8161485e565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006148fd602583613b58565b9150614908826148a1565b604082019050919050565b6000602082019050818103600083015261492c816148f0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061498f602383613b58565b915061499a82614933565b604082019050919050565b600060208201905081810360008301526149be81614982565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006149fb601683613b58565b9150614a06826149c5565b602082019050919050565b60006020820190508181036000830152614a2a816149ee565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614ab3604983613b58565b9150614abe82614a31565b606082019050919050565b60006020820190508181036000830152614ae281614aa6565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614b45603583613b58565b9150614b5082614ae9565b604082019050919050565b60006020820190508181036000830152614b7481614b38565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614bb1601383613b58565b9150614bbc82614b7b565b602082019050919050565b60006020820190508181036000830152614be081614ba4565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614c43603683613b58565b9150614c4e82614be7565b604082019050919050565b60006020820190508181036000830152614c7281614c36565b9050919050565b6000614c8482613c6b565b9150614c8f83613c6b565b925082821015614ca257614ca16140d6565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614d09602683613b58565b9150614d1482614cad565b604082019050919050565b60006020820190508181036000830152614d3881614cfc565b9050919050565b600081905092915050565b50565b6000614d5a600083614d3f565b9150614d6582614d4a565b600082019050919050565b6000614d7b82614d4d565b9150819050919050565b6000606082019050614d9a6000830186613d17565b614da76020830185613d17565b614db46040830184613d17565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614e2981613c3f565b92915050565b600060208284031215614e4557614e44613c08565b5b6000614e5384828501614e1a565b91505092915050565b6000819050919050565b6000614e81614e7c614e7784614e5c565b613d6e565b613c6b565b9050919050565b614e9181614e66565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614ecc81613c2d565b82525050565b6000614ede8383614ec3565b60208301905092915050565b6000602082019050919050565b6000614f0282614e97565b614f0c8185614ea2565b9350614f1783614eb3565b8060005b83811015614f48578151614f2f8882614ed2565b9750614f3a83614eea565b925050600181019050614f1b565b5085935050505092915050565b600060a082019050614f6a6000830188613d17565b614f776020830187614e88565b8181036040830152614f898186614ef7565b9050614f986060830185613e68565b614fa56080830184613d17565b9695505050505050565b600060c082019050614fc46000830189613e68565b614fd16020830188613d17565b614fde6040830187614e88565b614feb6060830186614e88565b614ff86080830185613e68565b61500560a0830184613d17565b979650505050505050565b60008151905061501f81613c75565b92915050565b60008060006060848603121561503e5761503d613c08565b5b600061504c86828701615010565b935050602061505d86828701615010565b925050604061506e86828701615010565b915050925092509256fea26469706673582212202e80e8d9eed60ee1687cca074cb45783930883f683a6b1d48d0006539e68e77964736f6c634300080a0033

Deployed Bytecode

0x60806040526004361061036f5760003560e01c80638da5cb5b116101c6578063c0246668116100f7578063e2f4560511610095578063f11a24d31161006f578063f11a24d314610cc5578063f2fde38b14610cf0578063f637434214610d19578063f8b45b0514610d4457610376565b8063e2f4560514610c46578063e7ad9fcd14610c71578063e884f26014610c9a57610376565b8063c8c8ebe4116100d1578063c8c8ebe414610b76578063d257b34f14610ba1578063d85ba06314610bde578063dd62ed3e14610c0957610376565b8063c024666814610af9578063c18bc19514610b22578063c876d0b914610b4b57610376565b80639fccce3211610164578063a457c2d71161013e578063a457c2d714610a17578063a9059cbb14610a54578063b62496f514610a91578063bbc0c74214610ace57610376565b80639fccce3214610996578063a0d82dc5146109c1578063a1dc92bc146109ec57610376565b8063924de9b7116101a0578063924de9b7146108ee57806395d89b41146109175780639a7a23d6146109425780639c3b4fdc1461096b57610376565b80638da5cb5b1461086d5780638ea5220f1461089857806392136913146108c357610376565b806344249f04116102a0578063715018a61161023e57806375f0a8741161021857806375f0a874146107d55780637b208769146108005780637bce5a041461082b5780638a8c523c1461085657610376565b8063715018a61461076a578063751039fc146107815780637571336a146107ac57610376565b80634fbee1931161027a5780634fbee1931461069a5780636a486a8e146106d75780636ddd17131461070257806370a082311461072d57610376565b806344249f041461061957806349bd5a5e146106445780634a62bb651461066f57610376565b80631f3fed8f1161030d57806327c8f835116102e757806327c8f8351461055d5780632e6ed7ef14610588578063313ce567146105b157806339509351146105dc57610376565b80631f3fed8f146104cc578063203e727e146104f757806323b872dd1461052057610376565b806310d5de531161034957806310d5de531461040e5780631694505e1461044b57806318160ddd146104765780631a8145bb146104a157610376565b806306fdde031461037b578063095ea7b3146103a65780630d7f1441146103e357610376565b3661037657005b600080fd5b34801561038757600080fd5b50610390610d6f565b60405161039d9190613be6565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c89190613ca1565b610e01565b6040516103da9190613cfc565b60405180910390f35b3480156103ef57600080fd5b506103f8610e1f565b6040516104059190613d26565b60405180910390f35b34801561041a57600080fd5b5061043560048036038101906104309190613d41565b610e25565b6040516104429190613cfc565b60405180910390f35b34801561045757600080fd5b50610460610e45565b60405161046d9190613dcd565b60405180910390f35b34801561048257600080fd5b5061048b610e69565b6040516104989190613d26565b60405180910390f35b3480156104ad57600080fd5b506104b6610e73565b6040516104c39190613d26565b60405180910390f35b3480156104d857600080fd5b506104e1610e79565b6040516104ee9190613d26565b60405180910390f35b34801561050357600080fd5b5061051e60048036038101906105199190613de8565b610e7f565b005b34801561052c57600080fd5b5061054760048036038101906105429190613e15565b610f8e565b6040516105549190613cfc565b60405180910390f35b34801561056957600080fd5b50610572611086565b60405161057f9190613e77565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa9190613e92565b61108c565b005b3480156105bd57600080fd5b506105c66111bf565b6040516105d39190613f15565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe9190613ca1565b6111c8565b6040516106109190613cfc565b60405180910390f35b34801561062557600080fd5b5061062e611274565b60405161063b9190613d26565b60405180910390f35b34801561065057600080fd5b5061065961127a565b6040516106669190613e77565b60405180910390f35b34801561067b57600080fd5b5061068461129e565b6040516106919190613cfc565b60405180910390f35b3480156106a657600080fd5b506106c160048036038101906106bc9190613d41565b6112b1565b6040516106ce9190613cfc565b60405180910390f35b3480156106e357600080fd5b506106ec611307565b6040516106f99190613d26565b60405180910390f35b34801561070e57600080fd5b5061071761130d565b6040516107249190613cfc565b60405180910390f35b34801561073957600080fd5b50610754600480360381019061074f9190613d41565b611320565b6040516107619190613d26565b60405180910390f35b34801561077657600080fd5b5061077f611368565b005b34801561078d57600080fd5b506107966113f0565b6040516107a39190613cfc565b60405180910390f35b3480156107b857600080fd5b506107d360048036038101906107ce9190613f5c565b611490565b005b3480156107e157600080fd5b506107ea611567565b6040516107f79190613e77565b60405180910390f35b34801561080c57600080fd5b5061081561158d565b6040516108229190613e77565b60405180910390f35b34801561083757600080fd5b506108406115b3565b60405161084d9190613d26565b60405180910390f35b34801561086257600080fd5b5061086b6115b9565b005b34801561087957600080fd5b5061088261166d565b60405161088f9190613e77565b60405180910390f35b3480156108a457600080fd5b506108ad611697565b6040516108ba9190613e77565b60405180910390f35b3480156108cf57600080fd5b506108d86116bd565b6040516108e59190613d26565b60405180910390f35b3480156108fa57600080fd5b5061091560048036038101906109109190613f9c565b6116c3565b005b34801561092357600080fd5b5061092c61175c565b6040516109399190613be6565b60405180910390f35b34801561094e57600080fd5b5061096960048036038101906109649190613f5c565b6117ee565b005b34801561097757600080fd5b50610980611907565b60405161098d9190613d26565b60405180910390f35b3480156109a257600080fd5b506109ab61190d565b6040516109b89190613d26565b60405180910390f35b3480156109cd57600080fd5b506109d6611913565b6040516109e39190613d26565b60405180910390f35b3480156109f857600080fd5b50610a01611919565b604051610a0e9190613d26565b60405180910390f35b348015610a2357600080fd5b50610a3e6004803603810190610a399190613ca1565b61191f565b604051610a4b9190613cfc565b60405180910390f35b348015610a6057600080fd5b50610a7b6004803603810190610a769190613ca1565b611a0a565b604051610a889190613cfc565b60405180910390f35b348015610a9d57600080fd5b50610ab86004803603810190610ab39190613d41565b611a28565b604051610ac59190613cfc565b60405180910390f35b348015610ada57600080fd5b50610ae3611a48565b604051610af09190613cfc565b60405180910390f35b348015610b0557600080fd5b50610b206004803603810190610b1b9190613f5c565b611a5b565b005b348015610b2e57600080fd5b50610b496004803603810190610b449190613de8565b611b80565b005b348015610b5757600080fd5b50610b60611c8f565b604051610b6d9190613cfc565b60405180910390f35b348015610b8257600080fd5b50610b8b611ca2565b604051610b989190613d26565b60405180910390f35b348015610bad57600080fd5b50610bc86004803603810190610bc39190613de8565b611ca8565b604051610bd59190613cfc565b60405180910390f35b348015610bea57600080fd5b50610bf3611dfd565b604051610c009190613d26565b60405180910390f35b348015610c1557600080fd5b50610c306004803603810190610c2b9190613fc9565b611e03565b604051610c3d9190613d26565b60405180910390f35b348015610c5257600080fd5b50610c5b611e8a565b604051610c689190613d26565b60405180910390f35b348015610c7d57600080fd5b50610c986004803603810190610c939190613e92565b611e90565b005b348015610ca657600080fd5b50610caf611fa2565b604051610cbc9190613cfc565b60405180910390f35b348015610cd157600080fd5b50610cda612042565b604051610ce79190613d26565b60405180910390f35b348015610cfc57600080fd5b50610d176004803603810190610d129190613d41565b612048565b005b348015610d2557600080fd5b50610d2e612140565b604051610d3b9190613d26565b60405180910390f35b348015610d5057600080fd5b50610d59612146565b604051610d669190613d26565b60405180910390f35b606060038054610d7e90614038565b80601f0160208091040260200160405190810160405280929190818152602001828054610daa90614038565b8015610df75780601f10610dcc57610100808354040283529160200191610df7565b820191906000526020600020905b815481529060010190602001808311610dda57829003601f168201915b5050505050905090565b6000610e15610e0e61214c565b8484612154565b6001905092915050565b60155481565b601e6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b601b5481565b601a5481565b610e8761214c565b73ffffffffffffffffffffffffffffffffffffffff16610ea561166d565b73ffffffffffffffffffffffffffffffffffffffff1614610efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef2906140b6565b60405180910390fd5b670de0b6b3a76400006103e86001610f11610e69565b610f1b9190614105565b610f25919061418e565b610f2f919061418e565b811015610f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6890614231565b60405180910390fd5b670de0b6b3a764000081610f859190614105565b60098190555050565b6000610f9b84848461231f565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610fe661214c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105d906142c3565b60405180910390fd5b61107a8561107261214c565b858403612154565b60019150509392505050565b61dead81565b61109461214c565b73ffffffffffffffffffffffffffffffffffffffff166110b261166d565b73ffffffffffffffffffffffffffffffffffffffff1614611108576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ff906140b6565b60405180910390fd5b60088183858761111891906142e3565b61112291906142e3565b61112c91906142e3565b111561116d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116490614385565b60405180910390fd5b8360108190555082601181905550816012819055508060138190555060135460125460115460105461119f91906142e3565b6111a991906142e3565b6111b391906142e3565b600f8190555050505050565b60006012905090565b600061126a6111d561214c565b8484600160006111e361214c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461126591906142e3565b612154565b6001905092915050565b60195481565b7f000000000000000000000000a1a22a575d1b287c87e9b2bb395b3eea41a1176b81565b600c60009054906101000a900460ff1681565b6000601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600c60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61137061214c565b73ffffffffffffffffffffffffffffffffffffffff1661138e61166d565b73ffffffffffffffffffffffffffffffffffffffff16146113e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113db906140b6565b60405180910390fd5b6113ee600061301f565b565b60006113fa61214c565b73ffffffffffffffffffffffffffffffffffffffff1661141861166d565b73ffffffffffffffffffffffffffffffffffffffff161461146e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611465906140b6565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b61149861214c565b73ffffffffffffffffffffffffffffffffffffffff166114b661166d565b73ffffffffffffffffffffffffffffffffffffffff161461150c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611503906140b6565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b6115c161214c565b73ffffffffffffffffffffffffffffffffffffffff166115df61166d565b73ffffffffffffffffffffffffffffffffffffffff1614611635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162c906140b6565b60405180910390fd5b6001600c60016101000a81548160ff0219169083151502179055506001600c60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60165481565b6116cb61214c565b73ffffffffffffffffffffffffffffffffffffffff166116e961166d565b73ffffffffffffffffffffffffffffffffffffffff161461173f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611736906140b6565b60405180910390fd5b80600c60026101000a81548160ff02191690831515021790555050565b60606004805461176b90614038565b80601f016020809104026020016040519081016040528092919081815260200182805461179790614038565b80156117e45780601f106117b9576101008083540402835291602001916117e4565b820191906000526020600020905b8154815290600101906020018083116117c757829003601f168201915b5050505050905090565b6117f661214c565b73ffffffffffffffffffffffffffffffffffffffff1661181461166d565b73ffffffffffffffffffffffffffffffffffffffff161461186a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611861906140b6565b60405180910390fd5b7f000000000000000000000000a1a22a575d1b287c87e9b2bb395b3eea41a1176b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f090614417565b60405180910390fd5b61190382826130e5565b5050565b60135481565b601c5481565b60185481565b60105481565b6000806001600061192e61214c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156119eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e2906144a9565b60405180910390fd5b6119ff6119f661214c565b85858403612154565b600191505092915050565b6000611a1e611a1761214c565b848461231f565b6001905092915050565b601f6020528060005260406000206000915054906101000a900460ff1681565b600c60019054906101000a900460ff1681565b611a6361214c565b73ffffffffffffffffffffffffffffffffffffffff16611a8161166d565b73ffffffffffffffffffffffffffffffffffffffff1614611ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ace906140b6565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611b749190613cfc565b60405180910390a25050565b611b8861214c565b73ffffffffffffffffffffffffffffffffffffffff16611ba661166d565b73ffffffffffffffffffffffffffffffffffffffff1614611bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf3906140b6565b60405180910390fd5b670de0b6b3a76400006103e86005611c12610e69565b611c1c9190614105565b611c26919061418e565b611c30919061418e565b811015611c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c699061453b565b60405180910390fd5b670de0b6b3a764000081611c869190614105565b600b8190555050565b600e60009054906101000a900460ff1681565b60095481565b6000611cb261214c565b73ffffffffffffffffffffffffffffffffffffffff16611cd061166d565b73ffffffffffffffffffffffffffffffffffffffff1614611d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1d906140b6565b60405180910390fd5b620186a06001611d34610e69565b611d3e9190614105565b611d48919061418e565b821015611d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d81906145cd565b60405180910390fd5b6103e86005611d97610e69565b611da19190614105565b611dab919061418e565b821115611ded576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de49061465f565b60405180910390fd5b81600a8190555060019050919050565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b611e9861214c565b73ffffffffffffffffffffffffffffffffffffffff16611eb661166d565b73ffffffffffffffffffffffffffffffffffffffff1614611f0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f03906140b6565b60405180910390fd5b600a821115611f50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f47906146cb565b60405180910390fd5b83601581905550826016819055508160178190555080601881905550601854601754601654601554611f8291906142e3565b611f8c91906142e3565b611f9691906142e3565b60148190555050505050565b6000611fac61214c565b73ffffffffffffffffffffffffffffffffffffffff16611fca61166d565b73ffffffffffffffffffffffffffffffffffffffff1614612020576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612017906140b6565b60405180910390fd5b6000600e60006101000a81548160ff0219169083151502179055506001905090565b60125481565b61205061214c565b73ffffffffffffffffffffffffffffffffffffffff1661206e61166d565b73ffffffffffffffffffffffffffffffffffffffff16146120c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120bb906140b6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212b9061475d565b60405180910390fd5b61213d8161301f565b50565b60175481565b600b5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121bb906147ef565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612234576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222b90614881565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516123129190613d26565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561238f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238690614913565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f6906149a5565b60405180910390fd5b60008114156124195761241483836000613186565b61301a565b600c60009054906101000a900460ff1615612adc5761243661166d565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156124a4575061247461166d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124dd5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612517575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125305750600560149054906101000a900460ff16155b15612adb57600c60019054906101000a900460ff1661262a57601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806125ea5750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612629576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262090614a11565b60405180910390fd5b5b600e60009054906101000a900460ff16156127f25761264761166d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156126ce57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561272657507f000000000000000000000000a1a22a575d1b287c87e9b2bb395b3eea41a1176b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156127f15743600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106127ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a390614ac9565b60405180910390fd5b43600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128955750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561293c576009548111156128df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d690614b5b565b60405180910390fd5b600b546128eb83611320565b826128f691906142e3565b1115612937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292e90614bc7565b60405180910390fd5b612ada565b601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156129df5750601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612a2e57600954811115612a29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2090614c59565b60405180910390fd5b612ad9565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612ad857600b54612a8b83611320565b82612a9691906142e3565b1115612ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ace90614bc7565b60405180910390fd5b5b5b5b5b5b6000612ae730611320565b90506000600a548210159050808015612b0c5750600c60029054906101000a900460ff165b8015612b255750600560149054906101000a900460ff16155b8015612b7b5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612bd15750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612c275750601d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c6b576001600560146101000a81548160ff021916908315150217905550612c4f613407565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d215750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612d2b57600090505b6000811561300a57601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d8e57506000601454115b15612e8e57612dbb6064612dad601454886137c890919063ffffffff16565b6137de90919063ffffffff16565b905060145460155482612dce9190614105565b612dd8919061418e565b60196000828254612de991906142e3565b9250508190555060145460175482612e019190614105565b612e0b919061418e565b601b6000828254612e1c91906142e3565b9250508190555060145460185482612e349190614105565b612e3e919061418e565b601c6000828254612e4f91906142e3565b9250508190555060145460165482612e679190614105565b612e71919061418e565b601a6000828254612e8291906142e3565b92505081905550612fe6565b601f60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ee957506000600f54115b15612fe557612f166064612f08600f54886137c890919063ffffffff16565b6137de90919063ffffffff16565b9050600f5460105482612f299190614105565b612f33919061418e565b60196000828254612f4491906142e3565b92505081905550600f5460125482612f5c9190614105565b612f66919061418e565b601b6000828254612f7791906142e3565b92505081905550600f5460135482612f8f9190614105565b612f99919061418e565b601c6000828254612faa91906142e3565b92505081905550600f5460115482612fc29190614105565b612fcc919061418e565b601a6000828254612fdd91906142e3565b925050819055505b5b6000811115612ffb57612ffa873083613186565b5b80856130079190614c79565b94505b613015878787613186565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156131f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ed90614913565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325d906149a5565b60405180910390fd5b6132718383836137f4565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156132f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132ee90614d1f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461338a91906142e3565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516133ee9190613d26565b60405180910390a36134018484846137f9565b50505050565b600061341230611320565b90506000601c54601a54601b5460195461342c91906142e3565b61343691906142e3565b61344091906142e3565b90506000808314806134525750600082145b1561345f575050506137c6565b6014600a5461346e9190614105565b831115613487576014600a546134849190614105565b92505b6000600283601b548661349a9190614105565b6134a4919061418e565b6134ae919061418e565b905060006134c582866137fe90919063ffffffff16565b905060004790506134d582613814565b60006134ea82476137fe90919063ffffffff16565b9050600061351587613507601954856137c890919063ffffffff16565b6137de90919063ffffffff16565b9050600061354088613532601a54866137c890919063ffffffff16565b6137de90919063ffffffff16565b9050600061356b8961355d601c54876137c890919063ffffffff16565b6137de90919063ffffffff16565b905060008183858761357d9190614c79565b6135879190614c79565b6135919190614c79565b90506000601b8190555060006019819055506000601a819055506000601c81905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516135f990614d70565b60006040518083038185875af1925050503d8060008114613636576040519150601f19603f3d011682016040523d82523d6000602084013e61363b565b606091505b505080995050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168360405161368790614d70565b60006040518083038185875af1925050503d80600081146136c4576040519150601f19603f3d011682016040523d82523d6000602084013e6136c9565b606091505b5050809950506000881180156136df5750600081115b1561372c576136ee8882613a51565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618782601b5460405161372393929190614d85565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161377290614d70565b60006040518083038185875af1925050503d80600081146137af576040519150601f19603f3d011682016040523d82523d6000602084013e6137b4565b606091505b50508099505050505050505050505050505b565b600081836137d69190614105565b905092915050565b600081836137ec919061418e565b905092915050565b505050565b505050565b6000818361380c9190614c79565b905092915050565b6000600267ffffffffffffffff81111561383157613830614dbc565b5b60405190808252806020026020018201604052801561385f5781602001602082028036833780820191505090505b509050308160008151811061387757613876614deb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561391c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139409190614e2f565b8160018151811061395457613953614deb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506139b9307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612154565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613a1b959493929190614f55565b600060405180830381600087803b158015613a3557600080fd5b505af1158015613a49573d6000803e3d6000fd5b505050505050565b613a7c307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612154565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401613b0396959493929190614faf565b60606040518083038185885af1158015613b21573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613b469190615025565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613b87578082015181840152602081019050613b6c565b83811115613b96576000848401525b50505050565b6000601f19601f8301169050919050565b6000613bb882613b4d565b613bc28185613b58565b9350613bd2818560208601613b69565b613bdb81613b9c565b840191505092915050565b60006020820190508181036000830152613c008184613bad565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c3882613c0d565b9050919050565b613c4881613c2d565b8114613c5357600080fd5b50565b600081359050613c6581613c3f565b92915050565b6000819050919050565b613c7e81613c6b565b8114613c8957600080fd5b50565b600081359050613c9b81613c75565b92915050565b60008060408385031215613cb857613cb7613c08565b5b6000613cc685828601613c56565b9250506020613cd785828601613c8c565b9150509250929050565b60008115159050919050565b613cf681613ce1565b82525050565b6000602082019050613d116000830184613ced565b92915050565b613d2081613c6b565b82525050565b6000602082019050613d3b6000830184613d17565b92915050565b600060208284031215613d5757613d56613c08565b5b6000613d6584828501613c56565b91505092915050565b6000819050919050565b6000613d93613d8e613d8984613c0d565b613d6e565b613c0d565b9050919050565b6000613da582613d78565b9050919050565b6000613db782613d9a565b9050919050565b613dc781613dac565b82525050565b6000602082019050613de26000830184613dbe565b92915050565b600060208284031215613dfe57613dfd613c08565b5b6000613e0c84828501613c8c565b91505092915050565b600080600060608486031215613e2e57613e2d613c08565b5b6000613e3c86828701613c56565b9350506020613e4d86828701613c56565b9250506040613e5e86828701613c8c565b9150509250925092565b613e7181613c2d565b82525050565b6000602082019050613e8c6000830184613e68565b92915050565b60008060008060808587031215613eac57613eab613c08565b5b6000613eba87828801613c8c565b9450506020613ecb87828801613c8c565b9350506040613edc87828801613c8c565b9250506060613eed87828801613c8c565b91505092959194509250565b600060ff82169050919050565b613f0f81613ef9565b82525050565b6000602082019050613f2a6000830184613f06565b92915050565b613f3981613ce1565b8114613f4457600080fd5b50565b600081359050613f5681613f30565b92915050565b60008060408385031215613f7357613f72613c08565b5b6000613f8185828601613c56565b9250506020613f9285828601613f47565b9150509250929050565b600060208284031215613fb257613fb1613c08565b5b6000613fc084828501613f47565b91505092915050565b60008060408385031215613fe057613fdf613c08565b5b6000613fee85828601613c56565b9250506020613fff85828601613c56565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061405057607f821691505b6020821081141561406457614063614009565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006140a0602083613b58565b91506140ab8261406a565b602082019050919050565b600060208201905081810360008301526140cf81614093565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061411082613c6b565b915061411b83613c6b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614154576141536140d6565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061419982613c6b565b91506141a483613c6b565b9250826141b4576141b361415f565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b600061421b602f83613b58565b9150614226826141bf565b604082019050919050565b6000602082019050818103600083015261424a8161420e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006142ad602883613b58565b91506142b882614251565b604082019050919050565b600060208201905081810360008301526142dc816142a0565b9050919050565b60006142ee82613c6b565b91506142f983613c6b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561432e5761432d6140d6565b5b828201905092915050565b7f4d61782042757946656520382500000000000000000000000000000000000000600082015250565b600061436f600d83613b58565b915061437a82614339565b602082019050919050565b6000602082019050818103600083015261439e81614362565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614401603983613b58565b915061440c826143a5565b604082019050919050565b60006020820190508181036000830152614430816143f4565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614493602583613b58565b915061449e82614437565b604082019050919050565b600060208201905081810360008301526144c281614486565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614525602483613b58565b9150614530826144c9565b604082019050919050565b6000602082019050818103600083015261455481614518565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006145b7603583613b58565b91506145c28261455b565b604082019050919050565b600060208201905081810360008301526145e6816145aa565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614649603483613b58565b9150614654826145ed565b604082019050919050565b600060208201905081810360008301526146788161463c565b9050919050565b7f4d61782053656c6c466565203130250000000000000000000000000000000000600082015250565b60006146b5600f83613b58565b91506146c08261467f565b602082019050919050565b600060208201905081810360008301526146e4816146a8565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614747602683613b58565b9150614752826146eb565b604082019050919050565b600060208201905081810360008301526147768161473a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006147d9602483613b58565b91506147e48261477d565b604082019050919050565b60006020820190508181036000830152614808816147cc565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061486b602283613b58565b91506148768261480f565b604082019050919050565b6000602082019050818103600083015261489a8161485e565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006148fd602583613b58565b9150614908826148a1565b604082019050919050565b6000602082019050818103600083015261492c816148f0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061498f602383613b58565b915061499a82614933565b604082019050919050565b600060208201905081810360008301526149be81614982565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006149fb601683613b58565b9150614a06826149c5565b602082019050919050565b60006020820190508181036000830152614a2a816149ee565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614ab3604983613b58565b9150614abe82614a31565b606082019050919050565b60006020820190508181036000830152614ae281614aa6565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614b45603583613b58565b9150614b5082614ae9565b604082019050919050565b60006020820190508181036000830152614b7481614b38565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614bb1601383613b58565b9150614bbc82614b7b565b602082019050919050565b60006020820190508181036000830152614be081614ba4565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614c43603683613b58565b9150614c4e82614be7565b604082019050919050565b60006020820190508181036000830152614c7281614c36565b9050919050565b6000614c8482613c6b565b9150614c8f83613c6b565b925082821015614ca257614ca16140d6565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614d09602683613b58565b9150614d1482614cad565b604082019050919050565b60006020820190508181036000830152614d3881614cfc565b9050919050565b600081905092915050565b50565b6000614d5a600083614d3f565b9150614d6582614d4a565b600082019050919050565b6000614d7b82614d4d565b9150819050919050565b6000606082019050614d9a6000830186613d17565b614da76020830185613d17565b614db46040830184613d17565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614e2981613c3f565b92915050565b600060208284031215614e4557614e44613c08565b5b6000614e5384828501614e1a565b91505092915050565b6000819050919050565b6000614e81614e7c614e7784614e5c565b613d6e565b613c6b565b9050919050565b614e9181614e66565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614ecc81613c2d565b82525050565b6000614ede8383614ec3565b60208301905092915050565b6000602082019050919050565b6000614f0282614e97565b614f0c8185614ea2565b9350614f1783614eb3565b8060005b83811015614f48578151614f2f8882614ed2565b9750614f3a83614eea565b925050600181019050614f1b565b5085935050505092915050565b600060a082019050614f6a6000830188613d17565b614f776020830187614e88565b8181036040830152614f898186614ef7565b9050614f986060830185613e68565b614fa56080830184613d17565b9695505050505050565b600060c082019050614fc46000830189613e68565b614fd16020830188613d17565b614fde6040830187614e88565b614feb6060830186614e88565b614ff86080830185613e68565b61500560a0830184613d17565b979650505050505050565b60008151905061501f81613c75565b92915050565b60008060006060848603121561503e5761503d613c08565b5b600061504c86828701615010565b935050602061505d86828701615010565b925050604061506e86828701615010565b915050925092509256fea26469706673582212202e80e8d9eed60ee1687cca074cb45783930883f683a6b1d48d0006539e68e77964736f6c634300080a0033

Deployed Bytecode Sourcemap

32720:16459:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9648:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11815:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33760:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34197:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32797:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10768:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33981:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33941;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38588:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12466:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32900:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39507:496;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10610:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13367:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33903:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32855:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33209:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41183:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33728:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33289:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10939:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2883:103;;;;;;;;;;;;;:::i;:::-;;37696:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39136:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33024:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32989:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33621:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37532:112;;;;;;;;;;;;;:::i;:::-;;2232:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33061:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33796:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39399:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9867:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40675:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33695:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34021:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33872:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33586:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14085:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11279:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34418:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33249:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40485:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38871:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33507:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33094:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38083:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33555:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11517:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33136:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40011:466;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37878:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33658:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3141:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33834:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33176:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9648:100;9702:13;9735:5;9728:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9648:100;:::o;11815:169::-;11898:4;11915:39;11924:12;:10;:12::i;:::-;11938:7;11947:6;11915:8;:39::i;:::-;11972:4;11965:11;;11815:169;;;;:::o;33760:29::-;;;;:::o;34197:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;32797:51::-;;;:::o;10768:108::-;10829:7;10856:12;;10849:19;;10768:108;:::o;33981:33::-;;;;:::o;33941:::-;;;;:::o;38588:275::-;2463:12;:10;:12::i;:::-;2452:23;;:7;:5;:7::i;:::-;:23;;;2444:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38725:4:::1;38717;38712:1;38696:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38695:26;;;;:::i;:::-;38694:35;;;;:::i;:::-;38684:6;:45;;38662:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;38848:6;38838;:17;;;;:::i;:::-;38815:20;:40;;;;38588:275:::0;:::o;12466:492::-;12606:4;12623:36;12633:6;12641:9;12652:6;12623:9;:36::i;:::-;12672:24;12699:11;:19;12711:6;12699:19;;;;;;;;;;;;;;;:33;12719:12;:10;:12::i;:::-;12699:33;;;;;;;;;;;;;;;;12672:60;;12771:6;12751:16;:26;;12743:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12858:57;12867:6;12875:12;:10;:12::i;:::-;12908:6;12889:16;:25;12858:8;:57::i;:::-;12946:4;12939:11;;;12466:492;;;;;:::o;32900:53::-;32946:6;32900:53;:::o;39507:496::-;2463:12;:10;:12::i;:::-;2452:23;;:7;:5;:7::i;:::-;:23;;;2444:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39742:1:::1;39730:7;39714:13;39698;39684:11;:27;;;;:::i;:::-;:43;;;;:::i;:::-;:53;;;;:::i;:::-;39683:60;;39675:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;39782:11;39766:13;:27;;;;39822:13;39804:15;:31;;;;39864:13;39846:15;:31;;;;39900:7;39888:9;:19;;;;39985:9;;39967:15;;39949;;39933:13;;:31;;;;:::i;:::-;:49;;;;:::i;:::-;:61;;;;:::i;:::-;39918:12;:76;;;;39507:496:::0;;;;:::o;10610:93::-;10668:5;10693:2;10686:9;;10610:93;:::o;13367:215::-;13455:4;13472:80;13481:12;:10;:12::i;:::-;13495:7;13541:10;13504:11;:25;13516:12;:10;:12::i;:::-;13504:25;;;;;;;;;;;;;;;:34;13530:7;13504:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13472:8;:80::i;:::-;13570:4;13563:11;;13367:215;;;;:::o;33903:31::-;;;;:::o;32855:38::-;;;:::o;33209:33::-;;;;;;;;;;;;;:::o;41183:126::-;41249:4;41273:19;:28;41293:7;41273:28;;;;;;;;;;;;;;;;;;;;;;;;;41266:35;;41183:126;;;:::o;33728:28::-;;;;:::o;33289:31::-;;;;;;;;;;;;;:::o;10939:127::-;11013:7;11040:9;:18;11050:7;11040:18;;;;;;;;;;;;;;;;11033:25;;10939:127;;;:::o;2883:103::-;2463:12;:10;:12::i;:::-;2452:23;;:7;:5;:7::i;:::-;:23;;;2444:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2948:30:::1;2975:1;2948:18;:30::i;:::-;2883:103::o:0;37696:121::-;37748:4;2463:12;:10;:12::i;:::-;2452:23;;:7;:5;:7::i;:::-;:23;;;2444:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37782:5:::1;37765:14;;:22;;;;;;;;;;;;;;;;;;37805:4;37798:11;;37696:121:::0;:::o;39136:167::-;2463:12;:10;:12::i;:::-;2452:23;;:7;:5;:7::i;:::-;:23;;;2444:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39291:4:::1;39249:31;:39;39281:6;39249:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;39136:167:::0;;:::o;33024:30::-;;;;;;;;;;;;;:::o;32989:28::-;;;;;;;;;;;;;:::o;33621:30::-;;;;:::o;37532:112::-;2463:12;:10;:12::i;:::-;2452:23;;:7;:5;:7::i;:::-;:23;;;2444:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37603:4:::1;37587:13;;:20;;;;;;;;;;;;;;;;;;37632:4;37618:11;;:18;;;;;;;;;;;;;;;;;;37532:112::o:0;2232:87::-;2278:7;2305:6;;;;;;;;;;;2298:13;;2232:87;:::o;33061:24::-;;;;;;;;;;;;;:::o;33796:31::-;;;;:::o;39399:100::-;2463:12;:10;:12::i;:::-;2452:23;;:7;:5;:7::i;:::-;:23;;;2444:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39484:7:::1;39470:11;;:21;;;;;;;;;;;;;;;;;;39399:100:::0;:::o;9867:104::-;9923:13;9956:7;9949:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9867:104;:::o;40675:304::-;2463:12;:10;:12::i;:::-;2452:23;;:7;:5;:7::i;:::-;:23;;;2444:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40819:13:::1;40811:21;;:4;:21;;;;40789:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;40930:41;40959:4;40965:5;40930:28;:41::i;:::-;40675:304:::0;;:::o;33695:24::-;;;;:::o;34021:27::-;;;;:::o;33872:25::-;;;;:::o;33586:28::-;;;;:::o;14085:413::-;14178:4;14195:24;14222:11;:25;14234:12;:10;:12::i;:::-;14222:25;;;;;;;;;;;;;;;:34;14248:7;14222:34;;;;;;;;;;;;;;;;14195:61;;14295:15;14275:16;:35;;14267:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14388:67;14397:12;:10;:12::i;:::-;14411:7;14439:15;14420:16;:34;14388:8;:67::i;:::-;14486:4;14479:11;;;14085:413;;;;:::o;11279:175::-;11365:4;11382:42;11392:12;:10;:12::i;:::-;11406:9;11417:6;11382:9;:42::i;:::-;11442:4;11435:11;;11279:175;;;;:::o;34418:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33249:33::-;;;;;;;;;;;;;:::o;40485:182::-;2463:12;:10;:12::i;:::-;2452:23;;:7;:5;:7::i;:::-;:23;;;2444:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40601:8:::1;40570:19;:28;40590:7;40570:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40641:7;40625:34;;;40650:8;40625:34;;;;;;:::i;:::-;;;;;;;;40485:182:::0;;:::o;38871:256::-;2463:12;:10;:12::i;:::-;2452:23;;:7;:5;:7::i;:::-;:23;;;2444:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39011:4:::1;39003;38998:1;38982:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38981:26;;;;:::i;:::-;38980:35;;;;:::i;:::-;38970:6;:45;;38948:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;39112:6;39102;:17;;;;:::i;:::-;39090:9;:29;;;;38871:256:::0;:::o;33507:39::-;;;;;;;;;;;;;:::o;33094:35::-;;;;:::o;38083:497::-;38191:4;2463:12;:10;:12::i;:::-;2452:23;;:7;:5;:7::i;:::-;:23;;;2444:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38270:6:::1;38265:1;38249:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38248:28;;;;:::i;:::-;38235:9;:41;;38213:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;38425:4;38420:1;38404:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38403:26;;;;:::i;:::-;38390:9;:39;;38368:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;38541:9;38520:18;:30;;;;38568:4;38561:11;;38083:497:::0;;;:::o;33555:27::-;;;;:::o;11517:151::-;11606:7;11633:11;:18;11645:5;11633:18;;;;;;;;;;;;;;;:27;11652:7;11633:27;;;;;;;;;;;;;;;;11626:34;;11517:151;;;;:::o;33136:33::-;;;;:::o;40011:466::-;2463:12;:10;:12::i;:::-;2452:23;;:7;:5;:7::i;:::-;:23;;;2444:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40205:2:::1;40188:13;:19;;40180:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;40249:11;40232:14;:28;;;;40290:13;40271:16;:32;;;;40333:13;40314:16;:32;;;;40370:7;40357:10;:20;;;;40459:10;;40440:16;;40421;;40404:14;;:33;;;;:::i;:::-;:52;;;;:::i;:::-;:65;;;;:::i;:::-;40388:13;:81;;;;40011:466:::0;;;;:::o;37878:135::-;37938:4;2463:12;:10;:12::i;:::-;2452:23;;:7;:5;:7::i;:::-;:23;;;2444:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37978:5:::1;37955:20;;:28;;;;;;;;;;;;;;;;;;38001:4;37994:11;;37878:135:::0;:::o;33658:30::-;;;;:::o;3141:201::-;2463:12;:10;:12::i;:::-;2452:23;;:7;:5;:7::i;:::-;:23;;;2444:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3250:1:::1;3230:22;;:8;:22;;;;3222:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3306:28;3325:8;3306:18;:28::i;:::-;3141:201:::0;:::o;33834:31::-;;;;:::o;33176:24::-;;;;:::o;905:98::-;958:7;985:10;978:17;;905:98;:::o;17769:380::-;17922:1;17905:19;;:5;:19;;;;17897:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18003:1;17984:21;;:7;:21;;;;17976:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18087:6;18057:11;:18;18069:5;18057:18;;;;;;;;;;;;;;;:27;18076:7;18057:27;;;;;;;;;;;;;;;:36;;;;18125:7;18109:32;;18118:5;18109:32;;;18134:6;18109:32;;;;;;:::i;:::-;;;;;;;;17769:380;;;:::o;41317:4847::-;41465:1;41449:18;;:4;:18;;;;41441:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41542:1;41528:16;;:2;:16;;;;41520:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;41611:1;41601:6;:11;41597:93;;;41629:28;41645:4;41651:2;41655:1;41629:15;:28::i;:::-;41672:7;;41597:93;41706:14;;;;;;;;;;;41702:2487;;;41767:7;:5;:7::i;:::-;41759:15;;:4;:15;;;;:49;;;;;41801:7;:5;:7::i;:::-;41795:13;;:2;:13;;;;41759:49;:86;;;;;41843:1;41829:16;;:2;:16;;;;41759:86;:128;;;;;41880:6;41866:21;;:2;:21;;;;41759:128;:158;;;;;41909:8;;;;;;;;;;;41908:9;41759:158;41737:2441;;;41957:13;;;;;;;;;;;41952:223;;42029:19;:25;42049:4;42029:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42058:19;:23;42078:2;42058:23;;;;;;;;;;;;;;;;;;;;;;;;;42029:52;41995:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;41952:223;42331:20;;;;;;;;;;;42327:641;;;42412:7;:5;:7::i;:::-;42406:13;;:2;:13;;;;:72;;;;;42462:15;42448:30;;:2;:30;;;;42406:72;:129;;;;;42521:13;42507:28;;:2;:28;;;;42406:129;42376:573;;;42699:12;42624:28;:39;42653:9;42624:39;;;;;;;;;;;;;;;;:87;42586:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;42913:12;42871:28;:39;42900:9;42871:39;;;;;;;;;;;;;;;:54;;;;42376:573;42327:641;43042:25;:31;43068:4;43042:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43099:31;:35;43131:2;43099:35;;;;;;;;;;;;;;;;;;;;;;;;;43098:36;43042:92;43016:1147;;;43221:20;;43211:6;:30;;43177:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;43429:9;;43412:13;43422:2;43412:9;:13::i;:::-;43403:6;:22;;;;:::i;:::-;:35;;43369:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43016:1147;;;43607:25;:29;43633:2;43607:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43662:31;:37;43694:4;43662:37;;;;;;;;;;;;;;;;;;;;;;;;;43661:38;43607:92;43581:582;;;43786:20;;43776:6;:30;;43742:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;43581:582;;;43943:31;:35;43975:2;43943:35;;;;;;;;;;;;;;;;;;;;;;;;;43938:225;;44063:9;;44046:13;44056:2;44046:9;:13::i;:::-;44037:6;:22;;;;:::i;:::-;:35;;44003:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43938:225;43581:582;43016:1147;41737:2441;41702:2487;44201:28;44232:24;44250:4;44232:9;:24::i;:::-;44201:55;;44269:12;44308:18;;44284:20;:42;;44269:57;;44357:7;:35;;;;;44381:11;;;;;;;;;;;44357:35;:61;;;;;44410:8;;;;;;;;;;;44409:9;44357:61;:110;;;;;44436:25;:31;44462:4;44436:31;;;;;;;;;;;;;;;;;;;;;;;;;44435:32;44357:110;:153;;;;;44485:19;:25;44505:4;44485:25;;;;;;;;;;;;;;;;;;;;;;;;;44484:26;44357:153;:194;;;;;44528:19;:23;44548:2;44528:23;;;;;;;;;;;;;;;;;;;;;;;;;44527:24;44357:194;44339:326;;;44589:4;44578:8;;:15;;;;;;;;;;;;;;;;;;44610:10;:8;:10::i;:::-;44648:5;44637:8;;:16;;;;;;;;;;;;;;;;;;44339:326;44677:12;44693:8;;;;;;;;;;;44692:9;44677:24;;44803:19;:25;44823:4;44803:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;44832:19;:23;44852:2;44832:23;;;;;;;;;;;;;;;;;;;;;;;;;44803:52;44799:100;;;44882:5;44872:15;;44799:100;44911:12;45016:7;45012:1099;;;45068:25;:29;45094:2;45068:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;45117:1;45101:13;;:17;45068:50;45064:898;;;45146:34;45176:3;45146:25;45157:13;;45146:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;45139:41;;45233:13;;45215:14;;45208:4;:21;;;;:::i;:::-;45207:39;;;;:::i;:::-;45187:16;;:59;;;;;;;:::i;:::-;;;;;;;;45315:13;;45295:16;;45288:4;:23;;;;:::i;:::-;45287:41;;;;:::i;:::-;45265:18;;:63;;;;;;;:::i;:::-;;;;;;;;45385:13;;45371:10;;45364:4;:17;;;;:::i;:::-;45363:35;;;;:::i;:::-;45347:12;;:51;;;;;;;:::i;:::-;;;;;;;;45467:13;;45447:16;;45440:4;:23;;;;:::i;:::-;45439:41;;;;:::i;:::-;45417:18;;:63;;;;;;;:::i;:::-;;;;;;;;45064:898;;;45542:25;:31;45568:4;45542:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;45592:1;45577:12;;:16;45542:51;45538:424;;;45621:33;45650:3;45621:24;45632:12;;45621:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;45614:40;;45706:12;;45689:13;;45682:4;:20;;;;:::i;:::-;45681:37;;;;:::i;:::-;45661:16;;:57;;;;;;;:::i;:::-;;;;;;;;45786:12;;45767:15;;45760:4;:22;;;;:::i;:::-;45759:39;;;;:::i;:::-;45737:18;;:61;;;;;;;:::i;:::-;;;;;;;;45854:12;;45841:9;;45834:4;:16;;;;:::i;:::-;45833:33;;;;:::i;:::-;45817:12;;:49;;;;;;;:::i;:::-;;;;;;;;45934:12;;45915:15;;45908:4;:22;;;;:::i;:::-;45907:39;;;;:::i;:::-;45885:18;;:61;;;;;;;:::i;:::-;;;;;;;;45538:424;45064:898;45989:1;45982:4;:8;45978:91;;;46011:42;46027:4;46041;46048;46011:15;:42::i;:::-;45978:91;46095:4;46085:14;;;;;:::i;:::-;;;45012:1099;46123:33;46139:4;46145:2;46149:6;46123:15;:33::i;:::-;41430:4734;;;;41317:4847;;;;:::o;3502:191::-;3576:16;3595:6;;;;;;;;;;;3576:25;;3621:8;3612:6;;:17;;;;;;;;;;;;;;;;;;3676:8;3645:40;;3666:8;3645:40;;;;;;;;;;;;3565:128;3502:191;:::o;40987:188::-;41104:5;41070:25;:31;41096:4;41070:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41161:5;41127:40;;41155:4;41127:40;;;;;;;;;;;;40987:188;;:::o;14988:733::-;15146:1;15128:20;;:6;:20;;;;15120:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15230:1;15209:23;;:9;:23;;;;15201:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15285:47;15306:6;15314:9;15325:6;15285:20;:47::i;:::-;15345:21;15369:9;:17;15379:6;15369:17;;;;;;;;;;;;;;;;15345:41;;15422:6;15405:13;:23;;15397:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15543:6;15527:13;:22;15507:9;:17;15517:6;15507:17;;;;;;;;;;;;;;;:42;;;;15595:6;15571:9;:20;15581:9;15571:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15636:9;15619:35;;15628:6;15619:35;;;15647:6;15619:35;;;;;;:::i;:::-;;;;;;;;15667:46;15687:6;15695:9;15706:6;15667:19;:46::i;:::-;15109:612;14988:733;;;:::o;47292:1882::-;47331:23;47357:24;47375:4;47357:9;:24::i;:::-;47331:50;;47392:25;47481:12;;47460:18;;47439;;47420:16;;:37;;;;:::i;:::-;:58;;;;:::i;:::-;:73;;;;:::i;:::-;47392:101;;47504:12;47552:1;47533:15;:20;:46;;;;47578:1;47557:17;:22;47533:46;47529:85;;;47596:7;;;;;47529:85;47669:2;47648:18;;:23;;;;:::i;:::-;47630:15;:41;47626:115;;;47727:2;47706:18;;:23;;;;:::i;:::-;47688:41;;47626:115;47802:23;47889:1;47869:17;47847:18;;47829:15;:36;;;;:::i;:::-;47828:58;;;;:::i;:::-;:62;;;;:::i;:::-;47802:88;;47901:26;47930:36;47950:15;47930;:19;;:36;;;;:::i;:::-;47901:65;;47979:25;48007:21;47979:49;;48041:36;48058:18;48041:16;:36::i;:::-;48090:18;48111:44;48137:17;48111:21;:25;;:44;;;;:::i;:::-;48090:65;;48162:21;48186:55;48223:17;48186:32;48201:16;;48186:10;:14;;:32;;;;:::i;:::-;:36;;:55;;;;:::i;:::-;48162:79;;48252:23;48278:57;48317:17;48278:34;48293:18;;48278:10;:14;;:34;;;;:::i;:::-;:38;;:57;;;;:::i;:::-;48252:83;;48346:17;48366:51;48399:17;48366:28;48381:12;;48366:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;48346:71;;48430:23;48503:9;48485:15;48469:13;48456:10;:26;;;;:::i;:::-;:44;;;;:::i;:::-;:56;;;;:::i;:::-;48430:82;;48546:1;48525:18;:22;;;;48571:1;48552:16;:20;;;;48604:1;48583:18;:22;;;;48631:1;48616:12;:16;;;;48667:9;;;;;;;;;;;48659:23;;48690:9;48659:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48645:59;;;;;48737:15;;;;;;;;;;;48729:29;;48766:15;48729:57;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48715:71;;;;;48823:1;48805:15;:19;:42;;;;;48846:1;48828:15;:19;48805:42;48801:278;;;48864:46;48877:15;48894;48864:12;:46::i;:::-;48930:137;48963:18;49000:15;49034:18;;48930:137;;;;;;;;:::i;:::-;;;;;;;;48801:278;49113:13;;;;;;;;;;;49105:27;;49140:21;49105:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49091:75;;;;;47320:1854;;;;;;;;;;;47292:1882;:::o;23222:98::-;23280:7;23311:1;23307;:5;;;;:::i;:::-;23300:12;;23222:98;;;;:::o;23621:::-;23679:7;23710:1;23706;:5;;;;:::i;:::-;23699:12;;23621:98;;;;:::o;18749:125::-;;;;:::o;19478:124::-;;;;:::o;22865:98::-;22923:7;22954:1;22950;:5;;;;:::i;:::-;22943:12;;22865:98;;;;:::o;46172:589::-;46298:21;46336:1;46322:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46298:40;;46367:4;46349;46354:1;46349:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;46393:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46383:4;46388:1;46383:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;46428:62;46445:4;46460:15;46478:11;46428:8;:62::i;:::-;46529:15;:66;;;46610:11;46636:1;46680:4;46707;46727:15;46529:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46227:534;46172:589;:::o;46769:515::-;46917:62;46934:4;46949:15;46967:11;46917:8;:62::i;:::-;47022:15;:31;;;47061:9;47094:4;47114:11;47140:1;47183;47226:9;;;;;;;;;;;47250:15;47022:254;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;46769: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:163::-;14148:15;14144:1;14136:6;14132:14;14125:39;14008:163;:::o;14177:366::-;14319:3;14340:67;14404:2;14399:3;14340:67;:::i;:::-;14333:74;;14416:93;14505:3;14416:93;:::i;:::-;14534:2;14529:3;14525:12;14518:19;;14177:366;;;:::o;14549:419::-;14715:4;14753:2;14742:9;14738:18;14730:26;;14802:9;14796:4;14792:20;14788:1;14777:9;14773:17;14766:47;14830:131;14956:4;14830:131;:::i;:::-;14822:139;;14549:419;;;:::o;14974:244::-;15114:34;15110:1;15102:6;15098:14;15091:58;15183:27;15178:2;15170:6;15166:15;15159:52;14974:244;:::o;15224:366::-;15366:3;15387:67;15451:2;15446:3;15387:67;:::i;:::-;15380:74;;15463:93;15552:3;15463:93;:::i;:::-;15581:2;15576:3;15572:12;15565:19;;15224:366;;;:::o;15596:419::-;15762:4;15800:2;15789:9;15785:18;15777:26;;15849:9;15843:4;15839:20;15835:1;15824:9;15820:17;15813:47;15877:131;16003:4;15877:131;:::i;:::-;15869:139;;15596:419;;;:::o;16021:224::-;16161:34;16157:1;16149:6;16145:14;16138:58;16230:7;16225:2;16217:6;16213:15;16206:32;16021:224;:::o;16251:366::-;16393:3;16414:67;16478:2;16473:3;16414:67;:::i;:::-;16407:74;;16490:93;16579:3;16490:93;:::i;:::-;16608:2;16603:3;16599:12;16592:19;;16251:366;;;:::o;16623:419::-;16789:4;16827:2;16816:9;16812:18;16804:26;;16876:9;16870:4;16866:20;16862:1;16851:9;16847:17;16840:47;16904:131;17030:4;16904:131;:::i;:::-;16896:139;;16623:419;;;:::o;17048:223::-;17188:34;17184:1;17176:6;17172:14;17165:58;17257:6;17252:2;17244:6;17240:15;17233:31;17048:223;:::o;17277:366::-;17419:3;17440:67;17504:2;17499:3;17440:67;:::i;:::-;17433:74;;17516:93;17605:3;17516:93;:::i;:::-;17634:2;17629:3;17625:12;17618:19;;17277:366;;;:::o;17649:419::-;17815:4;17853:2;17842:9;17838:18;17830:26;;17902:9;17896:4;17892:20;17888:1;17877:9;17873:17;17866:47;17930:131;18056:4;17930:131;:::i;:::-;17922:139;;17649:419;;;:::o;18074:240::-;18214:34;18210:1;18202:6;18198:14;18191:58;18283:23;18278:2;18270:6;18266:15;18259:48;18074:240;:::o;18320:366::-;18462:3;18483:67;18547:2;18542:3;18483:67;:::i;:::-;18476:74;;18559:93;18648:3;18559:93;:::i;:::-;18677:2;18672:3;18668:12;18661:19;;18320:366;;;:::o;18692:419::-;18858:4;18896:2;18885:9;18881:18;18873:26;;18945:9;18939:4;18935:20;18931:1;18920:9;18916:17;18909:47;18973:131;19099:4;18973:131;:::i;:::-;18965:139;;18692:419;;;:::o;19117:239::-;19257:34;19253:1;19245:6;19241:14;19234:58;19326:22;19321:2;19313:6;19309:15;19302:47;19117:239;:::o;19362:366::-;19504:3;19525:67;19589:2;19584:3;19525:67;:::i;:::-;19518:74;;19601:93;19690:3;19601:93;:::i;:::-;19719:2;19714:3;19710:12;19703:19;;19362:366;;;:::o;19734:419::-;19900:4;19938:2;19927:9;19923:18;19915:26;;19987:9;19981:4;19977:20;19973:1;19962:9;19958:17;19951:47;20015:131;20141:4;20015:131;:::i;:::-;20007:139;;19734:419;;;:::o;20159:165::-;20299:17;20295:1;20287:6;20283:14;20276:41;20159:165;:::o;20330:366::-;20472:3;20493:67;20557:2;20552:3;20493:67;:::i;:::-;20486:74;;20569:93;20658:3;20569:93;:::i;:::-;20687:2;20682:3;20678:12;20671:19;;20330:366;;;:::o;20702:419::-;20868:4;20906:2;20895:9;20891:18;20883:26;;20955:9;20949:4;20945:20;20941:1;20930:9;20926:17;20919:47;20983:131;21109:4;20983:131;:::i;:::-;20975:139;;20702:419;;;:::o;21127:225::-;21267:34;21263:1;21255:6;21251:14;21244:58;21336:8;21331:2;21323:6;21319:15;21312:33;21127:225;:::o;21358:366::-;21500:3;21521:67;21585:2;21580:3;21521:67;:::i;:::-;21514:74;;21597:93;21686:3;21597:93;:::i;:::-;21715:2;21710:3;21706:12;21699:19;;21358:366;;;:::o;21730:419::-;21896:4;21934:2;21923:9;21919:18;21911:26;;21983:9;21977:4;21973:20;21969:1;21958:9;21954:17;21947:47;22011:131;22137:4;22011:131;:::i;:::-;22003:139;;21730:419;;;:::o;22155:223::-;22295:34;22291:1;22283:6;22279:14;22272:58;22364:6;22359:2;22351:6;22347:15;22340:31;22155:223;:::o;22384:366::-;22526:3;22547:67;22611:2;22606:3;22547:67;:::i;:::-;22540:74;;22623:93;22712:3;22623:93;:::i;:::-;22741:2;22736:3;22732:12;22725:19;;22384:366;;;:::o;22756:419::-;22922:4;22960:2;22949:9;22945:18;22937:26;;23009:9;23003:4;22999:20;22995:1;22984:9;22980:17;22973:47;23037:131;23163:4;23037:131;:::i;:::-;23029:139;;22756:419;;;:::o;23181:221::-;23321:34;23317:1;23309:6;23305:14;23298:58;23390:4;23385:2;23377:6;23373:15;23366:29;23181:221;:::o;23408:366::-;23550:3;23571:67;23635:2;23630:3;23571:67;:::i;:::-;23564:74;;23647:93;23736:3;23647:93;:::i;:::-;23765:2;23760:3;23756:12;23749:19;;23408:366;;;:::o;23780:419::-;23946:4;23984:2;23973:9;23969:18;23961:26;;24033:9;24027:4;24023:20;24019:1;24008:9;24004:17;23997:47;24061:131;24187:4;24061:131;:::i;:::-;24053:139;;23780:419;;;:::o;24205:224::-;24345:34;24341:1;24333:6;24329:14;24322:58;24414:7;24409:2;24401:6;24397:15;24390:32;24205:224;:::o;24435:366::-;24577:3;24598:67;24662:2;24657:3;24598:67;:::i;:::-;24591:74;;24674:93;24763:3;24674:93;:::i;:::-;24792:2;24787:3;24783:12;24776:19;;24435:366;;;:::o;24807:419::-;24973:4;25011:2;25000:9;24996:18;24988:26;;25060:9;25054:4;25050:20;25046:1;25035:9;25031:17;25024:47;25088:131;25214:4;25088:131;:::i;:::-;25080:139;;24807:419;;;:::o;25232:222::-;25372:34;25368:1;25360:6;25356:14;25349:58;25441:5;25436:2;25428:6;25424:15;25417:30;25232:222;:::o;25460:366::-;25602:3;25623:67;25687:2;25682:3;25623:67;:::i;:::-;25616:74;;25699:93;25788:3;25699:93;:::i;:::-;25817:2;25812:3;25808:12;25801:19;;25460:366;;;:::o;25832:419::-;25998:4;26036:2;26025:9;26021:18;26013:26;;26085:9;26079:4;26075:20;26071:1;26060:9;26056:17;26049:47;26113:131;26239:4;26113:131;:::i;:::-;26105:139;;25832:419;;;:::o;26257:172::-;26397:24;26393:1;26385:6;26381:14;26374:48;26257:172;:::o;26435:366::-;26577:3;26598:67;26662:2;26657:3;26598:67;:::i;:::-;26591:74;;26674:93;26763:3;26674:93;:::i;:::-;26792:2;26787:3;26783:12;26776:19;;26435:366;;;:::o;26807:419::-;26973:4;27011:2;27000:9;26996:18;26988:26;;27060:9;27054:4;27050:20;27046:1;27035:9;27031:17;27024:47;27088:131;27214:4;27088:131;:::i;:::-;27080:139;;26807:419;;;:::o;27232:297::-;27372:34;27368:1;27360:6;27356:14;27349:58;27441:34;27436:2;27428:6;27424:15;27417:59;27510:11;27505:2;27497:6;27493:15;27486:36;27232:297;:::o;27535:366::-;27677:3;27698:67;27762:2;27757:3;27698:67;:::i;:::-;27691:74;;27774:93;27863:3;27774:93;:::i;:::-;27892:2;27887:3;27883:12;27876:19;;27535:366;;;:::o;27907:419::-;28073:4;28111:2;28100:9;28096:18;28088:26;;28160:9;28154:4;28150:20;28146:1;28135:9;28131:17;28124:47;28188:131;28314:4;28188:131;:::i;:::-;28180:139;;27907:419;;;:::o;28332:240::-;28472:34;28468:1;28460:6;28456:14;28449:58;28541:23;28536:2;28528:6;28524:15;28517:48;28332:240;:::o;28578:366::-;28720:3;28741:67;28805:2;28800:3;28741:67;:::i;:::-;28734:74;;28817:93;28906:3;28817:93;:::i;:::-;28935:2;28930:3;28926:12;28919:19;;28578:366;;;:::o;28950:419::-;29116:4;29154:2;29143:9;29139:18;29131:26;;29203:9;29197:4;29193:20;29189:1;29178:9;29174:17;29167:47;29231:131;29357:4;29231:131;:::i;:::-;29223:139;;28950:419;;;:::o;29375:169::-;29515:21;29511:1;29503:6;29499:14;29492:45;29375:169;:::o;29550:366::-;29692:3;29713:67;29777:2;29772:3;29713:67;:::i;:::-;29706:74;;29789:93;29878:3;29789:93;:::i;:::-;29907:2;29902:3;29898:12;29891:19;;29550:366;;;:::o;29922:419::-;30088:4;30126:2;30115:9;30111:18;30103:26;;30175:9;30169:4;30165:20;30161:1;30150:9;30146:17;30139:47;30203:131;30329:4;30203:131;:::i;:::-;30195:139;;29922:419;;;:::o;30347:241::-;30487:34;30483:1;30475:6;30471:14;30464:58;30556:24;30551:2;30543:6;30539:15;30532:49;30347:241;:::o;30594:366::-;30736:3;30757:67;30821:2;30816:3;30757:67;:::i;:::-;30750:74;;30833:93;30922:3;30833:93;:::i;:::-;30951:2;30946:3;30942:12;30935:19;;30594:366;;;:::o;30966:419::-;31132:4;31170:2;31159:9;31155:18;31147:26;;31219:9;31213:4;31209:20;31205:1;31194:9;31190:17;31183:47;31247:131;31373:4;31247:131;:::i;:::-;31239:139;;30966:419;;;:::o;31391:191::-;31431:4;31451:20;31469:1;31451:20;:::i;:::-;31446:25;;31485:20;31503:1;31485:20;:::i;:::-;31480:25;;31524:1;31521;31518:8;31515:34;;;31529:18;;:::i;:::-;31515:34;31574:1;31571;31567:9;31559:17;;31391:191;;;;:::o;31588:225::-;31728:34;31724:1;31716:6;31712:14;31705:58;31797:8;31792:2;31784:6;31780:15;31773:33;31588:225;:::o;31819:366::-;31961:3;31982:67;32046:2;32041:3;31982:67;:::i;:::-;31975:74;;32058:93;32147:3;32058:93;:::i;:::-;32176:2;32171:3;32167:12;32160:19;;31819:366;;;:::o;32191:419::-;32357:4;32395:2;32384:9;32380:18;32372:26;;32444:9;32438:4;32434:20;32430:1;32419:9;32415:17;32408:47;32472:131;32598:4;32472:131;:::i;:::-;32464:139;;32191:419;;;:::o;32616:147::-;32717:11;32754:3;32739:18;;32616:147;;;;:::o;32769:114::-;;:::o;32889:398::-;33048:3;33069:83;33150:1;33145:3;33069:83;:::i;:::-;33062:90;;33161:93;33250:3;33161:93;:::i;:::-;33279:1;33274:3;33270:11;33263:18;;32889:398;;;:::o;33293:379::-;33477:3;33499:147;33642:3;33499:147;:::i;:::-;33492:154;;33663:3;33656:10;;33293:379;;;:::o;33678:442::-;33827:4;33865:2;33854:9;33850:18;33842:26;;33878:71;33946:1;33935:9;33931:17;33922:6;33878:71;:::i;:::-;33959:72;34027:2;34016:9;34012:18;34003:6;33959:72;:::i;:::-;34041;34109:2;34098:9;34094:18;34085:6;34041:72;:::i;:::-;33678:442;;;;;;:::o;34126:180::-;34174:77;34171:1;34164:88;34271:4;34268:1;34261:15;34295:4;34292:1;34285:15;34312:180;34360:77;34357:1;34350:88;34457:4;34454:1;34447:15;34481:4;34478:1;34471:15;34498:143;34555:5;34586:6;34580:13;34571:22;;34602:33;34629:5;34602:33;:::i;:::-;34498:143;;;;:::o;34647:351::-;34717:6;34766:2;34754:9;34745:7;34741:23;34737:32;34734:119;;;34772:79;;:::i;:::-;34734:119;34892:1;34917:64;34973:7;34964:6;34953:9;34949:22;34917:64;:::i;:::-;34907:74;;34863:128;34647:351;;;;:::o;35004:85::-;35049:7;35078:5;35067:16;;35004:85;;;:::o;35095:158::-;35153:9;35186:61;35204:42;35213:32;35239:5;35213:32;:::i;:::-;35204:42;:::i;:::-;35186:61;:::i;:::-;35173:74;;35095:158;;;:::o;35259:147::-;35354:45;35393:5;35354:45;:::i;:::-;35349:3;35342:58;35259:147;;:::o;35412:114::-;35479:6;35513:5;35507:12;35497:22;;35412:114;;;:::o;35532:184::-;35631:11;35665:6;35660:3;35653:19;35705:4;35700:3;35696:14;35681:29;;35532:184;;;;:::o;35722:132::-;35789:4;35812:3;35804:11;;35842:4;35837:3;35833:14;35825:22;;35722:132;;;:::o;35860:108::-;35937:24;35955:5;35937:24;:::i;:::-;35932:3;35925:37;35860:108;;:::o;35974:179::-;36043:10;36064:46;36106:3;36098:6;36064:46;:::i;:::-;36142:4;36137:3;36133:14;36119:28;;35974:179;;;;:::o;36159:113::-;36229:4;36261;36256:3;36252:14;36244:22;;36159:113;;;:::o;36308:732::-;36427:3;36456:54;36504:5;36456:54;:::i;:::-;36526:86;36605:6;36600:3;36526:86;:::i;:::-;36519:93;;36636:56;36686:5;36636:56;:::i;:::-;36715:7;36746:1;36731:284;36756:6;36753:1;36750:13;36731:284;;;36832:6;36826:13;36859:63;36918:3;36903:13;36859:63;:::i;:::-;36852:70;;36945:60;36998:6;36945:60;:::i;:::-;36935:70;;36791:224;36778:1;36775;36771:9;36766:14;;36731:284;;;36735:14;37031:3;37024:10;;36432:608;;;36308:732;;;;:::o;37046:831::-;37309:4;37347:3;37336:9;37332:19;37324:27;;37361:71;37429:1;37418:9;37414:17;37405:6;37361:71;:::i;:::-;37442:80;37518:2;37507:9;37503:18;37494:6;37442:80;:::i;:::-;37569:9;37563:4;37559:20;37554:2;37543:9;37539:18;37532:48;37597:108;37700:4;37691:6;37597:108;:::i;:::-;37589:116;;37715:72;37783:2;37772:9;37768:18;37759:6;37715:72;:::i;:::-;37797:73;37865:3;37854:9;37850:19;37841:6;37797:73;:::i;:::-;37046:831;;;;;;;;:::o;37883:807::-;38132:4;38170:3;38159:9;38155:19;38147:27;;38184:71;38252:1;38241:9;38237:17;38228:6;38184:71;:::i;:::-;38265:72;38333:2;38322:9;38318:18;38309:6;38265:72;:::i;:::-;38347:80;38423:2;38412:9;38408:18;38399:6;38347:80;:::i;:::-;38437;38513:2;38502:9;38498:18;38489:6;38437:80;:::i;:::-;38527:73;38595:3;38584:9;38580:19;38571:6;38527:73;:::i;:::-;38610;38678:3;38667:9;38663:19;38654:6;38610:73;:::i;:::-;37883:807;;;;;;;;;:::o;38696:143::-;38753:5;38784:6;38778:13;38769:22;;38800:33;38827:5;38800:33;:::i;:::-;38696:143;;;;:::o;38845:663::-;38933:6;38941;38949;38998:2;38986:9;38977:7;38973:23;38969:32;38966:119;;;39004:79;;:::i;:::-;38966:119;39124:1;39149:64;39205:7;39196:6;39185:9;39181:22;39149:64;:::i;:::-;39139:74;;39095:128;39262:2;39288:64;39344:7;39335:6;39324:9;39320:22;39288:64;:::i;:::-;39278:74;;39233:129;39401:2;39427:64;39483:7;39474:6;39463:9;39459:22;39427:64;:::i;:::-;39417:74;;39372:129;38845:663;;;;;:::o

Swarm Source

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