ETH Price: $2,702.49 (+1.82%)

Token

The Zodiac (∆)
 

Overview

Max Total Supply

1,000,000

Holders

5

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Null: 0x000...000
Balance
0 ∆

Value
$0.00
0x0000000000000000000000000000000000000000
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:
TheZodiac

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// File: TheZodiac.sol

/*⠀⠀⠀⠀

    The Zodiac - 生肖

    http://thezodiactoken.org/

    t.me/TheZodiacETH

   

*/



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

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

interface IUniswapV2Factory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint256
    );

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB)
        external
        view
        returns (address pair);

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

    function createPair(address tokenA, address tokenB)
        external
        returns (address pair);

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

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

    function WETH() external pure returns (address);

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

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

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

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

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

////// src/
/* 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 TheZodiac is ERC20, Ownable {
    using SafeMath for uint256;

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

    bool private swapping;

    address public marketingWallet;
    address public devWallet;

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

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

    uint256 public manualBurnFrequency = 30 minutes;
    uint256 public lastManualLpBurnTime;

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

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

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

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

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

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

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

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

    event AutoNukeLP();

    event ManualNukeLP();

    constructor() ERC20("The Zodiac", "\u2206") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

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

        uint256 _buyMarketingFee = 2;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyReflectionsFee = 0;

        uint256 _sellMarketingFee = 2;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellReflectionsFee = 0;

        uint256 totalSupply = 1_000_000 * 1e18;

        maxTransactionAmount = 20_000 * 1e18; // 100% from total supply maxTransactionAmountTxn
        maxWallet = 30_000 * 1e18; // 200% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet

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

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

        marketingWallet = address(0xA5cC6915F1E3ff3Edb2ac74e8B9b2e8589467540); // set as marketing wallet
        devWallet = address(0xA5cC6915F1E3ff3Edb2ac74e8B9b2e8589467540); // set as dev wallet

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

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

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

    receive() external payable {}

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

    // remove limits after token is stable
    function setMaxTransactionAmount() 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 updateMaxTransactionAmount(uint256 newNum) external onlyOwner {
        maxTransactionAmount = newNum * (10**18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        maxWallet = newNum * (10**18);
    }

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

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

    function updateBuyFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _ReflectionsFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyReflectionsFee = _ReflectionsFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyReflectionsFee;
    
    }

    function removeLimits(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _ReflectionsFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellReflectionsFee = _ReflectionsFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellReflectionsFee;
        
    }

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateMarketingWallet(address newMarketingWallet)
        external
        onlyOwner
    {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }

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

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

    event BoughtEarly(address indexed sniper);

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

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

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

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

        bool takeFee = !swapping;

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

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

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

            amount -= fees;
        }

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

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

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

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

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

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

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

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

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

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);

        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(
            totalTokensToSwap
        );
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"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":"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":"buyReflectionsFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_ReflectionsFee","type":"uint256"}],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellReflectionsFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_ReflectionsFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTransactionAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","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"}]

60c06040526019600b556001600c60006101000a81548160ff021916908315150217905550610e10600d55610708600f556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff0219169083151502179055506001601360006101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060400160405280600a81526020017f546865205a6f64696163000000000000000000000000000000000000000000008152506040518060400160405280600381526020017fe28886000000000000000000000000000000000000000000000000000000000081525081600390805190602001906200012e92919062000b09565b5080600490805190602001906200014792919062000b09565b5050506200016a6200015e620005c960201b60201c565b620005d160201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001968160016200069760201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000216573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023c919062000c23565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002a4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ca919062000c23565b6040518363ffffffff1660e01b8152600401620002e992919062000c66565b6020604051808303816000875af115801562000309573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200032f919062000c23565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200037760a05160016200069760201b60201c565b6200038c60a05160016200078160201b60201c565b600060029050600080600060029050600080600069d3c21bcecceda1000000905069043c33c193756480000060088190555069065a4da25d3016c00000600a81905550612710600582620003e1919062000ccc565b620003ed919062000d5c565b6009819055508660158190555085601681905550846017819055506017546016546015546200041d919062000d94565b62000429919062000d94565b6014819055508360198190555082601a8190555081601b81905550601b54601a5460195462000459919062000d94565b62000465919062000d94565b60188190555073a5cc6915f1e3ff3edb2ac74e8b9b2e8589467540600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073a5cc6915f1e3ff3edb2ac74e8b9b2e8589467540600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000537620005296200082260201b60201c565b60016200084c60201b60201c565b6200054a3060016200084c60201b60201c565b6200055f61dead60016200084c60201b60201c565b62000581620005736200082260201b60201c565b60016200069760201b60201c565b620005943060016200069760201b60201c565b620005a961dead60016200069760201b60201c565b620005bb33826200098660201b60201c565b505050505050505062000fb3565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006a7620005c960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006cd6200082260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000726576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200071d9062000e52565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200085c620005c960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008826200082260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008db576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008d29062000e52565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516200097a919062000e91565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620009f9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009f09062000efe565b60405180910390fd5b62000a0d6000838362000aff60201b60201c565b806002600082825462000a21919062000d94565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a78919062000d94565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000adf919062000f31565b60405180910390a362000afb6000838362000b0460201b60201c565b5050565b505050565b505050565b82805462000b179062000f7d565b90600052602060002090601f01602090048101928262000b3b576000855562000b87565b82601f1062000b5657805160ff191683800117855562000b87565b8280016001018555821562000b87579182015b8281111562000b8657825182559160200191906001019062000b69565b5b50905062000b96919062000b9a565b5090565b5b8082111562000bb557600081600090555060010162000b9b565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000beb8262000bbe565b9050919050565b62000bfd8162000bde565b811462000c0957600080fd5b50565b60008151905062000c1d8162000bf2565b92915050565b60006020828403121562000c3c5762000c3b62000bb9565b5b600062000c4c8482850162000c0c565b91505092915050565b62000c608162000bde565b82525050565b600060408201905062000c7d600083018562000c55565b62000c8c602083018462000c55565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000cd98262000c93565b915062000ce68362000c93565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000d225762000d2162000c9d565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000d698262000c93565b915062000d768362000c93565b92508262000d895762000d8862000d2d565b5b828204905092915050565b600062000da18262000c93565b915062000dae8362000c93565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000de65762000de562000c9d565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000e3a60208362000df1565b915062000e478262000e02565b602082019050919050565b6000602082019050818103600083015262000e6d8162000e2b565b9050919050565b60008115159050919050565b62000e8b8162000e74565b82525050565b600060208201905062000ea8600083018462000e80565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000ee6601f8362000df1565b915062000ef38262000eae565b602082019050919050565b6000602082019050818103600083015262000f198162000ed7565b9050919050565b62000f2b8162000c93565b82525050565b600060208201905062000f48600083018462000f20565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000f9657607f821691505b6020821081141562000fad5762000fac62000f4e565b5b50919050565b60805160a0516158c46200103b600039600081816112de01528181611acd0152818161252f015281816125e60152818161261301528181612cf701528181613dfb01528181613eb40152613ee1015260008181610f9001528181612c9f01528181614057015281816141380152818161415f015281816141fb015261422201526158c46000f3fe6080604052600436106103b15760003560e01c80638a8c523c116101e7578063bbc0c7421161010d578063e2f45605116100a0578063f63743421161006f578063f637434214610e01578063f8b45b0514610e2c578063fe72b27a14610e57578063ff35b41514610e94576103b8565b8063e2f4560514610d57578063e884f26014610d82578063f11a24d314610dad578063f2fde38b14610dd8576103b8565b8063c8c8ebe4116100dc578063c8c8ebe414610c87578063d257b34f14610cb2578063d85ba06314610cef578063dd62ed3e14610d1a576103b8565b8063bbc0c74214610bdf578063c024666814610c0a578063c18bc19514610c33578063c876d0b914610c5c576103b8565b80639ec22c0e11610185578063a9059cbb11610154578063a9059cbb14610b13578063aa49802314610b50578063aacebbe314610b79578063b62496f514610ba2576103b8565b80639ec22c0e14610a555780639fccce3214610a80578063a457c2d714610aab578063a4c82a0014610ae8576103b8565b806392136913116101c157806392136913146109ad578063924de9b7146109d857806395d89b4114610a015780639a7a23d614610a2c576103b8565b80638a8c523c146109405780638da5cb5b146109575780638ea5220f14610982576103b8565b806339509351116102d75780636ddd17131161026a5780637571336a116102395780637571336a1461089857806375f0a874146108c15780637bce5a04146108ec5780638095d56414610917576103b8565b80636ddd1713146107f057806370a082311461081b578063715018a614610858578063730c18881461086f576103b8565b806359e1ee0d116102a657806359e1ee0d146107465780635dfba90014610771578063628768661461079c5780636a486a8e146107c5576103b8565b8063395093511461067657806349bd5a5e146106b35780634a62bb65146106de5780634fbee19314610709576103b8565b8063199ffc721161034f57806327c8f8351161031e57806327c8f835146105ca5780632c3e486c146105f55780632e82f1a014610620578063313ce5671461064b576103b8565b8063199ffc721461050c5780631a8145bb146105375780631f3fed8f1461056257806323b872dd1461058d576103b8565b80631694505e1161038b5780631694505e1461046257806318160ddd1461048d5780631816467f146104b8578063184c16c5146104e1576103b8565b806306fdde03146103bd578063095ea7b3146103e857806310d5de5314610425576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610ebf565b6040516103df919061436a565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a9190614425565b610f51565b60405161041c9190614480565b60405180910390f35b34801561043157600080fd5b5061044c6004803603810190610447919061449b565b610f6f565b6040516104599190614480565b60405180910390f35b34801561046e57600080fd5b50610477610f8e565b6040516104849190614527565b60405180910390f35b34801561049957600080fd5b506104a2610fb2565b6040516104af9190614551565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da919061449b565b610fbc565b005b3480156104ed57600080fd5b506104f66110f8565b6040516105039190614551565b60405180910390f35b34801561051857600080fd5b506105216110fe565b60405161052e9190614551565b60405180910390f35b34801561054357600080fd5b5061054c611104565b6040516105599190614551565b60405180910390f35b34801561056e57600080fd5b5061057761110a565b6040516105849190614551565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af919061456c565b611110565b6040516105c19190614480565b60405180910390f35b3480156105d657600080fd5b506105df611208565b6040516105ec91906145ce565b60405180910390f35b34801561060157600080fd5b5061060a61120e565b6040516106179190614551565b60405180910390f35b34801561062c57600080fd5b50610635611214565b6040516106429190614480565b60405180910390f35b34801561065757600080fd5b50610660611227565b60405161066d9190614605565b60405180910390f35b34801561068257600080fd5b5061069d60048036038101906106989190614425565b611230565b6040516106aa9190614480565b60405180910390f35b3480156106bf57600080fd5b506106c86112dc565b6040516106d591906145ce565b60405180910390f35b3480156106ea57600080fd5b506106f3611300565b6040516107009190614480565b60405180910390f35b34801561071557600080fd5b50610730600480360381019061072b919061449b565b611313565b60405161073d9190614480565b60405180910390f35b34801561075257600080fd5b5061075b611369565b6040516107689190614551565b60405180910390f35b34801561077d57600080fd5b5061078661136f565b6040516107939190614551565b60405180910390f35b3480156107a857600080fd5b506107c360048036038101906107be9190614620565b611375565b005b3480156107d157600080fd5b506107da61142e565b6040516107e79190614551565b60405180910390f35b3480156107fc57600080fd5b50610805611434565b6040516108129190614480565b60405180910390f35b34801561082757600080fd5b50610842600480360381019061083d919061449b565b611447565b60405161084f9190614551565b60405180910390f35b34801561086457600080fd5b5061086d61148f565b005b34801561087b57600080fd5b506108966004803603810190610891919061469f565b611517565b005b3480156108a457600080fd5b506108bf60048036038101906108ba91906146f2565b611657565b005b3480156108cd57600080fd5b506108d661172e565b6040516108e391906145ce565b60405180910390f35b3480156108f857600080fd5b50610901611754565b60405161090e9190614551565b60405180910390f35b34801561092357600080fd5b5061093e60048036038101906109399190614620565b61175a565b005b34801561094c57600080fd5b50610955611813565b005b34801561096357600080fd5b5061096c6118ce565b60405161097991906145ce565b60405180910390f35b34801561098e57600080fd5b506109976118f8565b6040516109a491906145ce565b60405180910390f35b3480156109b957600080fd5b506109c261191e565b6040516109cf9190614551565b60405180910390f35b3480156109e457600080fd5b506109ff60048036038101906109fa9190614732565b611924565b005b348015610a0d57600080fd5b50610a166119bd565b604051610a23919061436a565b60405180910390f35b348015610a3857600080fd5b50610a536004803603810190610a4e91906146f2565b611a4f565b005b348015610a6157600080fd5b50610a6a611b68565b604051610a779190614551565b60405180910390f35b348015610a8c57600080fd5b50610a95611b6e565b604051610aa29190614551565b60405180910390f35b348015610ab757600080fd5b50610ad26004803603810190610acd9190614425565b611b74565b604051610adf9190614480565b60405180910390f35b348015610af457600080fd5b50610afd611c5f565b604051610b0a9190614551565b60405180910390f35b348015610b1f57600080fd5b50610b3a6004803603810190610b359190614425565b611c65565b604051610b479190614480565b60405180910390f35b348015610b5c57600080fd5b50610b776004803603810190610b72919061475f565b611c83565b005b348015610b8557600080fd5b50610ba06004803603810190610b9b919061449b565b611d1c565b005b348015610bae57600080fd5b50610bc96004803603810190610bc4919061449b565b611e58565b604051610bd69190614480565b60405180910390f35b348015610beb57600080fd5b50610bf4611e78565b604051610c019190614480565b60405180910390f35b348015610c1657600080fd5b50610c316004803603810190610c2c91906146f2565b611e8b565b005b348015610c3f57600080fd5b50610c5a6004803603810190610c55919061475f565b611fb0565b005b348015610c6857600080fd5b50610c71612049565b604051610c7e9190614480565b60405180910390f35b348015610c9357600080fd5b50610c9c61205c565b604051610ca99190614551565b60405180910390f35b348015610cbe57600080fd5b50610cd96004803603810190610cd4919061475f565b612062565b604051610ce69190614480565b60405180910390f35b348015610cfb57600080fd5b50610d046121b7565b604051610d119190614551565b60405180910390f35b348015610d2657600080fd5b50610d416004803603810190610d3c919061478c565b6121bd565b604051610d4e9190614551565b60405180910390f35b348015610d6357600080fd5b50610d6c612244565b604051610d799190614551565b60405180910390f35b348015610d8e57600080fd5b50610d9761224a565b604051610da49190614480565b60405180910390f35b348015610db957600080fd5b50610dc26122ea565b604051610dcf9190614551565b60405180910390f35b348015610de457600080fd5b50610dff6004803603810190610dfa919061449b565b6122f0565b005b348015610e0d57600080fd5b50610e166123e8565b604051610e239190614551565b60405180910390f35b348015610e3857600080fd5b50610e416123ee565b604051610e4e9190614551565b60405180910390f35b348015610e6357600080fd5b50610e7e6004803603810190610e79919061475f565b6123f4565b604051610e8b9190614480565b60405180910390f35b348015610ea057600080fd5b50610ea96126cc565b604051610eb69190614480565b60405180910390f35b606060038054610ece906147fb565b80601f0160208091040260200160405190810160405280929190818152602001828054610efa906147fb565b8015610f475780601f10610f1c57610100808354040283529160200191610f47565b820191906000526020600020905b815481529060010190602001808311610f2a57829003601f168201915b5050505050905090565b6000610f65610f5e61276c565b8484612774565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610fc461276c565b73ffffffffffffffffffffffffffffffffffffffff16610fe26118ce565b73ffffffffffffffffffffffffffffffffffffffff1614611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f90614879565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b600061111d84848461293f565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061116861276c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156111e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111df9061490b565b60405180910390fd5b6111fc856111f461276c565b858403612774565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60006112d261123d61276c565b84846001600061124b61276c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112cd919061495a565b612774565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60175481565b601b5481565b61137d61276c565b73ffffffffffffffffffffffffffffffffffffffff1661139b6118ce565b73ffffffffffffffffffffffffffffffffffffffff16146113f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e890614879565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a54601954611419919061495a565b611423919061495a565b601881905550505050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61149761276c565b73ffffffffffffffffffffffffffffffffffffffff166114b56118ce565b73ffffffffffffffffffffffffffffffffffffffff161461150b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150290614879565b60405180910390fd5b61151560006136d7565b565b61151f61276c565b73ffffffffffffffffffffffffffffffffffffffff1661153d6118ce565b73ffffffffffffffffffffffffffffffffffffffff1614611593576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158a90614879565b60405180910390fd5b6102588310156115d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cf90614a22565b60405180910390fd5b6103e882111580156115eb575060008210155b61162a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162190614ab4565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b61165f61276c565b73ffffffffffffffffffffffffffffffffffffffff1661167d6118ce565b73ffffffffffffffffffffffffffffffffffffffff16146116d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ca90614879565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b61176261276c565b73ffffffffffffffffffffffffffffffffffffffff166117806118ce565b73ffffffffffffffffffffffffffffffffffffffff16146117d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cd90614879565b60405180910390fd5b8260158190555081601681905550806017819055506017546016546015546117fe919061495a565b611808919061495a565b601481905550505050565b61181b61276c565b73ffffffffffffffffffffffffffffffffffffffff166118396118ce565b73ffffffffffffffffffffffffffffffffffffffff161461188f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188690614879565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b61192c61276c565b73ffffffffffffffffffffffffffffffffffffffff1661194a6118ce565b73ffffffffffffffffffffffffffffffffffffffff16146119a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199790614879565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b6060600480546119cc906147fb565b80601f01602080910402602001604051908101604052809291908181526020018280546119f8906147fb565b8015611a455780601f10611a1a57610100808354040283529160200191611a45565b820191906000526020600020905b815481529060010190602001808311611a2857829003601f168201915b5050505050905090565b611a5761276c565b73ffffffffffffffffffffffffffffffffffffffff16611a756118ce565b73ffffffffffffffffffffffffffffffffffffffff1614611acb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac290614879565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5190614b46565b60405180910390fd5b611b64828261379d565b5050565b60105481565b601e5481565b60008060016000611b8361276c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611c40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3790614bd8565b60405180910390fd5b611c54611c4b61276c565b85858403612774565b600191505092915050565b600e5481565b6000611c79611c7261276c565b848461293f565b6001905092915050565b611c8b61276c565b73ffffffffffffffffffffffffffffffffffffffff16611ca96118ce565b73ffffffffffffffffffffffffffffffffffffffff1614611cff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf690614879565b60405180910390fd5b670de0b6b3a764000081611d139190614bf8565b60088190555050565b611d2461276c565b73ffffffffffffffffffffffffffffffffffffffff16611d426118ce565b73ffffffffffffffffffffffffffffffffffffffff1614611d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8f90614879565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611e9361276c565b73ffffffffffffffffffffffffffffffffffffffff16611eb16118ce565b73ffffffffffffffffffffffffffffffffffffffff1614611f07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efe90614879565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611fa49190614480565b60405180910390a25050565b611fb861276c565b73ffffffffffffffffffffffffffffffffffffffff16611fd66118ce565b73ffffffffffffffffffffffffffffffffffffffff161461202c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202390614879565b60405180910390fd5b670de0b6b3a7640000816120409190614bf8565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b600061206c61276c565b73ffffffffffffffffffffffffffffffffffffffff1661208a6118ce565b73ffffffffffffffffffffffffffffffffffffffff16146120e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d790614879565b60405180910390fd5b620186a060016120ee610fb2565b6120f89190614bf8565b6121029190614c81565b821015612144576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213b90614d24565b60405180910390fd5b6103e86005612151610fb2565b61215b9190614bf8565b6121659190614c81565b8211156121a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219e90614db6565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061225461276c565b73ffffffffffffffffffffffffffffffffffffffff166122726118ce565b73ffffffffffffffffffffffffffffffffffffffff16146122c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bf90614879565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b6122f861276c565b73ffffffffffffffffffffffffffffffffffffffff166123166118ce565b73ffffffffffffffffffffffffffffffffffffffff161461236c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236390614879565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d390614e48565b60405180910390fd5b6123e5816136d7565b50565b601a5481565b600a5481565b60006123fe61276c565b73ffffffffffffffffffffffffffffffffffffffff1661241c6118ce565b73ffffffffffffffffffffffffffffffffffffffff1614612472576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246990614879565b60405180910390fd5b600f54601054612482919061495a565b42116124c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ba90614eb4565b60405180910390fd5b6103e8821115612508576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ff90614f46565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b815260040161256a91906145ce565b602060405180830381865afa158015612587573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125ab9190614f7b565b905060006125d66127106125c8868561383e90919063ffffffff16565b61385490919063ffffffff16565b9050600081111561260f5761260e7f000000000000000000000000000000000000000000000000000000000000000061dead8361386a565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561267c57600080fd5b505af1158015612690573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b60006126d661276c565b73ffffffffffffffffffffffffffffffffffffffff166126f46118ce565b73ffffffffffffffffffffffffffffffffffffffff161461274a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274190614879565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127db9061501a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284b906150ac565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516129329190614551565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a69061513e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a16906151d0565b60405180910390fd5b6000811415612a3957612a348383600061386a565b6136d2565b601160009054906101000a900460ff16156130fc57612a566118ce565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612ac45750612a946118ce565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612afd5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b37575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b505750600560149054906101000a900460ff16155b156130fb57601160019054906101000a900460ff16612c4a57601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612c0a5750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c409061523c565b60405180910390fd5b5b601360009054906101000a900460ff1615612e1257612c676118ce565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612cee57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d4657507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612e115743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612dcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc3906152f4565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612eb55750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f5c57600854811115612eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ef690615386565b60405180910390fd5b600a54612f0b83611447565b82612f16919061495a565b1115612f57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4e906153f2565b60405180910390fd5b6130fa565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612fff5750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561304e57600854811115613049576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161304090615484565b60405180910390fd5b6130f9565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166130f857600a546130ab83611447565b826130b6919061495a565b11156130f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130ee906153f2565b60405180910390fd5b5b5b5b5b5b600061310730611447565b90506000600954821015905080801561312c5750601160029054906101000a900460ff165b80156131455750600560149054906101000a900460ff16155b801561319b5750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156131f15750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156132475750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561328b576001600560146101000a81548160ff02191690831515021790555061326f613aeb565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156132f15750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156133095750600c60009054906101000a900460ff165b80156133245750600d54600e54613320919061495a565b4210155b801561337a5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561338957613387613dd2565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061343f5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561344957600090505b600081156136c257602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156134ac57506000601854115b15613579576134d960646134cb6018548861383e90919063ffffffff16565b61385490919063ffffffff16565b9050601854601a54826134ec9190614bf8565b6134f69190614c81565b601d6000828254613507919061495a565b92505081905550601854601b548261351f9190614bf8565b6135299190614c81565b601e600082825461353a919061495a565b92505081905550601854601954826135529190614bf8565b61355c9190614c81565b601c600082825461356d919061495a565b9250508190555061369e565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156135d457506000601454115b1561369d5761360160646135f36014548861383e90919063ffffffff16565b61385490919063ffffffff16565b9050601454601654826136149190614bf8565b61361e9190614c81565b601d600082825461362f919061495a565b92505081905550601454601754826136479190614bf8565b6136519190614c81565b601e6000828254613662919061495a565b925050819055506014546015548261367a9190614bf8565b6136849190614c81565b601c6000828254613695919061495a565b925050819055505b5b60008111156136b3576136b287308361386a565b5b80856136bf91906154a4565b94505b6136cd87878761386a565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000818361384c9190614bf8565b905092915050565b600081836138629190614c81565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156138da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138d19061513e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561394a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613941906151d0565b60405180910390fd5b613955838383613f98565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156139db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139d29061554a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613a6e919061495a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613ad29190614551565b60405180910390a3613ae5848484613f9d565b50505050565b6000613af630611447565b90506000601e54601c54601d54613b0d919061495a565b613b17919061495a565b9050600080831480613b295750600082145b15613b3657505050613dd0565b6014600954613b459190614bf8565b831115613b5e576014600954613b5b9190614bf8565b92505b6000600283601d5486613b719190614bf8565b613b7b9190614c81565b613b859190614c81565b90506000613b9c8286613fa290919063ffffffff16565b90506000479050613bac82613fb8565b6000613bc18247613fa290919063ffffffff16565b90506000613bec87613bde601c548561383e90919063ffffffff16565b61385490919063ffffffff16565b90506000613c1788613c09601e548661383e90919063ffffffff16565b61385490919063ffffffff16565b90506000818385613c2891906154a4565b613c3291906154a4565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613c929061559b565b60006040518083038185875af1925050503d8060008114613ccf576040519150601f19603f3d011682016040523d82523d6000602084013e613cd4565b606091505b505080985050600087118015613cea5750600081115b15613d3757613cf987826141f5565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613d2e939291906155b0565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613d7d9061559b565b60006040518083038185875af1925050503d8060008114613dba576040519150601f19603f3d011682016040523d82523d6000602084013e613dbf565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b8152600401613e3691906145ce565b602060405180830381865afa158015613e53573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e779190614f7b565b90506000613ea4612710613e96600b548561383e90919063ffffffff16565b61385490919063ffffffff16565b90506000811115613edd57613edc7f000000000000000000000000000000000000000000000000000000000000000061dead8361386a565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613f4a57600080fd5b505af1158015613f5e573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b60008183613fb091906154a4565b905092915050565b6000600267ffffffffffffffff811115613fd557613fd46155e7565b5b6040519080825280602002602001820160405280156140035781602001602082028036833780820191505090505b509050308160008151811061401b5761401a615616565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156140c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906140e4919061565a565b816001815181106140f8576140f7615616565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061415d307f000000000000000000000000000000000000000000000000000000000000000084612774565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016141bf959493929190615780565b600060405180830381600087803b1580156141d957600080fd5b505af11580156141ed573d6000803e3d6000fd5b505050505050565b614220307f000000000000000000000000000000000000000000000000000000000000000084612774565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401614287969594939291906157da565b60606040518083038185885af11580156142a5573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906142ca919061583b565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561430b5780820151818401526020810190506142f0565b8381111561431a576000848401525b50505050565b6000601f19601f8301169050919050565b600061433c826142d1565b61434681856142dc565b93506143568185602086016142ed565b61435f81614320565b840191505092915050565b600060208201905081810360008301526143848184614331565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006143bc82614391565b9050919050565b6143cc816143b1565b81146143d757600080fd5b50565b6000813590506143e9816143c3565b92915050565b6000819050919050565b614402816143ef565b811461440d57600080fd5b50565b60008135905061441f816143f9565b92915050565b6000806040838503121561443c5761443b61438c565b5b600061444a858286016143da565b925050602061445b85828601614410565b9150509250929050565b60008115159050919050565b61447a81614465565b82525050565b60006020820190506144956000830184614471565b92915050565b6000602082840312156144b1576144b061438c565b5b60006144bf848285016143da565b91505092915050565b6000819050919050565b60006144ed6144e86144e384614391565b6144c8565b614391565b9050919050565b60006144ff826144d2565b9050919050565b6000614511826144f4565b9050919050565b61452181614506565b82525050565b600060208201905061453c6000830184614518565b92915050565b61454b816143ef565b82525050565b60006020820190506145666000830184614542565b92915050565b6000806000606084860312156145855761458461438c565b5b6000614593868287016143da565b93505060206145a4868287016143da565b92505060406145b586828701614410565b9150509250925092565b6145c8816143b1565b82525050565b60006020820190506145e360008301846145bf565b92915050565b600060ff82169050919050565b6145ff816145e9565b82525050565b600060208201905061461a60008301846145f6565b92915050565b6000806000606084860312156146395761463861438c565b5b600061464786828701614410565b935050602061465886828701614410565b925050604061466986828701614410565b9150509250925092565b61467c81614465565b811461468757600080fd5b50565b60008135905061469981614673565b92915050565b6000806000606084860312156146b8576146b761438c565b5b60006146c686828701614410565b93505060206146d786828701614410565b92505060406146e88682870161468a565b9150509250925092565b600080604083850312156147095761470861438c565b5b6000614717858286016143da565b92505060206147288582860161468a565b9150509250929050565b6000602082840312156147485761474761438c565b5b60006147568482850161468a565b91505092915050565b6000602082840312156147755761477461438c565b5b600061478384828501614410565b91505092915050565b600080604083850312156147a3576147a261438c565b5b60006147b1858286016143da565b92505060206147c2858286016143da565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061481357607f821691505b60208210811415614827576148266147cc565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006148636020836142dc565b915061486e8261482d565b602082019050919050565b6000602082019050818103600083015261489281614856565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006148f56028836142dc565b915061490082614899565b604082019050919050565b60006020820190508181036000830152614924816148e8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614965826143ef565b9150614970836143ef565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156149a5576149a461492b565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614a0c6033836142dc565b9150614a17826149b0565b604082019050919050565b60006020820190508181036000830152614a3b816149ff565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614a9e6030836142dc565b9150614aa982614a42565b604082019050919050565b60006020820190508181036000830152614acd81614a91565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614b306039836142dc565b9150614b3b82614ad4565b604082019050919050565b60006020820190508181036000830152614b5f81614b23565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614bc26025836142dc565b9150614bcd82614b66565b604082019050919050565b60006020820190508181036000830152614bf181614bb5565b9050919050565b6000614c03826143ef565b9150614c0e836143ef565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614c4757614c4661492b565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614c8c826143ef565b9150614c97836143ef565b925082614ca757614ca6614c52565b5b828204905092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614d0e6035836142dc565b9150614d1982614cb2565b604082019050919050565b60006020820190508181036000830152614d3d81614d01565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614da06034836142dc565b9150614dab82614d44565b604082019050919050565b60006020820190508181036000830152614dcf81614d93565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614e326026836142dc565b9150614e3d82614dd6565b604082019050919050565b60006020820190508181036000830152614e6181614e25565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b6000614e9e6020836142dc565b9150614ea982614e68565b602082019050919050565b60006020820190508181036000830152614ecd81614e91565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000614f30602a836142dc565b9150614f3b82614ed4565b604082019050919050565b60006020820190508181036000830152614f5f81614f23565b9050919050565b600081519050614f75816143f9565b92915050565b600060208284031215614f9157614f9061438c565b5b6000614f9f84828501614f66565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006150046024836142dc565b915061500f82614fa8565b604082019050919050565b6000602082019050818103600083015261503381614ff7565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006150966022836142dc565b91506150a18261503a565b604082019050919050565b600060208201905081810360008301526150c581615089565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006151286025836142dc565b9150615133826150cc565b604082019050919050565b600060208201905081810360008301526151578161511b565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006151ba6023836142dc565b91506151c58261515e565b604082019050919050565b600060208201905081810360008301526151e9816151ad565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006152266016836142dc565b9150615231826151f0565b602082019050919050565b6000602082019050818103600083015261525581615219565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006152de6049836142dc565b91506152e98261525c565b606082019050919050565b6000602082019050818103600083015261530d816152d1565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006153706035836142dc565b915061537b82615314565b604082019050919050565b6000602082019050818103600083015261539f81615363565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006153dc6013836142dc565b91506153e7826153a6565b602082019050919050565b6000602082019050818103600083015261540b816153cf565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b600061546e6036836142dc565b915061547982615412565b604082019050919050565b6000602082019050818103600083015261549d81615461565b9050919050565b60006154af826143ef565b91506154ba836143ef565b9250828210156154cd576154cc61492b565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006155346026836142dc565b915061553f826154d8565b604082019050919050565b6000602082019050818103600083015261556381615527565b9050919050565b600081905092915050565b50565b600061558560008361556a565b915061559082615575565b600082019050919050565b60006155a682615578565b9150819050919050565b60006060820190506155c56000830186614542565b6155d26020830185614542565b6155df6040830184614542565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050615654816143c3565b92915050565b6000602082840312156156705761566f61438c565b5b600061567e84828501615645565b91505092915050565b6000819050919050565b60006156ac6156a76156a284615687565b6144c8565b6143ef565b9050919050565b6156bc81615691565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6156f7816143b1565b82525050565b600061570983836156ee565b60208301905092915050565b6000602082019050919050565b600061572d826156c2565b61573781856156cd565b9350615742836156de565b8060005b8381101561577357815161575a88826156fd565b975061576583615715565b925050600181019050615746565b5085935050505092915050565b600060a0820190506157956000830188614542565b6157a260208301876156b3565b81810360408301526157b48186615722565b90506157c360608301856145bf565b6157d06080830184614542565b9695505050505050565b600060c0820190506157ef60008301896145bf565b6157fc6020830188614542565b61580960408301876156b3565b61581660608301866156b3565b61582360808301856145bf565b61583060a0830184614542565b979650505050505050565b6000806000606084860312156158545761585361438c565b5b600061586286828701614f66565b935050602061587386828701614f66565b925050604061588486828701614f66565b915050925092509256fea2646970667358221220ef4fc4e50fca98543891bbfd6cd67a5970e6466cce92caa943285fb9133cb21464736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106103b15760003560e01c80638a8c523c116101e7578063bbc0c7421161010d578063e2f45605116100a0578063f63743421161006f578063f637434214610e01578063f8b45b0514610e2c578063fe72b27a14610e57578063ff35b41514610e94576103b8565b8063e2f4560514610d57578063e884f26014610d82578063f11a24d314610dad578063f2fde38b14610dd8576103b8565b8063c8c8ebe4116100dc578063c8c8ebe414610c87578063d257b34f14610cb2578063d85ba06314610cef578063dd62ed3e14610d1a576103b8565b8063bbc0c74214610bdf578063c024666814610c0a578063c18bc19514610c33578063c876d0b914610c5c576103b8565b80639ec22c0e11610185578063a9059cbb11610154578063a9059cbb14610b13578063aa49802314610b50578063aacebbe314610b79578063b62496f514610ba2576103b8565b80639ec22c0e14610a555780639fccce3214610a80578063a457c2d714610aab578063a4c82a0014610ae8576103b8565b806392136913116101c157806392136913146109ad578063924de9b7146109d857806395d89b4114610a015780639a7a23d614610a2c576103b8565b80638a8c523c146109405780638da5cb5b146109575780638ea5220f14610982576103b8565b806339509351116102d75780636ddd17131161026a5780637571336a116102395780637571336a1461089857806375f0a874146108c15780637bce5a04146108ec5780638095d56414610917576103b8565b80636ddd1713146107f057806370a082311461081b578063715018a614610858578063730c18881461086f576103b8565b806359e1ee0d116102a657806359e1ee0d146107465780635dfba90014610771578063628768661461079c5780636a486a8e146107c5576103b8565b8063395093511461067657806349bd5a5e146106b35780634a62bb65146106de5780634fbee19314610709576103b8565b8063199ffc721161034f57806327c8f8351161031e57806327c8f835146105ca5780632c3e486c146105f55780632e82f1a014610620578063313ce5671461064b576103b8565b8063199ffc721461050c5780631a8145bb146105375780631f3fed8f1461056257806323b872dd1461058d576103b8565b80631694505e1161038b5780631694505e1461046257806318160ddd1461048d5780631816467f146104b8578063184c16c5146104e1576103b8565b806306fdde03146103bd578063095ea7b3146103e857806310d5de5314610425576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610ebf565b6040516103df919061436a565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a9190614425565b610f51565b60405161041c9190614480565b60405180910390f35b34801561043157600080fd5b5061044c6004803603810190610447919061449b565b610f6f565b6040516104599190614480565b60405180910390f35b34801561046e57600080fd5b50610477610f8e565b6040516104849190614527565b60405180910390f35b34801561049957600080fd5b506104a2610fb2565b6040516104af9190614551565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da919061449b565b610fbc565b005b3480156104ed57600080fd5b506104f66110f8565b6040516105039190614551565b60405180910390f35b34801561051857600080fd5b506105216110fe565b60405161052e9190614551565b60405180910390f35b34801561054357600080fd5b5061054c611104565b6040516105599190614551565b60405180910390f35b34801561056e57600080fd5b5061057761110a565b6040516105849190614551565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af919061456c565b611110565b6040516105c19190614480565b60405180910390f35b3480156105d657600080fd5b506105df611208565b6040516105ec91906145ce565b60405180910390f35b34801561060157600080fd5b5061060a61120e565b6040516106179190614551565b60405180910390f35b34801561062c57600080fd5b50610635611214565b6040516106429190614480565b60405180910390f35b34801561065757600080fd5b50610660611227565b60405161066d9190614605565b60405180910390f35b34801561068257600080fd5b5061069d60048036038101906106989190614425565b611230565b6040516106aa9190614480565b60405180910390f35b3480156106bf57600080fd5b506106c86112dc565b6040516106d591906145ce565b60405180910390f35b3480156106ea57600080fd5b506106f3611300565b6040516107009190614480565b60405180910390f35b34801561071557600080fd5b50610730600480360381019061072b919061449b565b611313565b60405161073d9190614480565b60405180910390f35b34801561075257600080fd5b5061075b611369565b6040516107689190614551565b60405180910390f35b34801561077d57600080fd5b5061078661136f565b6040516107939190614551565b60405180910390f35b3480156107a857600080fd5b506107c360048036038101906107be9190614620565b611375565b005b3480156107d157600080fd5b506107da61142e565b6040516107e79190614551565b60405180910390f35b3480156107fc57600080fd5b50610805611434565b6040516108129190614480565b60405180910390f35b34801561082757600080fd5b50610842600480360381019061083d919061449b565b611447565b60405161084f9190614551565b60405180910390f35b34801561086457600080fd5b5061086d61148f565b005b34801561087b57600080fd5b506108966004803603810190610891919061469f565b611517565b005b3480156108a457600080fd5b506108bf60048036038101906108ba91906146f2565b611657565b005b3480156108cd57600080fd5b506108d661172e565b6040516108e391906145ce565b60405180910390f35b3480156108f857600080fd5b50610901611754565b60405161090e9190614551565b60405180910390f35b34801561092357600080fd5b5061093e60048036038101906109399190614620565b61175a565b005b34801561094c57600080fd5b50610955611813565b005b34801561096357600080fd5b5061096c6118ce565b60405161097991906145ce565b60405180910390f35b34801561098e57600080fd5b506109976118f8565b6040516109a491906145ce565b60405180910390f35b3480156109b957600080fd5b506109c261191e565b6040516109cf9190614551565b60405180910390f35b3480156109e457600080fd5b506109ff60048036038101906109fa9190614732565b611924565b005b348015610a0d57600080fd5b50610a166119bd565b604051610a23919061436a565b60405180910390f35b348015610a3857600080fd5b50610a536004803603810190610a4e91906146f2565b611a4f565b005b348015610a6157600080fd5b50610a6a611b68565b604051610a779190614551565b60405180910390f35b348015610a8c57600080fd5b50610a95611b6e565b604051610aa29190614551565b60405180910390f35b348015610ab757600080fd5b50610ad26004803603810190610acd9190614425565b611b74565b604051610adf9190614480565b60405180910390f35b348015610af457600080fd5b50610afd611c5f565b604051610b0a9190614551565b60405180910390f35b348015610b1f57600080fd5b50610b3a6004803603810190610b359190614425565b611c65565b604051610b479190614480565b60405180910390f35b348015610b5c57600080fd5b50610b776004803603810190610b72919061475f565b611c83565b005b348015610b8557600080fd5b50610ba06004803603810190610b9b919061449b565b611d1c565b005b348015610bae57600080fd5b50610bc96004803603810190610bc4919061449b565b611e58565b604051610bd69190614480565b60405180910390f35b348015610beb57600080fd5b50610bf4611e78565b604051610c019190614480565b60405180910390f35b348015610c1657600080fd5b50610c316004803603810190610c2c91906146f2565b611e8b565b005b348015610c3f57600080fd5b50610c5a6004803603810190610c55919061475f565b611fb0565b005b348015610c6857600080fd5b50610c71612049565b604051610c7e9190614480565b60405180910390f35b348015610c9357600080fd5b50610c9c61205c565b604051610ca99190614551565b60405180910390f35b348015610cbe57600080fd5b50610cd96004803603810190610cd4919061475f565b612062565b604051610ce69190614480565b60405180910390f35b348015610cfb57600080fd5b50610d046121b7565b604051610d119190614551565b60405180910390f35b348015610d2657600080fd5b50610d416004803603810190610d3c919061478c565b6121bd565b604051610d4e9190614551565b60405180910390f35b348015610d6357600080fd5b50610d6c612244565b604051610d799190614551565b60405180910390f35b348015610d8e57600080fd5b50610d9761224a565b604051610da49190614480565b60405180910390f35b348015610db957600080fd5b50610dc26122ea565b604051610dcf9190614551565b60405180910390f35b348015610de457600080fd5b50610dff6004803603810190610dfa919061449b565b6122f0565b005b348015610e0d57600080fd5b50610e166123e8565b604051610e239190614551565b60405180910390f35b348015610e3857600080fd5b50610e416123ee565b604051610e4e9190614551565b60405180910390f35b348015610e6357600080fd5b50610e7e6004803603810190610e79919061475f565b6123f4565b604051610e8b9190614480565b60405180910390f35b348015610ea057600080fd5b50610ea96126cc565b604051610eb69190614480565b60405180910390f35b606060038054610ece906147fb565b80601f0160208091040260200160405190810160405280929190818152602001828054610efa906147fb565b8015610f475780601f10610f1c57610100808354040283529160200191610f47565b820191906000526020600020905b815481529060010190602001808311610f2a57829003601f168201915b5050505050905090565b6000610f65610f5e61276c565b8484612774565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610fc461276c565b73ffffffffffffffffffffffffffffffffffffffff16610fe26118ce565b73ffffffffffffffffffffffffffffffffffffffff1614611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f90614879565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b600061111d84848461293f565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061116861276c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156111e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111df9061490b565b60405180910390fd5b6111fc856111f461276c565b858403612774565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60006112d261123d61276c565b84846001600061124b61276c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112cd919061495a565b612774565b6001905092915050565b7f0000000000000000000000003b59827a1d08dbfefff1e463c389856245d9172b81565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60175481565b601b5481565b61137d61276c565b73ffffffffffffffffffffffffffffffffffffffff1661139b6118ce565b73ffffffffffffffffffffffffffffffffffffffff16146113f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e890614879565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a54601954611419919061495a565b611423919061495a565b601881905550505050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61149761276c565b73ffffffffffffffffffffffffffffffffffffffff166114b56118ce565b73ffffffffffffffffffffffffffffffffffffffff161461150b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150290614879565b60405180910390fd5b61151560006136d7565b565b61151f61276c565b73ffffffffffffffffffffffffffffffffffffffff1661153d6118ce565b73ffffffffffffffffffffffffffffffffffffffff1614611593576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158a90614879565b60405180910390fd5b6102588310156115d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cf90614a22565b60405180910390fd5b6103e882111580156115eb575060008210155b61162a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162190614ab4565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b61165f61276c565b73ffffffffffffffffffffffffffffffffffffffff1661167d6118ce565b73ffffffffffffffffffffffffffffffffffffffff16146116d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ca90614879565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b61176261276c565b73ffffffffffffffffffffffffffffffffffffffff166117806118ce565b73ffffffffffffffffffffffffffffffffffffffff16146117d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cd90614879565b60405180910390fd5b8260158190555081601681905550806017819055506017546016546015546117fe919061495a565b611808919061495a565b601481905550505050565b61181b61276c565b73ffffffffffffffffffffffffffffffffffffffff166118396118ce565b73ffffffffffffffffffffffffffffffffffffffff161461188f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188690614879565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b61192c61276c565b73ffffffffffffffffffffffffffffffffffffffff1661194a6118ce565b73ffffffffffffffffffffffffffffffffffffffff16146119a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199790614879565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b6060600480546119cc906147fb565b80601f01602080910402602001604051908101604052809291908181526020018280546119f8906147fb565b8015611a455780601f10611a1a57610100808354040283529160200191611a45565b820191906000526020600020905b815481529060010190602001808311611a2857829003601f168201915b5050505050905090565b611a5761276c565b73ffffffffffffffffffffffffffffffffffffffff16611a756118ce565b73ffffffffffffffffffffffffffffffffffffffff1614611acb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac290614879565b60405180910390fd5b7f0000000000000000000000003b59827a1d08dbfefff1e463c389856245d9172b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5190614b46565b60405180910390fd5b611b64828261379d565b5050565b60105481565b601e5481565b60008060016000611b8361276c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611c40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3790614bd8565b60405180910390fd5b611c54611c4b61276c565b85858403612774565b600191505092915050565b600e5481565b6000611c79611c7261276c565b848461293f565b6001905092915050565b611c8b61276c565b73ffffffffffffffffffffffffffffffffffffffff16611ca96118ce565b73ffffffffffffffffffffffffffffffffffffffff1614611cff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf690614879565b60405180910390fd5b670de0b6b3a764000081611d139190614bf8565b60088190555050565b611d2461276c565b73ffffffffffffffffffffffffffffffffffffffff16611d426118ce565b73ffffffffffffffffffffffffffffffffffffffff1614611d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8f90614879565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611e9361276c565b73ffffffffffffffffffffffffffffffffffffffff16611eb16118ce565b73ffffffffffffffffffffffffffffffffffffffff1614611f07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efe90614879565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611fa49190614480565b60405180910390a25050565b611fb861276c565b73ffffffffffffffffffffffffffffffffffffffff16611fd66118ce565b73ffffffffffffffffffffffffffffffffffffffff161461202c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202390614879565b60405180910390fd5b670de0b6b3a7640000816120409190614bf8565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b600061206c61276c565b73ffffffffffffffffffffffffffffffffffffffff1661208a6118ce565b73ffffffffffffffffffffffffffffffffffffffff16146120e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d790614879565b60405180910390fd5b620186a060016120ee610fb2565b6120f89190614bf8565b6121029190614c81565b821015612144576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213b90614d24565b60405180910390fd5b6103e86005612151610fb2565b61215b9190614bf8565b6121659190614c81565b8211156121a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219e90614db6565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061225461276c565b73ffffffffffffffffffffffffffffffffffffffff166122726118ce565b73ffffffffffffffffffffffffffffffffffffffff16146122c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bf90614879565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b6122f861276c565b73ffffffffffffffffffffffffffffffffffffffff166123166118ce565b73ffffffffffffffffffffffffffffffffffffffff161461236c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236390614879565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d390614e48565b60405180910390fd5b6123e5816136d7565b50565b601a5481565b600a5481565b60006123fe61276c565b73ffffffffffffffffffffffffffffffffffffffff1661241c6118ce565b73ffffffffffffffffffffffffffffffffffffffff1614612472576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246990614879565b60405180910390fd5b600f54601054612482919061495a565b42116124c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ba90614eb4565b60405180910390fd5b6103e8821115612508576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ff90614f46565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f0000000000000000000000003b59827a1d08dbfefff1e463c389856245d9172b6040518263ffffffff1660e01b815260040161256a91906145ce565b602060405180830381865afa158015612587573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125ab9190614f7b565b905060006125d66127106125c8868561383e90919063ffffffff16565b61385490919063ffffffff16565b9050600081111561260f5761260e7f0000000000000000000000003b59827a1d08dbfefff1e463c389856245d9172b61dead8361386a565b5b60007f0000000000000000000000003b59827a1d08dbfefff1e463c389856245d9172b90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561267c57600080fd5b505af1158015612690573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b60006126d661276c565b73ffffffffffffffffffffffffffffffffffffffff166126f46118ce565b73ffffffffffffffffffffffffffffffffffffffff161461274a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274190614879565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127db9061501a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284b906150ac565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516129329190614551565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a69061513e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a16906151d0565b60405180910390fd5b6000811415612a3957612a348383600061386a565b6136d2565b601160009054906101000a900460ff16156130fc57612a566118ce565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612ac45750612a946118ce565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612afd5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b37575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b505750600560149054906101000a900460ff16155b156130fb57601160019054906101000a900460ff16612c4a57601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612c0a5750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c409061523c565b60405180910390fd5b5b601360009054906101000a900460ff1615612e1257612c676118ce565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612cee57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d4657507f0000000000000000000000003b59827a1d08dbfefff1e463c389856245d9172b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612e115743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612dcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc3906152f4565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612eb55750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f5c57600854811115612eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ef690615386565b60405180910390fd5b600a54612f0b83611447565b82612f16919061495a565b1115612f57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4e906153f2565b60405180910390fd5b6130fa565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612fff5750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561304e57600854811115613049576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161304090615484565b60405180910390fd5b6130f9565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166130f857600a546130ab83611447565b826130b6919061495a565b11156130f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130ee906153f2565b60405180910390fd5b5b5b5b5b5b600061310730611447565b90506000600954821015905080801561312c5750601160029054906101000a900460ff165b80156131455750600560149054906101000a900460ff16155b801561319b5750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156131f15750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156132475750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561328b576001600560146101000a81548160ff02191690831515021790555061326f613aeb565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156132f15750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156133095750600c60009054906101000a900460ff165b80156133245750600d54600e54613320919061495a565b4210155b801561337a5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561338957613387613dd2565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061343f5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561344957600090505b600081156136c257602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156134ac57506000601854115b15613579576134d960646134cb6018548861383e90919063ffffffff16565b61385490919063ffffffff16565b9050601854601a54826134ec9190614bf8565b6134f69190614c81565b601d6000828254613507919061495a565b92505081905550601854601b548261351f9190614bf8565b6135299190614c81565b601e600082825461353a919061495a565b92505081905550601854601954826135529190614bf8565b61355c9190614c81565b601c600082825461356d919061495a565b9250508190555061369e565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156135d457506000601454115b1561369d5761360160646135f36014548861383e90919063ffffffff16565b61385490919063ffffffff16565b9050601454601654826136149190614bf8565b61361e9190614c81565b601d600082825461362f919061495a565b92505081905550601454601754826136479190614bf8565b6136519190614c81565b601e6000828254613662919061495a565b925050819055506014546015548261367a9190614bf8565b6136849190614c81565b601c6000828254613695919061495a565b925050819055505b5b60008111156136b3576136b287308361386a565b5b80856136bf91906154a4565b94505b6136cd87878761386a565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000818361384c9190614bf8565b905092915050565b600081836138629190614c81565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156138da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138d19061513e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561394a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613941906151d0565b60405180910390fd5b613955838383613f98565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156139db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139d29061554a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613a6e919061495a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613ad29190614551565b60405180910390a3613ae5848484613f9d565b50505050565b6000613af630611447565b90506000601e54601c54601d54613b0d919061495a565b613b17919061495a565b9050600080831480613b295750600082145b15613b3657505050613dd0565b6014600954613b459190614bf8565b831115613b5e576014600954613b5b9190614bf8565b92505b6000600283601d5486613b719190614bf8565b613b7b9190614c81565b613b859190614c81565b90506000613b9c8286613fa290919063ffffffff16565b90506000479050613bac82613fb8565b6000613bc18247613fa290919063ffffffff16565b90506000613bec87613bde601c548561383e90919063ffffffff16565b61385490919063ffffffff16565b90506000613c1788613c09601e548661383e90919063ffffffff16565b61385490919063ffffffff16565b90506000818385613c2891906154a4565b613c3291906154a4565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613c929061559b565b60006040518083038185875af1925050503d8060008114613ccf576040519150601f19603f3d011682016040523d82523d6000602084013e613cd4565b606091505b505080985050600087118015613cea5750600081115b15613d3757613cf987826141f5565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613d2e939291906155b0565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613d7d9061559b565b60006040518083038185875af1925050503d8060008114613dba576040519150601f19603f3d011682016040523d82523d6000602084013e613dbf565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f0000000000000000000000003b59827a1d08dbfefff1e463c389856245d9172b6040518263ffffffff1660e01b8152600401613e3691906145ce565b602060405180830381865afa158015613e53573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e779190614f7b565b90506000613ea4612710613e96600b548561383e90919063ffffffff16565b61385490919063ffffffff16565b90506000811115613edd57613edc7f0000000000000000000000003b59827a1d08dbfefff1e463c389856245d9172b61dead8361386a565b5b60007f0000000000000000000000003b59827a1d08dbfefff1e463c389856245d9172b90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613f4a57600080fd5b505af1158015613f5e573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b60008183613fb091906154a4565b905092915050565b6000600267ffffffffffffffff811115613fd557613fd46155e7565b5b6040519080825280602002602001820160405280156140035781602001602082028036833780820191505090505b509050308160008151811061401b5761401a615616565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156140c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906140e4919061565a565b816001815181106140f8576140f7615616565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061415d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612774565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016141bf959493929190615780565b600060405180830381600087803b1580156141d957600080fd5b505af11580156141ed573d6000803e3d6000fd5b505050505050565b614220307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612774565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401614287969594939291906157da565b60606040518083038185885af11580156142a5573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906142ca919061583b565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561430b5780820151818401526020810190506142f0565b8381111561431a576000848401525b50505050565b6000601f19601f8301169050919050565b600061433c826142d1565b61434681856142dc565b93506143568185602086016142ed565b61435f81614320565b840191505092915050565b600060208201905081810360008301526143848184614331565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006143bc82614391565b9050919050565b6143cc816143b1565b81146143d757600080fd5b50565b6000813590506143e9816143c3565b92915050565b6000819050919050565b614402816143ef565b811461440d57600080fd5b50565b60008135905061441f816143f9565b92915050565b6000806040838503121561443c5761443b61438c565b5b600061444a858286016143da565b925050602061445b85828601614410565b9150509250929050565b60008115159050919050565b61447a81614465565b82525050565b60006020820190506144956000830184614471565b92915050565b6000602082840312156144b1576144b061438c565b5b60006144bf848285016143da565b91505092915050565b6000819050919050565b60006144ed6144e86144e384614391565b6144c8565b614391565b9050919050565b60006144ff826144d2565b9050919050565b6000614511826144f4565b9050919050565b61452181614506565b82525050565b600060208201905061453c6000830184614518565b92915050565b61454b816143ef565b82525050565b60006020820190506145666000830184614542565b92915050565b6000806000606084860312156145855761458461438c565b5b6000614593868287016143da565b93505060206145a4868287016143da565b92505060406145b586828701614410565b9150509250925092565b6145c8816143b1565b82525050565b60006020820190506145e360008301846145bf565b92915050565b600060ff82169050919050565b6145ff816145e9565b82525050565b600060208201905061461a60008301846145f6565b92915050565b6000806000606084860312156146395761463861438c565b5b600061464786828701614410565b935050602061465886828701614410565b925050604061466986828701614410565b9150509250925092565b61467c81614465565b811461468757600080fd5b50565b60008135905061469981614673565b92915050565b6000806000606084860312156146b8576146b761438c565b5b60006146c686828701614410565b93505060206146d786828701614410565b92505060406146e88682870161468a565b9150509250925092565b600080604083850312156147095761470861438c565b5b6000614717858286016143da565b92505060206147288582860161468a565b9150509250929050565b6000602082840312156147485761474761438c565b5b60006147568482850161468a565b91505092915050565b6000602082840312156147755761477461438c565b5b600061478384828501614410565b91505092915050565b600080604083850312156147a3576147a261438c565b5b60006147b1858286016143da565b92505060206147c2858286016143da565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061481357607f821691505b60208210811415614827576148266147cc565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006148636020836142dc565b915061486e8261482d565b602082019050919050565b6000602082019050818103600083015261489281614856565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006148f56028836142dc565b915061490082614899565b604082019050919050565b60006020820190508181036000830152614924816148e8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614965826143ef565b9150614970836143ef565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156149a5576149a461492b565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614a0c6033836142dc565b9150614a17826149b0565b604082019050919050565b60006020820190508181036000830152614a3b816149ff565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614a9e6030836142dc565b9150614aa982614a42565b604082019050919050565b60006020820190508181036000830152614acd81614a91565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614b306039836142dc565b9150614b3b82614ad4565b604082019050919050565b60006020820190508181036000830152614b5f81614b23565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614bc26025836142dc565b9150614bcd82614b66565b604082019050919050565b60006020820190508181036000830152614bf181614bb5565b9050919050565b6000614c03826143ef565b9150614c0e836143ef565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614c4757614c4661492b565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614c8c826143ef565b9150614c97836143ef565b925082614ca757614ca6614c52565b5b828204905092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614d0e6035836142dc565b9150614d1982614cb2565b604082019050919050565b60006020820190508181036000830152614d3d81614d01565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614da06034836142dc565b9150614dab82614d44565b604082019050919050565b60006020820190508181036000830152614dcf81614d93565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614e326026836142dc565b9150614e3d82614dd6565b604082019050919050565b60006020820190508181036000830152614e6181614e25565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b6000614e9e6020836142dc565b9150614ea982614e68565b602082019050919050565b60006020820190508181036000830152614ecd81614e91565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000614f30602a836142dc565b9150614f3b82614ed4565b604082019050919050565b60006020820190508181036000830152614f5f81614f23565b9050919050565b600081519050614f75816143f9565b92915050565b600060208284031215614f9157614f9061438c565b5b6000614f9f84828501614f66565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006150046024836142dc565b915061500f82614fa8565b604082019050919050565b6000602082019050818103600083015261503381614ff7565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006150966022836142dc565b91506150a18261503a565b604082019050919050565b600060208201905081810360008301526150c581615089565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006151286025836142dc565b9150615133826150cc565b604082019050919050565b600060208201905081810360008301526151578161511b565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006151ba6023836142dc565b91506151c58261515e565b604082019050919050565b600060208201905081810360008301526151e9816151ad565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006152266016836142dc565b9150615231826151f0565b602082019050919050565b6000602082019050818103600083015261525581615219565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006152de6049836142dc565b91506152e98261525c565b606082019050919050565b6000602082019050818103600083015261530d816152d1565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006153706035836142dc565b915061537b82615314565b604082019050919050565b6000602082019050818103600083015261539f81615363565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006153dc6013836142dc565b91506153e7826153a6565b602082019050919050565b6000602082019050818103600083015261540b816153cf565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b600061546e6036836142dc565b915061547982615412565b604082019050919050565b6000602082019050818103600083015261549d81615461565b9050919050565b60006154af826143ef565b91506154ba836143ef565b9250828210156154cd576154cc61492b565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006155346026836142dc565b915061553f826154d8565b604082019050919050565b6000602082019050818103600083015261556381615527565b9050919050565b600081905092915050565b50565b600061558560008361556a565b915061559082615575565b600082019050919050565b60006155a682615578565b9150819050919050565b60006060820190506155c56000830186614542565b6155d26020830185614542565b6155df6040830184614542565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050615654816143c3565b92915050565b6000602082840312156156705761566f61438c565b5b600061567e84828501615645565b91505092915050565b6000819050919050565b60006156ac6156a76156a284615687565b6144c8565b6143ef565b9050919050565b6156bc81615691565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6156f7816143b1565b82525050565b600061570983836156ee565b60208301905092915050565b6000602082019050919050565b600061572d826156c2565b61573781856156cd565b9350615742836156de565b8060005b8381101561577357815161575a88826156fd565b975061576583615715565b925050600181019050615746565b5085935050505092915050565b600060a0820190506157956000830188614542565b6157a260208301876156b3565b81810360408301526157b48186615722565b90506157c360608301856145bf565b6157d06080830184614542565b9695505050505050565b600060c0820190506157ef60008301896145bf565b6157fc6020830188614542565b61580960408301876156b3565b61581660608301866156b3565b61582360808301856145bf565b61583060a0830184614542565b979650505050505050565b6000806000606084860312156158545761585361438c565b5b600061586286828701614f66565b935050602061587386828701614f66565b925050604061588486828701614f66565b915050925092509256fea2646970667358221220ef4fc4e50fca98543891bbfd6cd67a5970e6466cce92caa943285fb9133cb21464736f6c634300080a0033

Deployed Bytecode Sourcemap

32854:19195:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9669:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11836:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34500:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32933:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10789:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41361:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33498:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33313:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34284:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34244;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12487:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33036:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33408:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33369:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10631:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13388:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32991:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33596:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41526:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34050:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34202:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40036:380;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34091:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33676:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10960:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2904:103;;;;;;;;;;;;;:::i;:::-;;49631:555;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39287:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33128:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33976;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39658:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37917:155;;;;;;;;;;;;;:::i;:::-;;2253:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33165:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34126:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39550:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9888:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40614:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33552:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34324:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14106:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33460:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11300:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39027:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41122:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34721:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33636:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40424:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39165:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33894:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33198:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38522:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33942:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11538:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33240:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38317:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34013:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3162:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34164:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33280:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50990:1056;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38124:132;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9669:100;9723:13;9756:5;9749:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9669:100;:::o;11836:169::-;11919:4;11936:39;11945:12;:10;:12::i;:::-;11959:7;11968:6;11936:8;:39::i;:::-;11993:4;11986:11;;11836:169;;;;:::o;34500:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;32933:51::-;;;:::o;10789:108::-;10850:7;10877:12;;10870:19;;10789:108;:::o;41361:157::-;2484:12;:10;:12::i;:::-;2473:23;;:7;:5;:7::i;:::-;:23;;;2465:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41468:9:::1;;;;;;;;;;;41440:38;;41457:9;41440:38;;;;;;;;;;;;41501:9;41489;;:21;;;;;;;;;;;;;;;;;;41361:157:::0;:::o;33498:47::-;;;;:::o;33313:36::-;;;;:::o;34284:33::-;;;;:::o;34244:::-;;;;:::o;12487:492::-;12627:4;12644:36;12654:6;12662:9;12673:6;12644:9;:36::i;:::-;12693:24;12720:11;:19;12732:6;12720:19;;;;;;;;;;;;;;;:33;12740:12;:10;:12::i;:::-;12720:33;;;;;;;;;;;;;;;;12693:60;;12792:6;12772:16;:26;;12764:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12879:57;12888:6;12896:12;:10;:12::i;:::-;12929:6;12910:16;:25;12879:8;:57::i;:::-;12967:4;12960:11;;;12487:492;;;;;:::o;33036:53::-;33082:6;33036:53;:::o;33408:45::-;;;;:::o;33369:32::-;;;;;;;;;;;;;:::o;10631:93::-;10689:5;10714:2;10707:9;;10631:93;:::o;13388:215::-;13476:4;13493:80;13502:12;:10;:12::i;:::-;13516:7;13562:10;13525:11;:25;13537:12;:10;:12::i;:::-;13525:25;;;;;;;;;;;;;;;:34;13551:7;13525:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13493:8;:80::i;:::-;13591:4;13584:11;;13388:215;;;;:::o;32991:38::-;;;:::o;33596:33::-;;;;;;;;;;;;;:::o;41526:126::-;41592:4;41616:19;:28;41636:7;41616:28;;;;;;;;;;;;;;;;;;;;;;;;;41609:35;;41526:126;;;:::o;34050:32::-;;;;:::o;34202:33::-;;;;:::o;40036:380::-;2484:12;:10;:12::i;:::-;2473:23;;:7;:5;:7::i;:::-;:23;;;2465:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40212:13:::1;40193:16;:32;;;;40255:13;40236:16;:32;;;;40300:15;40279:18;:36;;;;40380:18;;40361:16;;40342;;:35;;;;:::i;:::-;:56;;;;:::i;:::-;40326:13;:72;;;;40036:380:::0;;;:::o;34091:28::-;;;;:::o;33676:31::-;;;;;;;;;;;;;:::o;10960:127::-;11034:7;11061:9;:18;11071:7;11061:18;;;;;;;;;;;;;;;;11054:25;;10960:127;;;:::o;2904:103::-;2484:12;:10;:12::i;:::-;2473:23;;:7;:5;:7::i;:::-;:23;;;2465:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2969:30:::1;2996:1;2969:18;:30::i;:::-;2904:103::o:0;49631:555::-;2484:12;:10;:12::i;:::-;2473:23;;:7;:5;:7::i;:::-;:23;;;2465:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49833:3:::1;49810:19;:26;;49788:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;49960:4;49948:8;:16;;:33;;;;;49980:1;49968:8;:13;;49948:33;49926:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;50086:19;50068:15;:37;;;;50135:8;50116:16;:27;;;;50170:8;50154:13;;:24;;;;;;;;;;;;;;;;;;49631:555:::0;;;:::o;39287:167::-;2484:12;:10;:12::i;:::-;2473:23;;:7;:5;:7::i;:::-;:23;;;2465:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39442:4:::1;39400:31;:39;39432:6;39400:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;39287:167:::0;;:::o;33128:30::-;;;;;;;;;;;;;:::o;33976:::-;;;;:::o;39658:370::-;2484:12;:10;:12::i;:::-;2473:23;;:7;:5;:7::i;:::-;:23;;;2465:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39834:13:::1;39816:15;:31;;;;39876:13;39858:15;:31;;;;39920:15;39900:17;:35;;;;39997:17;;39979:15;;39961;;:33;;;;:::i;:::-;:53;;;;:::i;:::-;39946:12;:68;;;;39658:370:::0;;;:::o;37917:155::-;2484:12;:10;:12::i;:::-;2473:23;;:7;:5;:7::i;:::-;:23;;;2465:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37988:4:::1;37972:13;;:20;;;;;;;;;;;;;;;;;;38017:4;38003:11;;:18;;;;;;;;;;;;;;;;;;38049:15;38032:14;:32;;;;37917:155::o:0;2253:87::-;2299:7;2326:6;;;;;;;;;;;2319:13;;2253:87;:::o;33165:24::-;;;;;;;;;;;;;:::o;34126:31::-;;;;:::o;39550:100::-;2484:12;:10;:12::i;:::-;2473:23;;:7;:5;:7::i;:::-;:23;;;2465:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39635:7:::1;39621:11;;:21;;;;;;;;;;;;;;;;;;39550:100:::0;:::o;9888:104::-;9944:13;9977:7;9970:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9888:104;:::o;40614:304::-;2484:12;:10;:12::i;:::-;2473:23;;:7;:5;:7::i;:::-;:23;;;2465:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40758:13:::1;40750:21;;:4;:21;;;;40728:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;40869:41;40898:4;40904:5;40869:28;:41::i;:::-;40614:304:::0;;:::o;33552:35::-;;;;:::o;34324:27::-;;;;:::o;14106:413::-;14199:4;14216:24;14243:11;:25;14255:12;:10;:12::i;:::-;14243:25;;;;;;;;;;;;;;;:34;14269:7;14243:34;;;;;;;;;;;;;;;;14216:61;;14316:15;14296:16;:35;;14288:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14409:67;14418:12;:10;:12::i;:::-;14432:7;14460:15;14441:16;:34;14409:8;:67::i;:::-;14507:4;14500:11;;;14106:413;;;;:::o;33460:29::-;;;;:::o;11300:175::-;11386:4;11403:42;11413:12;:10;:12::i;:::-;11427:9;11438:6;11403:9;:42::i;:::-;11463:4;11456:11;;11300:175;;;;:::o;39027:130::-;2484:12;:10;:12::i;:::-;2473:23;;:7;:5;:7::i;:::-;:23;;;2465:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39142:6:::1;39132;:17;;;;:::i;:::-;39109:20;:40;;;;39027:130:::0;:::o;41122:231::-;2484:12;:10;:12::i;:::-;2473:23;;:7;:5;:7::i;:::-;:23;;;2465:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41282:15:::1;;;;;;;;;;;41239:59;;41262:18;41239:59;;;;;;;;;;;;41327:18;41309:15;;:36;;;;;;;;;;;;;;;;;;41122:231:::0;:::o;34721:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33636:33::-;;;;;;;;;;;;;:::o;40424:182::-;2484:12;:10;:12::i;:::-;2473:23;;:7;:5;:7::i;:::-;:23;;;2465:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40540:8:::1;40509:19;:28;40529:7;40509:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40580:7;40564:34;;;40589:8;40564:34;;;;;;:::i;:::-;;;;;;;;40424:182:::0;;:::o;39165:114::-;2484:12;:10;:12::i;:::-;2473:23;;:7;:5;:7::i;:::-;:23;;;2465:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39264:6:::1;39254;:17;;;;:::i;:::-;39242:9;:29;;;;39165:114:::0;:::o;33894:39::-;;;;;;;;;;;;;:::o;33198:35::-;;;;:::o;38522:497::-;38630:4;2484:12;:10;:12::i;:::-;2473:23;;:7;:5;:7::i;:::-;:23;;;2465:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38709:6:::1;38704:1;38688:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38687:28;;;;:::i;:::-;38674:9;:41;;38652:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;38864:4;38859:1;38843:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38842:26;;;;:::i;:::-;38829:9;:39;;38807:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;38980:9;38959:18;:30;;;;39007:4;39000:11;;38522:497:::0;;;:::o;33942:27::-;;;;:::o;11538:151::-;11627:7;11654:11;:18;11666:5;11654:18;;;;;;;;;;;;;;;:27;11673:7;11654:27;;;;;;;;;;;;;;;;11647:34;;11538:151;;;;:::o;33240:33::-;;;;:::o;38317:135::-;38377:4;2484:12;:10;:12::i;:::-;2473:23;;:7;:5;:7::i;:::-;:23;;;2465:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38417:5:::1;38394:20;;:28;;;;;;;;;;;;;;;;;;38440:4;38433:11;;38317:135:::0;:::o;34013:30::-;;;;:::o;3162:201::-;2484:12;:10;:12::i;:::-;2473:23;;:7;:5;:7::i;:::-;:23;;;2465:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3271:1:::1;3251:22;;:8;:22;;;;3243:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3327:28;3346:8;3327:18;:28::i;:::-;3162:201:::0;:::o;34164:31::-;;;;:::o;33280:24::-;;;;:::o;50990:1056::-;51101:4;2484:12;:10;:12::i;:::-;2473:23;;:7;:5;:7::i;:::-;:23;;;2465:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51186:19:::1;;51163:20;;:42;;;;:::i;:::-;51145:15;:60;51123:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;51295:4;51284:7;:15;;51276:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;51380:15;51357:20;:38;;;;51450:28;51481:4;:14;;;51496:13;51481:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51450:60;;51560:20;51583:44;51621:5;51583:33;51608:7;51583:20;:24;;:33;;;;:::i;:::-;:37;;:44;;;;:::i;:::-;51560:67;;51747:1;51732:12;:16;51728:110;;;51765:61;51781:13;51804:6;51813:12;51765:15;:61::i;:::-;51728:110;51913:19;51950:13;51913:51;;51975:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;52002:14;;;;;;;;;;52034:4;52027:11;;;;;50990:1056:::0;;;:::o;38124:132::-;38187:4;2484:12;:10;:12::i;:::-;2473:23;;:7;:5;:7::i;:::-;:23;;;2465:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38221:5:::1;38204:14;;:22;;;;;;;;;;;;;;;;;;38244:4;38237:11;;38124:132:::0;:::o;926:98::-;979:7;1006:10;999:17;;926:98;:::o;17790:380::-;17943:1;17926:19;;:5;:19;;;;17918:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18024:1;18005:21;;:7;:21;;;;17997:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18108:6;18078:11;:18;18090:5;18078:18;;;;;;;;;;;;;;;:27;18097:7;18078:27;;;;;;;;;;;;;;;:36;;;;18146:7;18130:32;;18139:5;18130:32;;;18155:6;18130:32;;;;;;:::i;:::-;;;;;;;;17790:380;;;:::o;41710:5027::-;41858:1;41842:18;;:4;:18;;;;41834:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41935:1;41921:16;;:2;:16;;;;41913:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;42004:1;41994:6;:11;41990:93;;;42022:28;42038:4;42044:2;42048:1;42022:15;:28::i;:::-;42065:7;;41990:93;42099:14;;;;;;;;;;;42095:2487;;;42160:7;:5;:7::i;:::-;42152:15;;:4;:15;;;;:49;;;;;42194:7;:5;:7::i;:::-;42188:13;;:2;:13;;;;42152:49;:86;;;;;42236:1;42222:16;;:2;:16;;;;42152:86;:128;;;;;42273:6;42259:21;;:2;:21;;;;42152:128;:158;;;;;42302:8;;;;;;;;;;;42301:9;42152:158;42130:2441;;;42350:13;;;;;;;;;;;42345:223;;42422:19;:25;42442:4;42422:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42451:19;:23;42471:2;42451:23;;;;;;;;;;;;;;;;;;;;;;;;;42422:52;42388:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;42345:223;42724:20;;;;;;;;;;;42720:641;;;42805:7;:5;:7::i;:::-;42799:13;;:2;:13;;;;:72;;;;;42855:15;42841:30;;:2;:30;;;;42799:72;:129;;;;;42914:13;42900:28;;:2;:28;;;;42799:129;42769:573;;;43092:12;43017:28;:39;43046:9;43017:39;;;;;;;;;;;;;;;;:87;42979:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;43306:12;43264:28;:39;43293:9;43264:39;;;;;;;;;;;;;;;:54;;;;42769:573;42720:641;43435:25;:31;43461:4;43435:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43492:31;:35;43524:2;43492:35;;;;;;;;;;;;;;;;;;;;;;;;;43491:36;43435:92;43409:1147;;;43614:20;;43604:6;:30;;43570:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;43822:9;;43805:13;43815:2;43805:9;:13::i;:::-;43796:6;:22;;;;:::i;:::-;:35;;43762:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43409:1147;;;44000:25;:29;44026:2;44000:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;44055:31;:37;44087:4;44055:37;;;;;;;;;;;;;;;;;;;;;;;;;44054:38;44000:92;43974:582;;;44179:20;;44169:6;:30;;44135:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;43974:582;;;44336:31;:35;44368:2;44336:35;;;;;;;;;;;;;;;;;;;;;;;;;44331:225;;44456:9;;44439:13;44449:2;44439:9;:13::i;:::-;44430:6;:22;;;;:::i;:::-;:35;;44396:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;44331:225;43974:582;43409:1147;42130:2441;42095:2487;44594:28;44625:24;44643:4;44625:9;:24::i;:::-;44594:55;;44662:12;44701:18;;44677:20;:42;;44662:57;;44750:7;:35;;;;;44774:11;;;;;;;;;;;44750:35;:61;;;;;44803:8;;;;;;;;;;;44802:9;44750:61;:110;;;;;44829:25;:31;44855:4;44829:31;;;;;;;;;;;;;;;;;;;;;;;;;44828:32;44750:110;:153;;;;;44878:19;:25;44898:4;44878:25;;;;;;;;;;;;;;;;;;;;;;;;;44877:26;44750:153;:194;;;;;44921:19;:23;44941:2;44921:23;;;;;;;;;;;;;;;;;;;;;;;;;44920:24;44750:194;44732:326;;;44982:4;44971:8;;:15;;;;;;;;;;;;;;;;;;45003:10;:8;:10::i;:::-;45041:5;45030:8;;:16;;;;;;;;;;;;;;;;;;44732:326;45089:8;;;;;;;;;;;45088:9;:55;;;;;45114:25;:29;45140:2;45114:29;;;;;;;;;;;;;;;;;;;;;;;;;45088:55;:85;;;;;45160:13;;;;;;;;;;;45088:85;:153;;;;;45226:15;;45209:14;;:32;;;;:::i;:::-;45190:15;:51;;45088:153;:196;;;;;45259:19;:25;45279:4;45259:25;;;;;;;;;;;;;;;;;;;;;;;;;45258:26;45088:196;45070:282;;;45311:29;:27;:29::i;:::-;;45070:282;45364:12;45380:8;;;;;;;;;;;45379:9;45364:24;;45490:19;:25;45510:4;45490:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;45519:19;:23;45539:2;45519:23;;;;;;;;;;;;;;;;;;;;;;;;;45490:52;45486:100;;;45569:5;45559:15;;45486:100;45598:12;45703:7;45699:985;;;45755:25;:29;45781:2;45755:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;45804:1;45788:13;;:17;45755:50;45751:784;;;45833:34;45863:3;45833:25;45844:13;;45833:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;45826:41;;45936:13;;45916:16;;45909:4;:23;;;;:::i;:::-;45908:41;;;;:::i;:::-;45886:18;;:63;;;;;;;:::i;:::-;;;;;;;;46014:13;;45992:18;;45985:4;:25;;;;:::i;:::-;45984:43;;;;:::i;:::-;45968:12;;:59;;;;;;;:::i;:::-;;;;;;;;46096:13;;46076:16;;46069:4;:23;;;;:::i;:::-;46068:41;;;;:::i;:::-;46046:18;;:63;;;;;;;:::i;:::-;;;;;;;;45751:784;;;46171:25;:31;46197:4;46171:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;46221:1;46206:12;;:16;46171:51;46167:368;;;46250:33;46279:3;46250:24;46261:12;;46250:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;46243:40;;46351:12;;46332:15;;46325:4;:22;;;;:::i;:::-;46324:39;;;;:::i;:::-;46302:18;;:61;;;;;;;:::i;:::-;;;;;;;;46427:12;;46406:17;;46399:4;:24;;;;:::i;:::-;46398:41;;;;:::i;:::-;46382:12;;:57;;;;;;;:::i;:::-;;;;;;;;46507:12;;46488:15;;46481:4;:22;;;;:::i;:::-;46480:39;;;;:::i;:::-;46458:18;;:61;;;;;;;:::i;:::-;;;;;;;;46167:368;45751:784;46562:1;46555:4;:8;46551:91;;;46584:42;46600:4;46614;46621;46584:15;:42::i;:::-;46551:91;46668:4;46658:14;;;;;:::i;:::-;;;45699:985;46696:33;46712:4;46718:2;46722:6;46696:15;:33::i;:::-;41823:4914;;;;41710:5027;;;;:::o;3523:191::-;3597:16;3616:6;;;;;;;;;;;3597:25;;3642:8;3633:6;;:17;;;;;;;;;;;;;;;;;;3697:8;3666:40;;3687:8;3666:40;;;;;;;;;;;;3586:128;3523:191;:::o;40926:188::-;41043:5;41009:25;:31;41035:4;41009:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41100:5;41066:40;;41094:4;41066:40;;;;;;;;;;;;40926:188;;:::o;23243:98::-;23301:7;23332:1;23328;:5;;;;:::i;:::-;23321:12;;23243:98;;;;:::o;23642:::-;23700:7;23731:1;23727;:5;;;;:::i;:::-;23720:12;;23642:98;;;;:::o;15009:733::-;15167:1;15149:20;;:6;:20;;;;15141:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15251:1;15230:23;;:9;:23;;;;15222:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15306:47;15327:6;15335:9;15346:6;15306:20;:47::i;:::-;15366:21;15390:9;:17;15400:6;15390:17;;;;;;;;;;;;;;;;15366:41;;15443:6;15426:13;:23;;15418:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15564:6;15548:13;:22;15528:9;:17;15538:6;15528:17;;;;;;;;;;;;;;;:42;;;;15616:6;15592:9;:20;15602:9;15592:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15657:9;15640:35;;15649:6;15640:35;;;15668:6;15640:35;;;;;;:::i;:::-;;;;;;;;15688:46;15708:6;15716:9;15727:6;15688:19;:46::i;:::-;15130:612;15009:733;;;:::o;47867:1756::-;47906:23;47932:24;47950:4;47932:9;:24::i;:::-;47906:50;;47967:25;48063:12;;48029:18;;47995;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;47967:108;;48086:12;48134:1;48115:15;:20;:46;;;;48160:1;48139:17;:22;48115:46;48111:85;;;48178:7;;;;;48111:85;48251:2;48230:18;;:23;;;;:::i;:::-;48212:15;:41;48208:115;;;48309:2;48288:18;;:23;;;;:::i;:::-;48270:41;;48208:115;48384:23;48497:1;48464:17;48429:18;;48411:15;:36;;;;:::i;:::-;48410:71;;;;:::i;:::-;:88;;;;:::i;:::-;48384:114;;48509:26;48538:36;48558:15;48538;:19;;:36;;;;:::i;:::-;48509:65;;48587:25;48615:21;48587:49;;48649:36;48666:18;48649:16;:36::i;:::-;48698:18;48719:44;48745:17;48719:21;:25;;:44;;;;:::i;:::-;48698:65;;48776:23;48802:81;48855:17;48802:34;48817:18;;48802:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;48776:107;;48894:17;48914:51;48947:17;48914:28;48929:12;;48914:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;48894:71;;48978:23;49035:9;49017:15;49004:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;48978:66;;49078:1;49057:18;:22;;;;49111:1;49090:18;:22;;;;49138:1;49123:12;:16;;;;49174:9;;;;;;;;;;;49166:23;;49197:9;49166:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49152:59;;;;;49246:1;49228:15;:19;:42;;;;;49269:1;49251:15;:19;49228:42;49224:278;;;49287:46;49300:15;49317;49287:12;:46::i;:::-;49353:137;49386:18;49423:15;49457:18;;49353:137;;;;;;;;:::i;:::-;;;;;;;;49224:278;49536:15;;;;;;;;;;;49528:29;;49579:21;49528:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49514:101;;;;;47895:1728;;;;;;;;;;47867:1756;:::o;50194:788::-;50251:4;50285:15;50268:14;:32;;;;50355:28;50386:4;:14;;;50401:13;50386:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50355:60;;50465:20;50488:77;50549:5;50488:42;50513:16;;50488:20;:24;;:42;;;;:::i;:::-;:46;;:77;;;;:::i;:::-;50465:100;;50685:1;50670:12;:16;50666:110;;;50703:61;50719:13;50742:6;50751:12;50703:15;:61::i;:::-;50666:110;50851:19;50888:13;50851:51;;50913:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50940:12;;;;;;;;;;50970:4;50963:11;;;;;50194:788;:::o;18770:125::-;;;;:::o;19499:124::-;;;;:::o;22886:98::-;22944:7;22975:1;22971;:5;;;;:::i;:::-;22964:12;;22886:98;;;;:::o;46745:589::-;46871:21;46909:1;46895:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46871:40;;46940:4;46922;46927:1;46922:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;46966:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46956:4;46961:1;46956:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;47001:62;47018:4;47033:15;47051:11;47001:8;:62::i;:::-;47102:15;:66;;;47183:11;47209:1;47253:4;47280;47300:15;47102:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46800:534;46745:589;:::o;47342:517::-;47490:62;47507:4;47522:15;47540:11;47490:8;:62::i;:::-;47595:15;:31;;;47634:9;47667:4;47687:11;47713:1;47756;33082:6;47825:15;47595:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;47342:517;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:329::-;3553:6;3602:2;3590:9;3581:7;3577:23;3573:32;3570:119;;;3608:79;;:::i;:::-;3570:119;3728:1;3753:53;3798:7;3789:6;3778:9;3774:22;3753:53;:::i;:::-;3743:63;;3699:117;3494:329;;;;:::o;3829:60::-;3857:3;3878:5;3871:12;;3829:60;;;:::o;3895:142::-;3945:9;3978:53;3996:34;4005:24;4023:5;4005:24;:::i;:::-;3996:34;:::i;:::-;3978:53;:::i;:::-;3965:66;;3895:142;;;:::o;4043:126::-;4093:9;4126:37;4157:5;4126:37;:::i;:::-;4113:50;;4043:126;;;:::o;4175:153::-;4252:9;4285:37;4316:5;4285:37;:::i;:::-;4272:50;;4175:153;;;:::o;4334:185::-;4448:64;4506:5;4448:64;:::i;:::-;4443:3;4436:77;4334:185;;:::o;4525:276::-;4645:4;4683:2;4672:9;4668:18;4660:26;;4696:98;4791:1;4780:9;4776:17;4767:6;4696:98;:::i;:::-;4525:276;;;;:::o;4807:118::-;4894:24;4912:5;4894:24;:::i;:::-;4889:3;4882:37;4807:118;;:::o;4931:222::-;5024:4;5062:2;5051:9;5047:18;5039:26;;5075:71;5143:1;5132:9;5128:17;5119:6;5075:71;:::i;:::-;4931:222;;;;:::o;5159:619::-;5236:6;5244;5252;5301:2;5289:9;5280:7;5276:23;5272:32;5269:119;;;5307:79;;:::i;:::-;5269:119;5427:1;5452:53;5497:7;5488:6;5477:9;5473:22;5452:53;:::i;:::-;5442:63;;5398:117;5554:2;5580:53;5625:7;5616:6;5605:9;5601:22;5580:53;:::i;:::-;5570:63;;5525:118;5682:2;5708:53;5753:7;5744:6;5733:9;5729:22;5708:53;:::i;:::-;5698:63;;5653:118;5159:619;;;;;:::o;5784:118::-;5871:24;5889:5;5871:24;:::i;:::-;5866:3;5859:37;5784:118;;:::o;5908:222::-;6001:4;6039:2;6028:9;6024:18;6016:26;;6052:71;6120:1;6109:9;6105:17;6096:6;6052:71;:::i;:::-;5908:222;;;;:::o;6136:86::-;6171:7;6211:4;6204:5;6200:16;6189:27;;6136:86;;;:::o;6228:112::-;6311:22;6327:5;6311:22;:::i;:::-;6306:3;6299:35;6228:112;;:::o;6346:214::-;6435:4;6473:2;6462:9;6458:18;6450:26;;6486:67;6550:1;6539:9;6535:17;6526:6;6486:67;:::i;:::-;6346:214;;;;:::o;6566:619::-;6643:6;6651;6659;6708:2;6696:9;6687:7;6683:23;6679:32;6676:119;;;6714:79;;:::i;:::-;6676:119;6834:1;6859:53;6904:7;6895:6;6884:9;6880:22;6859:53;:::i;:::-;6849:63;;6805:117;6961:2;6987:53;7032:7;7023:6;7012:9;7008:22;6987:53;:::i;:::-;6977:63;;6932:118;7089:2;7115:53;7160:7;7151:6;7140:9;7136:22;7115:53;:::i;:::-;7105:63;;7060:118;6566:619;;;;;:::o;7191:116::-;7261:21;7276:5;7261:21;:::i;:::-;7254:5;7251:32;7241:60;;7297:1;7294;7287:12;7241:60;7191:116;:::o;7313:133::-;7356:5;7394:6;7381:20;7372:29;;7410:30;7434:5;7410:30;:::i;:::-;7313:133;;;;:::o;7452:613::-;7526:6;7534;7542;7591:2;7579:9;7570:7;7566:23;7562:32;7559:119;;;7597:79;;:::i;:::-;7559:119;7717:1;7742:53;7787:7;7778:6;7767:9;7763:22;7742:53;:::i;:::-;7732:63;;7688:117;7844:2;7870:53;7915:7;7906:6;7895:9;7891:22;7870:53;:::i;:::-;7860:63;;7815:118;7972:2;7998:50;8040:7;8031:6;8020:9;8016:22;7998:50;:::i;:::-;7988:60;;7943:115;7452:613;;;;;:::o;8071:468::-;8136:6;8144;8193:2;8181:9;8172:7;8168:23;8164:32;8161:119;;;8199:79;;:::i;:::-;8161:119;8319:1;8344:53;8389:7;8380:6;8369:9;8365:22;8344:53;:::i;:::-;8334:63;;8290:117;8446:2;8472:50;8514:7;8505:6;8494:9;8490:22;8472:50;:::i;:::-;8462:60;;8417:115;8071:468;;;;;:::o;8545:323::-;8601:6;8650:2;8638:9;8629:7;8625:23;8621:32;8618:119;;;8656:79;;:::i;:::-;8618:119;8776:1;8801:50;8843:7;8834:6;8823:9;8819:22;8801:50;:::i;:::-;8791:60;;8747:114;8545:323;;;;:::o;8874:329::-;8933:6;8982:2;8970:9;8961:7;8957:23;8953:32;8950:119;;;8988:79;;:::i;:::-;8950:119;9108:1;9133:53;9178:7;9169:6;9158:9;9154:22;9133:53;:::i;:::-;9123:63;;9079:117;8874:329;;;;:::o;9209:474::-;9277:6;9285;9334:2;9322:9;9313:7;9309:23;9305:32;9302:119;;;9340:79;;:::i;:::-;9302:119;9460:1;9485:53;9530:7;9521:6;9510:9;9506:22;9485:53;:::i;:::-;9475:63;;9431:117;9587:2;9613:53;9658:7;9649:6;9638:9;9634:22;9613:53;:::i;:::-;9603:63;;9558:118;9209:474;;;;;:::o;9689:180::-;9737:77;9734:1;9727:88;9834:4;9831:1;9824:15;9858:4;9855:1;9848:15;9875:320;9919:6;9956:1;9950:4;9946:12;9936:22;;10003:1;9997:4;9993:12;10024:18;10014:81;;10080:4;10072:6;10068:17;10058:27;;10014:81;10142:2;10134:6;10131:14;10111:18;10108:38;10105:84;;;10161:18;;:::i;:::-;10105:84;9926:269;9875:320;;;:::o;10201:182::-;10341:34;10337:1;10329:6;10325:14;10318:58;10201:182;:::o;10389:366::-;10531:3;10552:67;10616:2;10611:3;10552:67;:::i;:::-;10545:74;;10628:93;10717:3;10628:93;:::i;:::-;10746:2;10741:3;10737:12;10730:19;;10389:366;;;:::o;10761:419::-;10927:4;10965:2;10954:9;10950:18;10942:26;;11014:9;11008:4;11004:20;11000:1;10989:9;10985:17;10978:47;11042:131;11168:4;11042:131;:::i;:::-;11034:139;;10761:419;;;:::o;11186:227::-;11326:34;11322:1;11314:6;11310:14;11303:58;11395:10;11390:2;11382:6;11378:15;11371:35;11186:227;:::o;11419:366::-;11561:3;11582:67;11646:2;11641:3;11582:67;:::i;:::-;11575:74;;11658:93;11747:3;11658:93;:::i;:::-;11776:2;11771:3;11767:12;11760:19;;11419:366;;;:::o;11791:419::-;11957:4;11995:2;11984:9;11980:18;11972:26;;12044:9;12038:4;12034:20;12030:1;12019:9;12015:17;12008:47;12072:131;12198:4;12072:131;:::i;:::-;12064:139;;11791:419;;;:::o;12216:180::-;12264:77;12261:1;12254:88;12361:4;12358:1;12351:15;12385:4;12382:1;12375:15;12402:305;12442:3;12461:20;12479:1;12461:20;:::i;:::-;12456:25;;12495:20;12513:1;12495:20;:::i;:::-;12490:25;;12649:1;12581:66;12577:74;12574:1;12571:81;12568:107;;;12655:18;;:::i;:::-;12568:107;12699:1;12696;12692:9;12685:16;;12402:305;;;;:::o;12713:238::-;12853:34;12849:1;12841:6;12837:14;12830:58;12922:21;12917:2;12909:6;12905:15;12898:46;12713:238;:::o;12957:366::-;13099:3;13120:67;13184:2;13179:3;13120:67;:::i;:::-;13113:74;;13196:93;13285:3;13196:93;:::i;:::-;13314:2;13309:3;13305:12;13298:19;;12957:366;;;:::o;13329:419::-;13495:4;13533:2;13522:9;13518:18;13510:26;;13582:9;13576:4;13572:20;13568:1;13557:9;13553:17;13546:47;13610:131;13736:4;13610:131;:::i;:::-;13602:139;;13329:419;;;:::o;13754:235::-;13894:34;13890:1;13882:6;13878:14;13871:58;13963:18;13958:2;13950:6;13946:15;13939:43;13754:235;:::o;13995:366::-;14137:3;14158:67;14222:2;14217:3;14158:67;:::i;:::-;14151:74;;14234:93;14323:3;14234:93;:::i;:::-;14352:2;14347:3;14343:12;14336:19;;13995:366;;;:::o;14367:419::-;14533:4;14571:2;14560:9;14556:18;14548:26;;14620:9;14614:4;14610:20;14606:1;14595:9;14591:17;14584:47;14648:131;14774:4;14648:131;:::i;:::-;14640:139;;14367:419;;;:::o;14792:244::-;14932:34;14928:1;14920:6;14916:14;14909:58;15001:27;14996:2;14988:6;14984:15;14977:52;14792:244;:::o;15042:366::-;15184:3;15205:67;15269:2;15264:3;15205:67;:::i;:::-;15198:74;;15281:93;15370:3;15281:93;:::i;:::-;15399:2;15394:3;15390:12;15383:19;;15042:366;;;:::o;15414:419::-;15580:4;15618:2;15607:9;15603:18;15595:26;;15667:9;15661:4;15657:20;15653:1;15642:9;15638:17;15631:47;15695:131;15821:4;15695:131;:::i;:::-;15687:139;;15414:419;;;:::o;15839:224::-;15979:34;15975:1;15967:6;15963:14;15956:58;16048:7;16043:2;16035:6;16031:15;16024:32;15839:224;:::o;16069:366::-;16211:3;16232:67;16296:2;16291:3;16232:67;:::i;:::-;16225:74;;16308:93;16397:3;16308:93;:::i;:::-;16426:2;16421:3;16417:12;16410:19;;16069:366;;;:::o;16441:419::-;16607:4;16645:2;16634:9;16630:18;16622:26;;16694:9;16688:4;16684:20;16680:1;16669:9;16665:17;16658:47;16722:131;16848:4;16722:131;:::i;:::-;16714:139;;16441:419;;;:::o;16866:348::-;16906:7;16929:20;16947:1;16929:20;:::i;:::-;16924:25;;16963:20;16981:1;16963:20;:::i;:::-;16958:25;;17151:1;17083:66;17079:74;17076:1;17073:81;17068:1;17061:9;17054:17;17050:105;17047:131;;;17158:18;;:::i;:::-;17047:131;17206:1;17203;17199:9;17188:20;;16866:348;;;;:::o;17220:180::-;17268:77;17265:1;17258:88;17365:4;17362:1;17355:15;17389:4;17386:1;17379:15;17406:185;17446:1;17463:20;17481:1;17463:20;:::i;:::-;17458:25;;17497:20;17515:1;17497:20;:::i;:::-;17492:25;;17536:1;17526:35;;17541:18;;:::i;:::-;17526:35;17583:1;17580;17576:9;17571:14;;17406:185;;;;:::o;17597:240::-;17737:34;17733:1;17725:6;17721:14;17714:58;17806:23;17801:2;17793:6;17789:15;17782:48;17597:240;:::o;17843:366::-;17985:3;18006:67;18070:2;18065:3;18006:67;:::i;:::-;17999:74;;18082:93;18171:3;18082:93;:::i;:::-;18200:2;18195:3;18191:12;18184:19;;17843:366;;;:::o;18215:419::-;18381:4;18419:2;18408:9;18404:18;18396:26;;18468:9;18462:4;18458:20;18454:1;18443:9;18439:17;18432:47;18496:131;18622:4;18496:131;:::i;:::-;18488:139;;18215:419;;;:::o;18640:239::-;18780:34;18776:1;18768:6;18764:14;18757:58;18849:22;18844:2;18836:6;18832:15;18825:47;18640:239;:::o;18885:366::-;19027:3;19048:67;19112:2;19107:3;19048:67;:::i;:::-;19041:74;;19124:93;19213:3;19124:93;:::i;:::-;19242:2;19237:3;19233:12;19226:19;;18885:366;;;:::o;19257:419::-;19423:4;19461:2;19450:9;19446:18;19438:26;;19510:9;19504:4;19500:20;19496:1;19485:9;19481:17;19474:47;19538:131;19664:4;19538:131;:::i;:::-;19530:139;;19257:419;;;:::o;19682:225::-;19822:34;19818:1;19810:6;19806:14;19799:58;19891:8;19886:2;19878:6;19874:15;19867:33;19682:225;:::o;19913:366::-;20055:3;20076:67;20140:2;20135:3;20076:67;:::i;:::-;20069:74;;20152:93;20241:3;20152:93;:::i;:::-;20270:2;20265:3;20261:12;20254:19;;19913:366;;;:::o;20285:419::-;20451:4;20489:2;20478:9;20474:18;20466:26;;20538:9;20532:4;20528:20;20524:1;20513:9;20509:17;20502:47;20566:131;20692:4;20566:131;:::i;:::-;20558:139;;20285:419;;;:::o;20710:182::-;20850:34;20846:1;20838:6;20834:14;20827:58;20710:182;:::o;20898:366::-;21040:3;21061:67;21125:2;21120:3;21061:67;:::i;:::-;21054:74;;21137:93;21226:3;21137:93;:::i;:::-;21255:2;21250:3;21246:12;21239:19;;20898:366;;;:::o;21270:419::-;21436:4;21474:2;21463:9;21459:18;21451:26;;21523:9;21517:4;21513:20;21509:1;21498:9;21494:17;21487:47;21551:131;21677:4;21551:131;:::i;:::-;21543:139;;21270:419;;;:::o;21695:229::-;21835:34;21831:1;21823:6;21819:14;21812:58;21904:12;21899:2;21891:6;21887:15;21880:37;21695:229;:::o;21930:366::-;22072:3;22093:67;22157:2;22152:3;22093:67;:::i;:::-;22086:74;;22169:93;22258:3;22169:93;:::i;:::-;22287:2;22282:3;22278:12;22271:19;;21930:366;;;:::o;22302:419::-;22468:4;22506:2;22495:9;22491:18;22483:26;;22555:9;22549:4;22545:20;22541:1;22530:9;22526:17;22519:47;22583:131;22709:4;22583:131;:::i;:::-;22575:139;;22302:419;;;:::o;22727:143::-;22784:5;22815:6;22809:13;22800:22;;22831:33;22858:5;22831:33;:::i;:::-;22727:143;;;;:::o;22876:351::-;22946:6;22995:2;22983:9;22974:7;22970:23;22966:32;22963:119;;;23001:79;;:::i;:::-;22963:119;23121:1;23146:64;23202:7;23193:6;23182:9;23178:22;23146:64;:::i;:::-;23136:74;;23092:128;22876:351;;;;:::o;23233:223::-;23373:34;23369:1;23361:6;23357:14;23350:58;23442:6;23437:2;23429:6;23425:15;23418:31;23233:223;:::o;23462:366::-;23604:3;23625:67;23689:2;23684:3;23625:67;:::i;:::-;23618:74;;23701:93;23790:3;23701:93;:::i;:::-;23819:2;23814:3;23810:12;23803:19;;23462:366;;;:::o;23834:419::-;24000:4;24038:2;24027:9;24023:18;24015:26;;24087:9;24081:4;24077:20;24073:1;24062:9;24058:17;24051:47;24115:131;24241:4;24115:131;:::i;:::-;24107:139;;23834:419;;;:::o;24259:221::-;24399:34;24395:1;24387:6;24383:14;24376:58;24468:4;24463:2;24455:6;24451:15;24444:29;24259:221;:::o;24486:366::-;24628:3;24649:67;24713:2;24708:3;24649:67;:::i;:::-;24642:74;;24725:93;24814:3;24725:93;:::i;:::-;24843:2;24838:3;24834:12;24827:19;;24486:366;;;:::o;24858:419::-;25024:4;25062:2;25051:9;25047:18;25039:26;;25111:9;25105:4;25101:20;25097:1;25086:9;25082:17;25075:47;25139:131;25265:4;25139:131;:::i;:::-;25131:139;;24858:419;;;:::o;25283:224::-;25423:34;25419:1;25411:6;25407:14;25400:58;25492:7;25487:2;25479:6;25475:15;25468:32;25283:224;:::o;25513:366::-;25655:3;25676:67;25740:2;25735:3;25676:67;:::i;:::-;25669:74;;25752:93;25841:3;25752:93;:::i;:::-;25870:2;25865:3;25861:12;25854:19;;25513:366;;;:::o;25885:419::-;26051:4;26089:2;26078:9;26074:18;26066:26;;26138:9;26132:4;26128:20;26124:1;26113:9;26109:17;26102:47;26166:131;26292:4;26166:131;:::i;:::-;26158:139;;25885:419;;;:::o;26310:222::-;26450:34;26446:1;26438:6;26434:14;26427:58;26519:5;26514:2;26506:6;26502:15;26495:30;26310:222;:::o;26538:366::-;26680:3;26701:67;26765:2;26760:3;26701:67;:::i;:::-;26694:74;;26777:93;26866:3;26777:93;:::i;:::-;26895:2;26890:3;26886:12;26879:19;;26538:366;;;:::o;26910:419::-;27076:4;27114:2;27103:9;27099:18;27091:26;;27163:9;27157:4;27153:20;27149:1;27138:9;27134:17;27127:47;27191:131;27317:4;27191:131;:::i;:::-;27183:139;;26910:419;;;:::o;27335:172::-;27475:24;27471:1;27463:6;27459:14;27452:48;27335:172;:::o;27513:366::-;27655:3;27676:67;27740:2;27735:3;27676:67;:::i;:::-;27669:74;;27752:93;27841:3;27752:93;:::i;:::-;27870:2;27865:3;27861:12;27854:19;;27513:366;;;:::o;27885:419::-;28051:4;28089:2;28078:9;28074:18;28066:26;;28138:9;28132:4;28128:20;28124:1;28113:9;28109:17;28102:47;28166:131;28292:4;28166:131;:::i;:::-;28158:139;;27885:419;;;:::o;28310:297::-;28450:34;28446:1;28438:6;28434:14;28427:58;28519:34;28514:2;28506:6;28502:15;28495:59;28588:11;28583:2;28575:6;28571:15;28564:36;28310:297;:::o;28613:366::-;28755:3;28776:67;28840:2;28835:3;28776:67;:::i;:::-;28769:74;;28852:93;28941:3;28852:93;:::i;:::-;28970:2;28965:3;28961:12;28954:19;;28613:366;;;:::o;28985:419::-;29151:4;29189:2;29178:9;29174:18;29166:26;;29238:9;29232:4;29228:20;29224:1;29213:9;29209:17;29202:47;29266:131;29392:4;29266:131;:::i;:::-;29258:139;;28985:419;;;:::o;29410:240::-;29550:34;29546:1;29538:6;29534:14;29527:58;29619:23;29614:2;29606:6;29602:15;29595:48;29410:240;:::o;29656:366::-;29798:3;29819:67;29883:2;29878:3;29819:67;:::i;:::-;29812:74;;29895:93;29984:3;29895:93;:::i;:::-;30013:2;30008:3;30004:12;29997:19;;29656:366;;;:::o;30028:419::-;30194:4;30232:2;30221:9;30217:18;30209:26;;30281:9;30275:4;30271:20;30267:1;30256:9;30252:17;30245:47;30309:131;30435:4;30309:131;:::i;:::-;30301:139;;30028:419;;;:::o;30453:169::-;30593:21;30589:1;30581:6;30577:14;30570:45;30453:169;:::o;30628:366::-;30770:3;30791:67;30855:2;30850:3;30791:67;:::i;:::-;30784:74;;30867:93;30956:3;30867:93;:::i;:::-;30985:2;30980:3;30976:12;30969:19;;30628:366;;;:::o;31000:419::-;31166:4;31204:2;31193:9;31189:18;31181:26;;31253:9;31247:4;31243:20;31239:1;31228:9;31224:17;31217:47;31281:131;31407:4;31281:131;:::i;:::-;31273:139;;31000:419;;;:::o;31425:241::-;31565:34;31561:1;31553:6;31549:14;31542:58;31634:24;31629:2;31621:6;31617:15;31610:49;31425:241;:::o;31672:366::-;31814:3;31835:67;31899:2;31894:3;31835:67;:::i;:::-;31828:74;;31911:93;32000:3;31911:93;:::i;:::-;32029:2;32024:3;32020:12;32013:19;;31672:366;;;:::o;32044:419::-;32210:4;32248:2;32237:9;32233:18;32225:26;;32297:9;32291:4;32287:20;32283:1;32272:9;32268:17;32261:47;32325:131;32451:4;32325:131;:::i;:::-;32317:139;;32044:419;;;:::o;32469:191::-;32509:4;32529:20;32547:1;32529:20;:::i;:::-;32524:25;;32563:20;32581:1;32563:20;:::i;:::-;32558:25;;32602:1;32599;32596:8;32593:34;;;32607:18;;:::i;:::-;32593:34;32652:1;32649;32645:9;32637:17;;32469:191;;;;:::o;32666:225::-;32806:34;32802:1;32794:6;32790:14;32783:58;32875:8;32870:2;32862:6;32858:15;32851:33;32666:225;:::o;32897:366::-;33039:3;33060:67;33124:2;33119:3;33060:67;:::i;:::-;33053:74;;33136:93;33225:3;33136:93;:::i;:::-;33254:2;33249:3;33245:12;33238:19;;32897:366;;;:::o;33269:419::-;33435:4;33473:2;33462:9;33458:18;33450:26;;33522:9;33516:4;33512:20;33508:1;33497:9;33493:17;33486:47;33550:131;33676:4;33550:131;:::i;:::-;33542:139;;33269:419;;;:::o;33694:147::-;33795:11;33832:3;33817:18;;33694:147;;;;:::o;33847:114::-;;:::o;33967:398::-;34126:3;34147:83;34228:1;34223:3;34147:83;:::i;:::-;34140:90;;34239:93;34328:3;34239:93;:::i;:::-;34357:1;34352:3;34348:11;34341:18;;33967:398;;;:::o;34371:379::-;34555:3;34577:147;34720:3;34577:147;:::i;:::-;34570:154;;34741:3;34734:10;;34371:379;;;:::o;34756:442::-;34905:4;34943:2;34932:9;34928:18;34920:26;;34956:71;35024:1;35013:9;35009:17;35000:6;34956:71;:::i;:::-;35037:72;35105:2;35094:9;35090:18;35081:6;35037:72;:::i;:::-;35119;35187:2;35176:9;35172:18;35163:6;35119:72;:::i;:::-;34756:442;;;;;;:::o;35204:180::-;35252:77;35249:1;35242:88;35349:4;35346:1;35339:15;35373:4;35370:1;35363:15;35390:180;35438:77;35435:1;35428:88;35535:4;35532:1;35525:15;35559:4;35556:1;35549:15;35576:143;35633:5;35664:6;35658:13;35649:22;;35680:33;35707:5;35680:33;:::i;:::-;35576:143;;;;:::o;35725:351::-;35795:6;35844:2;35832:9;35823:7;35819:23;35815:32;35812:119;;;35850:79;;:::i;:::-;35812:119;35970:1;35995:64;36051:7;36042:6;36031:9;36027:22;35995:64;:::i;:::-;35985:74;;35941:128;35725:351;;;;:::o;36082:85::-;36127:7;36156:5;36145:16;;36082:85;;;:::o;36173:158::-;36231:9;36264:61;36282:42;36291:32;36317:5;36291:32;:::i;:::-;36282:42;:::i;:::-;36264:61;:::i;:::-;36251:74;;36173:158;;;:::o;36337:147::-;36432:45;36471:5;36432:45;:::i;:::-;36427:3;36420:58;36337:147;;:::o;36490:114::-;36557:6;36591:5;36585:12;36575:22;;36490:114;;;:::o;36610:184::-;36709:11;36743:6;36738:3;36731:19;36783:4;36778:3;36774:14;36759:29;;36610:184;;;;:::o;36800:132::-;36867:4;36890:3;36882:11;;36920:4;36915:3;36911:14;36903:22;;36800:132;;;:::o;36938:108::-;37015:24;37033:5;37015:24;:::i;:::-;37010:3;37003:37;36938:108;;:::o;37052:179::-;37121:10;37142:46;37184:3;37176:6;37142:46;:::i;:::-;37220:4;37215:3;37211:14;37197:28;;37052:179;;;;:::o;37237:113::-;37307:4;37339;37334:3;37330:14;37322:22;;37237:113;;;:::o;37386:732::-;37505:3;37534:54;37582:5;37534:54;:::i;:::-;37604:86;37683:6;37678:3;37604:86;:::i;:::-;37597:93;;37714:56;37764:5;37714:56;:::i;:::-;37793:7;37824:1;37809:284;37834:6;37831:1;37828:13;37809:284;;;37910:6;37904:13;37937:63;37996:3;37981:13;37937:63;:::i;:::-;37930:70;;38023:60;38076:6;38023:60;:::i;:::-;38013:70;;37869:224;37856:1;37853;37849:9;37844:14;;37809:284;;;37813:14;38109:3;38102:10;;37510:608;;;37386:732;;;;:::o;38124:831::-;38387:4;38425:3;38414:9;38410:19;38402:27;;38439:71;38507:1;38496:9;38492:17;38483:6;38439:71;:::i;:::-;38520:80;38596:2;38585:9;38581:18;38572:6;38520:80;:::i;:::-;38647:9;38641:4;38637:20;38632:2;38621:9;38617:18;38610:48;38675:108;38778:4;38769:6;38675:108;:::i;:::-;38667:116;;38793:72;38861:2;38850:9;38846:18;38837:6;38793:72;:::i;:::-;38875:73;38943:3;38932:9;38928:19;38919:6;38875:73;:::i;:::-;38124:831;;;;;;;;:::o;38961:807::-;39210:4;39248:3;39237:9;39233:19;39225:27;;39262:71;39330:1;39319:9;39315:17;39306:6;39262:71;:::i;:::-;39343:72;39411:2;39400:9;39396:18;39387:6;39343:72;:::i;:::-;39425:80;39501:2;39490:9;39486:18;39477:6;39425:80;:::i;:::-;39515;39591:2;39580:9;39576:18;39567:6;39515:80;:::i;:::-;39605:73;39673:3;39662:9;39658:19;39649:6;39605:73;:::i;:::-;39688;39756:3;39745:9;39741:19;39732:6;39688:73;:::i;:::-;38961:807;;;;;;;;;:::o;39774:663::-;39862:6;39870;39878;39927:2;39915:9;39906:7;39902:23;39898:32;39895:119;;;39933:79;;:::i;:::-;39895:119;40053:1;40078:64;40134:7;40125:6;40114:9;40110:22;40078:64;:::i;:::-;40068:74;;40024:128;40191:2;40217:64;40273:7;40264:6;40253:9;40249:22;40217:64;:::i;:::-;40207:74;;40162:129;40330:2;40356:64;40412:7;40403:6;40392:9;40388:22;40356:64;:::i;:::-;40346:74;;40301:129;39774:663;;;;;:::o

Swarm Source

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