ETH Price: $2,764.98 (+5.39%)
Gas: 1.33 Gwei

Token

Starset DeFi (STARSET)
 

Overview

Max Total Supply

1,000,000,000 STARSET

Holders

4

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
994,999,999.999999999964141085 STARSET

Value
$0.00
0x25ed9d8b35e6dee8efe1316ec816a3a8a7e17ca6
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:
STARSET

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 1000000 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

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

/*

Starset DeFi

https://starsetdefi.io

*/

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

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

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

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

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

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

library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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

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

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

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

    function WETH() external pure returns (address);

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

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

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

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

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

contract STARSET is Ownable, IERC20 {
    address DEAD = 0x000000000000000000000000000000000000dEaD;
    address ZERO = 0x0000000000000000000000000000000000000000;
    address UNISWAPROUTER = address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
    string private _name = "Starset DeFi";
    string private _symbol = "STARSET";
    uint256 public swapTokensAtAmount = 100000 * (10**18);uint256 public treasuryFee =1300;uint256 public liquidityFee=  100;uint256 public dividendFee = 100;uint256 public totalFee = 1500;
    uint256 public lastSwapTime;
    bool swapAllToken = true;
    bool public swapEnabled = true;
    bool public taxEnabled = true;
    bool public compoundingEnabled = true;

    uint256 private _totalSupply;
    bool private swapping;

    address marketingWallet;
    address liquidityWallet;

    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public automatedMarketMakerPairs;
    mapping(address => bool) private _whiteList;
    mapping(address => bool) isBlacklisted;

    event SwapAndAddLiquidity(
        uint256 tokensSwapped,
        uint256 nativeReceived,
        uint256 tokensIntoLiquidity
    );
    event SendDividends(uint256 tokensSwapped, uint256 amount);
    event ExcludeFromFees(address indexed account, bool isExcluded);
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );
    event SwapEnabled(bool enabled);
    event TaxEnabled(bool enabled);
    event CompoundingEnabled(bool enabled);
    event BlacklistEnabled(bool enabled);

    DividendTracker public dividendTracker;
    IUniswapV2Router02 public uniswapV2Router;

    address public uniswapV2Pair;

    uint256 public maxTx = 59;
    uint256 public maxWallet = 250;

    bool isOpen = false;

    mapping(address => bool) private _isExcludedFromMaxTx;
    mapping(address => bool) private _isExcludedFromMaxWallet;

    //BLACKHAT PROTECTION
    bool public _hasLiqBeenAdded = false;
    mapping (address => bool) private _liquidityHolders;
    mapping (address => bool) private _isSniper;
    uint256 private _liqAddBlock;
    uint256 private snipeBlockAmt;
    uint256 public snipersCaught;
    

    event SniperCaught(address sniperAddress);

    constructor(
        address _marketingWallet,
        address _liquidityWallet,
        address[] memory whitelistAddress,
        uint256 _snipeBlockAmt
    ) {
        marketingWallet = _marketingWallet;
        liquidityWallet = _liquidityWallet;
        includeToWhiteList(whitelistAddress);

        dividendTracker = new DividendTracker(address(this), UNISWAPROUTER);

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(UNISWAPROUTER);

        address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = _uniswapV2Pair;

        _setAutomatedMarketMakerPair(_uniswapV2Pair, true);

        dividendTracker.excludeFromDividends(address(dividendTracker), true);
        dividendTracker.excludeFromDividends(address(this), true);
        dividendTracker.excludeFromDividends(owner(), true);
        dividendTracker.excludeFromDividends(address(_uniswapV2Router), true);

        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(dividendTracker), true);

        excludeFromMaxTx(owner(), true);
        excludeFromMaxTx(address(this), true);
        excludeFromMaxTx(address(dividendTracker), true);

        excludeFromMaxWallet(owner(), true);
        excludeFromMaxWallet(address(this), true);
        excludeFromMaxWallet(address(dividendTracker), true);

        snipeBlockAmt = _snipeBlockAmt;
        addLiquidityHolder(msg.sender);

        _mint(owner(), 1000000000 * (10**18));
    }

    receive() external payable {}

    function name() public view returns (string memory) {
        return _name;
    }

    function symbol() public view returns (string memory) {
        return _symbol;
    }

    function decimals() public pure returns (uint8) {
        return 18;
    }

    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    function balanceOf(address account)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _balances[account];
    }

    function allowance(address owner, address spender)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue)
        public
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender] + addedValue
        );
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        returns (bool)
    {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(
            currentAllowance >= subtractedValue,
            "STARSET: decreased allowance below zero"
        );
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        return true;
    }

    function transfer(address recipient, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    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,
            "STARSET: transfer amount exceeds allowance"
        );
        _approve(sender, _msgSender(), currentAllowance - amount);
        return true;
    }

    function openTrading() external onlyOwner {
        isOpen = true;
    }

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal {
        require(
            isOpen ||
                sender == owner() ||
                recipient == owner() ||
                _whiteList[sender] ||
                _whiteList[recipient],
            "Not Open"
        );

        require(!isBlacklisted[sender], "STARSET: Sender is blacklisted");
        require(!isBlacklisted[recipient], "STARSET: Recipient is blacklisted");

        require(sender != address(0), "STARSET: transfer from the zero address");
        require(recipient != address(0), "FFSTARSETF: transfer to the zero address");

        if (!_hasLiqBeenAdded) {
            _checkLiquidityAdd(sender, recipient);
        } else {
            if (_liqAddBlock > 0 
                && sender == uniswapV2Pair 
                && !_liquidityHolders[sender]
                && !_liquidityHolders[recipient]
            ) {
                if (block.number - _liqAddBlock < snipeBlockAmt) {
                    _isSniper[recipient] = true;
                    snipersCaught ++;
                    emit SniperCaught(recipient); //pow
                }
            }
        }


        uint256 _maxTxAmount = (totalSupply() * maxTx) / 10000; uint256 _maxWallet = (totalSupply() * maxWallet) / 10000;
        require(
            amount <= _maxTxAmount || _isExcludedFromMaxTx[sender],
            "TX Limit Exceeded"
        );

        if (
            sender != owner() &&
            recipient != address(this) &&
            recipient != address(DEAD) &&
            recipient != uniswapV2Pair
        ) {
            uint256 currentBalance = balanceOf(recipient);
            require(
                _isExcludedFromMaxWallet[recipient] ||
                    (currentBalance + amount <= _maxWallet)
            );
        }

        uint256 senderBalance = _balances[sender];
        require(
            senderBalance >= amount,
            "STARSET: transfer amount exceeds balance"
        );

        uint256 contractTokenBalance = balanceOf(address(this));
        uint256 contractNativeBalance = address(this).balance;

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            swapEnabled && // True
            canSwap && // true
            !swapping && // swapping=false !false true
            !automatedMarketMakerPairs[sender] && // no swap on remove liquidity step 1 or DEX buy
            sender != address(uniswapV2Router) && // no swap on remove liquidity step 2
            sender != owner() &&
            recipient != owner()
        ) {
            swapping = true;

            if (!swapAllToken) {
                contractTokenBalance = swapTokensAtAmount;
            }
            _executeSwap(contractTokenBalance, contractNativeBalance);

            lastSwapTime = block.timestamp;
            swapping = false;
        }

        bool takeFee;

        if (
            sender == address(uniswapV2Pair) ||
            recipient == address(uniswapV2Pair)
        ) {
            takeFee = true;
        }

        if (_isExcludedFromFees[sender] || _isExcludedFromFees[recipient]) {
            takeFee = false;
        }

        if (swapping || !taxEnabled) {
            takeFee = false;
        }

        if (takeFee) {
            uint256 fees = (amount * totalFee) / 10000;
            amount -= fees;
            _executeTransfer(sender, address(this), fees);
        }

        _executeTransfer(sender, recipient, amount);

        dividendTracker.setBalance(payable(sender), balanceOf(sender));
        dividendTracker.setBalance(payable(recipient), balanceOf(recipient));
    }

    function _executeTransfer(
        address sender,
        address recipient,
        uint256 amount
    ) private {
        require(sender != address(0), "STARSET: transfer from the zero address");
        require(recipient != address(0), "STARSET: transfer to the zero address");
        uint256 senderBalance = _balances[sender];
        require(
            senderBalance >= amount,
            "STARSET: transfer amount exceeds balance"
        );
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;
        emit Transfer(sender, recipient, amount);
    }

    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) private {
        require(owner != address(0), "STARSET: approve from the zero address");
        require(spender != address(0), "STARSET: approve to the zero address");
        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    function _mint(address account, uint256 amount) private {
        require(account != address(0), "STARSET: mint to the zero address");
        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);
    }

    function _burn(address account, uint256 amount) private {
        require(account != address(0), "STARSET: burn from the zero address");
        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "STARSET: burn amount exceeds balance");
        _balances[account] = accountBalance - amount;
        _totalSupply -= amount;
        emit Transfer(account, address(0), amount);
    }

    function swapTokensForNative(uint256 tokens) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        _approve(address(this), address(uniswapV2Router), tokens);
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokens,
            0, // accept any amount of native
            path,
            address(this),
            block.timestamp
        );
    }

    function addLiquidity(uint256 tokens, uint256 native) private {
        _approve(address(this), address(uniswapV2Router), tokens);
        uniswapV2Router.addLiquidityETH{value: native}(
            address(this),
            tokens,
            0, // slippage unavoidable
            0, // slippage unavoidable
            liquidityWallet,
            block.timestamp
        );
    }

    function includeToWhiteList(address[] memory _users) private {
        for (uint8 i = 0; i < _users.length; i++) {
            _whiteList[_users[i]] = true;
        }
    }

    function _executeSwap(uint256 tokens, uint256 native) private {
        if (tokens <= 0) {
            return;
        }

        uint256 swapTokensMarketing;
        if (address(marketingWallet) != address(0)) {
            swapTokensMarketing = (tokens * treasuryFee) / totalFee;
        }

        uint256 swapTokensDividends;
        if (dividendTracker.totalSupply() > 0) {
            swapTokensDividends = (tokens * dividendFee) / totalFee;
        }

        uint256 tokensForLiquidity = tokens -
            swapTokensMarketing -
            swapTokensDividends;
        uint256 swapTokensLiquidity = tokensForLiquidity / 2;
        uint256 addTokensLiquidity = tokensForLiquidity - swapTokensLiquidity;
        uint256 swapTokensTotal = swapTokensMarketing +
            swapTokensDividends +
            swapTokensLiquidity;

        uint256 initNativeBal = address(this).balance;
        swapTokensForNative(swapTokensTotal);
        uint256 nativeSwapped = (address(this).balance - initNativeBal) +
            native;

        uint256 nativeMarketing = (nativeSwapped * swapTokensMarketing) /
            swapTokensTotal;
        uint256 nativeDividends = (nativeSwapped * swapTokensDividends) /
            swapTokensTotal;
        uint256 nativeLiquidity = nativeSwapped -
            nativeMarketing -
            nativeDividends;

        if (nativeMarketing > 0) {
            payable(marketingWallet).transfer(nativeMarketing);
        }

        addLiquidity(addTokensLiquidity, nativeLiquidity);
        emit SwapAndAddLiquidity(
            swapTokensLiquidity,
            nativeLiquidity,
            addTokensLiquidity
        );

        if (nativeDividends > 0) {
            (bool success, ) = address(dividendTracker).call{
                value: nativeDividends
            }("");
            if (success) {
                emit SendDividends(swapTokensDividends, nativeDividends);
            }
        }
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        require(
            _isExcludedFromFees[account] != excluded,
            "STARSET: account is already set to requested state"
        );
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

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

    function manualSendDividend(uint256 amount, address holder)
        external
        onlyOwner
    {
        dividendTracker.manualSendDividend(amount, holder);
    }

    function excludeFromDividends(address account, bool excluded)
        public
        onlyOwner
    {
        dividendTracker.excludeFromDividends(account, excluded);
    }

    function isExcludedFromDividends(address account)
        public
        view
        returns (bool)
    {
        return dividendTracker.isExcludedFromDividends(account);
    }

    function setWallet(
        address payable _marketingWallet,
        address payable _liquidityWallet
    ) external onlyOwner {
        marketingWallet = _marketingWallet;
        liquidityWallet = _liquidityWallet;
    }

    function setAutomatedMarketMakerPair(address pair, bool value)
        public
        onlyOwner
    {
        require(pair != uniswapV2Pair, "STARSET: DEX pair can not be removed");
        _setAutomatedMarketMakerPair(pair, value);
    }

    function setFee(
        uint256 _treasuryFee,
        uint256 _liquidityFee,
        uint256 _dividendFee
    ) external onlyOwner {
        treasuryFee = _treasuryFee;
        liquidityFee = _liquidityFee;
        dividendFee = _dividendFee;
        totalFee = _treasuryFee + _liquidityFee + _dividendFee;
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        require(
            automatedMarketMakerPairs[pair] != value,
            "STARSET: automated market maker pair is already set to that value"
        );
        automatedMarketMakerPairs[pair] = value;
        if (value) {
            dividendTracker.excludeFromDividends(pair, true);
        }
        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateUniswapV2Router(address newAddress) public onlyOwner {
        require(
            newAddress != address(uniswapV2Router),
            "STARSET: the router is already set to the new address"
        );
        emit UpdateUniswapV2Router(newAddress, address(uniswapV2Router));
        uniswapV2Router = IUniswapV2Router02(newAddress);
        address _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory())
            .createPair(address(this), uniswapV2Router.WETH());
        uniswapV2Pair = _uniswapV2Pair;
    }

    function claim() public {
        dividendTracker.processAccount(payable(_msgSender()));
    }

    function compound() public {
        require(compoundingEnabled, "STARSET: compounding is not enabled");
        dividendTracker.compoundAccount(payable(_msgSender()));
    }

    function withdrawableDividendOf(address account)
        public
        view
        returns (uint256)
    {
        return dividendTracker.withdrawableDividendOf(account);
    }

    function withdrawnDividendOf(address account)
        public
        view
        returns (uint256)
    {
        return dividendTracker.withdrawnDividendOf(account);
    }

    function accumulativeDividendOf(address account)
        public
        view
        returns (uint256)
    {
        return dividendTracker.accumulativeDividendOf(account);
    }

    function getAccountInfo(address account)
        public
        view
        returns (
            address,
            uint256,
            uint256,
            uint256,
            uint256
        )
    {
        return dividendTracker.getAccountInfo(account);
    }

    function getLastClaimTime(address account) public view returns (uint256) {
        return dividendTracker.getLastClaimTime(account);
    }

    function setSwapEnabled(bool _enabled) external onlyOwner {
        swapEnabled = _enabled;
        emit SwapEnabled(_enabled);
    }

    function setTaxEnabled(bool _enabled) external onlyOwner {
        taxEnabled = _enabled;
        emit TaxEnabled(_enabled);
    }

    function setCompoundingEnabled(bool _enabled) external onlyOwner {
        compoundingEnabled = _enabled;
        emit CompoundingEnabled(_enabled);
    }

    function updateDividendSettings(
        bool _swapEnabled,
        uint256 _swapTokensAtAmount,
        bool _swapAllToken
    ) external onlyOwner {
        swapEnabled = _swapEnabled;
        swapTokensAtAmount = _swapTokensAtAmount;
        swapAllToken = _swapAllToken;
    }

    function setMaxTx(uint256 maxt) external onlyOwner {
        require(maxt >= 75 && maxt <= 10000, "MAXT must be between 75 and 10000");
        maxTx = maxt;
    }

    function excludeFromMaxTx(address account, bool excluded) public onlyOwner {
        _isExcludedFromMaxTx[account] = excluded;
    }

    function isExcludedFromMaxTx(address account) public view returns (bool) {
        return _isExcludedFromMaxTx[account];
    }

    function setMaxWallet(uint256 maxw) external onlyOwner {
        require(
            maxw >= 175 && maxw <= 10000,
            "MAXW must be between 175 and 10000"
        );
        maxWallet = maxw;
    }

    function excludeFromMaxWallet(address account, bool excluded)
        public
        onlyOwner
    {
        _isExcludedFromMaxWallet[account] = excluded;
    }

    function isExcludedFromMaxWallet(address account)
        public
        view
        returns (bool)
    {
        return _isExcludedFromMaxWallet[account];
    }

    function rescueToken(address _token, uint256 _amount) external onlyOwner {
        IERC20(_token).transfer(msg.sender, _amount);
    }

    function rescueETH(uint256 _amount) external onlyOwner {
        payable(msg.sender).transfer(_amount);
    }

    function blackList(address _user) public onlyOwner {
        require(!isBlacklisted[_user], "user already blacklisted");
        isBlacklisted[_user] = true;
        // events?
    }

    function removeFromBlacklist(address _user) public onlyOwner {
        require(isBlacklisted[_user], "user already whitelisted");
        isBlacklisted[_user] = false;
        //events?
    }

    function blackListMany(address[] memory _users) public onlyOwner {
        for (uint8 i = 0; i < _users.length; i++) {
            isBlacklisted[_users[i]] = true;
        }
    }

    function unBlackListMany(address[] memory _users) public onlyOwner {
        for (uint8 i = 0; i < _users.length; i++) {
            isBlacklisted[_users[i]] = false;
        }
    }

    //BLACKHAT PROTECTION
    function _checkLiquidityAdd(address from, address to) private {
        require(!_hasLiqBeenAdded, "Liquidity already added and marked.");
        if (_liquidityHolders[from] && to == uniswapV2Pair) {
            _hasLiqBeenAdded = true;
            _liqAddBlock = block.number;
        }
    }

    function isSniperCheck(address account) public view returns (bool) {
        return _isSniper[account];
    }
    
    function isLiquidityHolderCheck(address account) public view returns (bool) {
        return _liquidityHolders[account];
    }
    
    function addSniper(address sniperAddress) external onlyOwner() {
        require(sniperAddress != uniswapV2Pair, "ERC20: Can not add uniswapV2Pair to sniper list");
        require(sniperAddress != address(uniswapV2Router), "ERC20: Can not add uniswapV2Router to sniper list");

        _isSniper[sniperAddress] = true;
    }
    
    function removeSniper(address sniperAddress) external onlyOwner() {
        require(_isSniper[sniperAddress], "ERC20: Is not sniper");

        _isSniper[sniperAddress] = false;
    }

    function addLiquidityHolder(address liquidityHolder) public onlyOwner() {
        _liquidityHolders[liquidityHolder] = true;
    }
}

contract DividendTracker is Ownable, IERC20 {
    address UNISWAPROUTER;

    string private _name = "STARSET_DividendTracker";
    string private _symbol = "STARSET_DividendTracker";

    uint256 public lastProcessedIndex;

    uint256 private _totalSupply;
    mapping(address => uint256) private _balances;

    uint256 private constant magnitude = 2**128;
    uint256 public immutable minTokenBalanceForDividends;
    uint256 private magnifiedDividendPerShare;
    uint256 public totalDividendsDistributed;
    uint256 public totalDividendsWithdrawn;

    address public tokenAddress;

    mapping(address => bool) public excludedFromDividends;
    mapping(address => int256) private magnifiedDividendCorrections;
    mapping(address => uint256) private withdrawnDividends;
    mapping(address => uint256) private lastClaimTimes;

    event DividendsDistributed(address indexed from, uint256 weiAmount);
    event DividendWithdrawn(address indexed to, uint256 weiAmount);
    event ExcludeFromDividends(address indexed account, bool excluded);
    event Claim(address indexed account, uint256 amount);
    event Compound(address indexed account, uint256 amount, uint256 tokens);

    struct AccountInfo {
        address account;
        uint256 withdrawableDividends;
        uint256 totalDividends;
        uint256 lastClaimTime;
    }

    constructor(address _tokenAddress, address _uniswapRouter) {
        minTokenBalanceForDividends = 10000 * (10**18);
        tokenAddress = _tokenAddress;
        UNISWAPROUTER = _uniswapRouter;
    }

    receive() external payable {
        distributeDividends();
    }

    function distributeDividends() public payable {
        require(_totalSupply > 0);
        if (msg.value > 0) {
            magnifiedDividendPerShare =
                magnifiedDividendPerShare +
                ((msg.value * magnitude) / _totalSupply);
            emit DividendsDistributed(msg.sender, msg.value);
            totalDividendsDistributed += msg.value;
        }
    }

    function setBalance(address payable account, uint256 newBalance)
        external
        onlyOwner
    {
        if (excludedFromDividends[account]) {
            return;
        }
        if (newBalance >= minTokenBalanceForDividends) {
            _setBalance(account, newBalance);
        } else {
            _setBalance(account, 0);
        }
    }

    function excludeFromDividends(address account, bool excluded)
        external
        onlyOwner
    {
        require(
            excludedFromDividends[account] != excluded,
            "STARSET_DividendTracker: account already set to requested state"
        );
        excludedFromDividends[account] = excluded;
        if (excluded) {
            _setBalance(account, 0);
        } else {
            uint256 newBalance = IERC20(tokenAddress).balanceOf(account);
            if (newBalance >= minTokenBalanceForDividends) {
                _setBalance(account, newBalance);
            } else {
                _setBalance(account, 0);
            }
        }
        emit ExcludeFromDividends(account, excluded);
    }

    function isExcludedFromDividends(address account)
        public
        view
        returns (bool)
    {
        return excludedFromDividends[account];
    }

    function manualSendDividend(uint256 amount, address holder)
        external
        onlyOwner
    {
        uint256 contractETHBalance = address(this).balance;
        payable(holder).transfer(amount > 0 ? amount : contractETHBalance);
    }

    function _setBalance(address account, uint256 newBalance) internal {
        uint256 currentBalance = _balances[account];
        if (newBalance > currentBalance) {
            uint256 addAmount = newBalance - currentBalance;
            _mint(account, addAmount);
        } else if (newBalance < currentBalance) {
            uint256 subAmount = currentBalance - newBalance;
            _burn(account, subAmount);
        }
    }

    function _mint(address account, uint256 amount) private {
        require(
            account != address(0),
            "STARSET_DividendTracker: mint to the zero address"
        );
        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);
        magnifiedDividendCorrections[account] =
            magnifiedDividendCorrections[account] -
            int256(magnifiedDividendPerShare * amount);
    }

    function _burn(address account, uint256 amount) private {
        require(
            account != address(0),
            "STARSET_DividendTracker: burn from the zero address"
        );
        uint256 accountBalance = _balances[account];
        require(
            accountBalance >= amount,
            "STARSET_DividendTracker: burn amount exceeds balance"
        );
        _balances[account] = accountBalance - amount;
        _totalSupply -= amount;
        emit Transfer(account, address(0), amount);
        magnifiedDividendCorrections[account] =
            magnifiedDividendCorrections[account] +
            int256(magnifiedDividendPerShare * amount);
    }

    function processAccount(address payable account)
        public
        onlyOwner
        returns (bool)
    {
        uint256 amount = _withdrawDividendOfUser(account);
        if (amount > 0) {
            lastClaimTimes[account] = block.timestamp;
            emit Claim(account, amount);
            return true;
        }
        return false;
    }

    function _withdrawDividendOfUser(address payable account)
        private
        returns (uint256)
    {
        uint256 _withdrawableDividend = withdrawableDividendOf(account);
        if (_withdrawableDividend > 0) {
            withdrawnDividends[account] += _withdrawableDividend;
            totalDividendsWithdrawn += _withdrawableDividend;
            emit DividendWithdrawn(account, _withdrawableDividend);
            (bool success, ) = account.call{
                value: _withdrawableDividend,
                gas: 3000
            }("");
            if (!success) {
                withdrawnDividends[account] -= _withdrawableDividend;
                totalDividendsWithdrawn -= _withdrawableDividend;
                return 0;
            }
            return _withdrawableDividend;
        }
        return 0;
    }

    function compoundAccount(address payable account)
        public
        onlyOwner
        returns (bool)
    {
        (uint256 amount, uint256 tokens) = _compoundDividendOfUser(account);
        if (amount > 0) {
            lastClaimTimes[account] = block.timestamp;
            emit Compound(account, amount, tokens);
            return true;
        }
        return false;
    }

    function _compoundDividendOfUser(address payable account)
        private
        returns (uint256, uint256)
    {
        uint256 _withdrawableDividend = withdrawableDividendOf(account);
        if (_withdrawableDividend > 0) {
            withdrawnDividends[account] += _withdrawableDividend;
            totalDividendsWithdrawn += _withdrawableDividend;
            emit DividendWithdrawn(account, _withdrawableDividend);

            IUniswapV2Router02 uniswapV2Router = IUniswapV2Router02(
                UNISWAPROUTER
            );

            address[] memory path = new address[](2);
            path[0] = uniswapV2Router.WETH();
            path[1] = address(tokenAddress);

            bool success;
            uint256 tokens;

            uint256 initTokenBal = IERC20(tokenAddress).balanceOf(account);
            try
                uniswapV2Router
                    .swapExactETHForTokensSupportingFeeOnTransferTokens{
                    value: _withdrawableDividend
                }(0, path, address(account), block.timestamp)
            {
                success = true;
                tokens = IERC20(tokenAddress).balanceOf(account) - initTokenBal;
            } catch Error(
                string memory /*err*/
            ) {
                success = false;
            }

            if (!success) {
                withdrawnDividends[account] -= _withdrawableDividend;
                totalDividendsWithdrawn -= _withdrawableDividend;
                return (0, 0);
            }

            return (_withdrawableDividend, tokens);
        }
        return (0, 0);
    }

    function withdrawableDividendOf(address account)
        public
        view
        returns (uint256)
    {
        return accumulativeDividendOf(account) - withdrawnDividends[account];
    }

    function withdrawnDividendOf(address account)
        public
        view
        returns (uint256)
    {
        return withdrawnDividends[account];
    }

    function accumulativeDividendOf(address account)
        public
        view
        returns (uint256)
    {
        int256 a = int256(magnifiedDividendPerShare * balanceOf(account));
        int256 b = magnifiedDividendCorrections[account]; // this is an explicit int256 (signed)
        return uint256(a + b) / magnitude;
    }

    function getAccountInfo(address account)
        public
        view
        returns (
            address,
            uint256,
            uint256,
            uint256,
            uint256
        )
    {
        AccountInfo memory info;
        info.account = account;
        info.withdrawableDividends = withdrawableDividendOf(account);
        info.totalDividends = accumulativeDividendOf(account);
        info.lastClaimTime = lastClaimTimes[account];
        return (
            info.account,
            info.withdrawableDividends,
            info.totalDividends,
            info.lastClaimTime,
            totalDividendsWithdrawn
        );
    }

    function getLastClaimTime(address account) public view returns (uint256) {
        return lastClaimTimes[account];
    }

    function name() public view returns (string memory) {
        return _name;
    }

    function symbol() public view returns (string memory) {
        return _symbol;
    }

    function decimals() public pure returns (uint8) {
        return 18;
    }

    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }

    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }

    function transfer(address, uint256) public pure override returns (bool) {
        revert("STARSET_DividendTracker: method not implemented");
    }

    function allowance(address, address)
        public
        pure
        override
        returns (uint256)
    {
        revert("STARSET_DividendTracker: method not implemented");
    }

    function approve(address, uint256) public pure override returns (bool) {
        revert("STARSET_DividendTracker: method not implemented");
    }

    function transferFrom(
        address,
        address,
        uint256
    ) public pure override returns (bool) {
        revert("STARSET_DividendTracker: method not implemented");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"},{"internalType":"address","name":"_liquidityWallet","type":"address"},{"internalType":"address[]","name":"whitelistAddress","type":"address[]"},{"internalType":"uint256","name":"_snipeBlockAmt","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"BlacklistEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"CompoundingEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SendDividends","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":"address","name":"sniperAddress","type":"address"}],"name":"SniperCaught","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"nativeReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndAddLiquidity","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"TaxEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[],"name":"_hasLiqBeenAdded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"accumulativeDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"liquidityHolder","type":"address"}],"name":"addLiquidityHolder","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sniperAddress","type":"address"}],"name":"addSniper","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"_user","type":"address"}],"name":"blackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"blackListMany","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"compound","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"compoundingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","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":"dividendFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dividendTracker","outputs":[{"internalType":"contract DividendTracker","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromDividends","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":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getAccountInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getLastClaimTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"isExcludedFromDividends","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromMaxTx","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromMaxWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isLiquidityHolderCheck","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isSniperCheck","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastSwapTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"holder","type":"address"}],"name":"manualSendDividend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTx","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":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"removeFromBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sniperAddress","type":"address"}],"name":"removeSniper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"rescueETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"rescueToken","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":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setCompoundingEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_treasuryFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_dividendFee","type":"uint256"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxt","type":"uint256"}],"name":"setMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxw","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setTaxEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_marketingWallet","type":"address"},{"internalType":"address payable","name":"_liquidityWallet","type":"address"}],"name":"setWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"snipersCaught","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"taxEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"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":"treasuryFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"unBlackListMany","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":"bool","name":"_swapEnabled","type":"bool"},{"internalType":"uint256","name":"_swapTokensAtAmount","type":"uint256"},{"internalType":"bool","name":"_swapAllToken","type":"bool"}],"name":"updateDividendSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateUniswapV2Router","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"withdrawableDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"withdrawnDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

600180546001600160a01b031990811661dead17909155600280548216905560038054909116737a250d5630b4cf539739df2c5dacb4c659f2488d17905560c0604052600c60808190526b53746172736574204465466960a01b60a09081526200006d916004919062000c19565b506040805180820190915260078082526614d5105494d15560ca1b60209092019182526200009e9160059162000c19565b5069152d02c7e14af6800000600655610514600755606460088190556009556105dc600a55600c805463ffffffff19166301010101179055603b60195560fa601a55601b805460ff19908116909155601e805490911690553480156200010357600080fd5b506040516200898e3803806200898e833981016040819052620001269162000d00565b62000131336200064a565b600e8054610100600160a81b0319166101006001600160a01b038781169190910291909117909155600f80546001600160a01b0319169185169190911790556200017b826200069a565b60035460405130916001600160a01b031690620001989062000ca8565b6001600160a01b03928316815291166020820152604001604051809103906000f080158015620001cc573d6000803e3d6000fd5b50601680546001600160a01b0319166001600160a01b039283161790556003546040805163c45a015560e01b815290519190921691600091839163c45a01559160048083019260209291908290030181865afa15801562000231573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000257919062000e00565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002a5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002cb919062000e00565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000319573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200033f919062000e00565b601780546001600160a01b038086166001600160a01b031992831617909255601880549284169290911691909117905590506200037e81600162000713565b60165460405162241fbd60e51b81526001600160a01b03909116600482018190526001602483015290630483f7a090604401600060405180830381600087803b158015620003cb57600080fd5b505af1158015620003e0573d6000803e3d6000fd5b505060165460405162241fbd60e51b8152306004820152600160248201526001600160a01b039091169250630483f7a09150604401600060405180830381600087803b1580156200043057600080fd5b505af115801562000445573d6000803e3d6000fd5b50506016546001600160a01b03169150630483f7a090506200046f6000546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260016024820152604401600060405180830381600087803b158015620004b857600080fd5b505af1158015620004cd573d6000803e3d6000fd5b505060165460405162241fbd60e51b81526001600160a01b038681166004830152600160248301529091169250630483f7a09150604401600060405180830381600087803b1580156200051f57600080fd5b505af115801562000534573d6000803e3d6000fd5b50505050620005546200054c6200088a60201b60201c565b600162000899565b6200056130600162000899565b6016546200057a906001600160a01b0316600162000899565b62000599620005916000546001600160a01b031690565b6001620009cf565b620005a6306001620009cf565b601654620005bf906001600160a01b03166001620009cf565b620005de620005d66000546001600160a01b031690565b600162000a45565b620005eb30600162000a45565b60165462000604906001600160a01b0316600162000a45565b6022839055620006143362000abb565b6200063e6200062b6000546001600160a01b031690565b6b033b2e3c9fd0803ce800000062000b2a565b50505050505062000ecc565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60005b81518160ff1610156200070f57600160146000848460ff1681518110620006c857620006c862000e25565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580620007068162000e51565b9150506200069d565b5050565b6001600160a01b03821660009081526013602052604090205460ff1615158115151415620007b85760405162461bcd60e51b815260206004820152604160248201527f535441525345543a206175746f6d61746564206d61726b6574206d616b65722060448201527f7061697220697320616c72656164792073657420746f20746861742076616c756064820152606560f81b608482015260a4015b60405180910390fd5b6001600160a01b0382166000908152601360205260409020805460ff191682158015919091179091556200084e5760165460405162241fbd60e51b81526001600160a01b0384811660048301526001602483015290911690630483f7a090604401600060405180830381600087803b1580156200083457600080fd5b505af115801562000849573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6000546001600160a01b031690565b6000546001600160a01b03163314620008e45760405162461bcd60e51b815260206004820181905260248201526000805160206200896e8339815191526044820152606401620007af565b6001600160a01b03821660009081526012602052604090205460ff1615158115151415620009705760405162461bcd60e51b815260206004820152603260248201527f535441525345543a206163636f756e7420697320616c72656164792073657420604482015271746f2072657175657374656420737461746560701b6064820152608401620007af565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6000546001600160a01b0316331462000a1a5760405162461bcd60e51b815260206004820181905260248201526000805160206200896e8339815191526044820152606401620007af565b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b6000546001600160a01b0316331462000a905760405162461bcd60e51b815260206004820181905260248201526000805160206200896e8339815191526044820152606401620007af565b6001600160a01b03919091166000908152601d60205260409020805460ff1916911515919091179055565b6000546001600160a01b0316331462000b065760405162461bcd60e51b815260206004820181905260248201526000805160206200896e8339815191526044820152606401620007af565b6001600160a01b03166000908152601f60205260409020805460ff19166001179055565b6001600160a01b03821662000b8c5760405162461bcd60e51b815260206004820152602160248201527f535441525345543a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401620007af565b80600d600082825462000ba0919062000e74565b90915550506001600160a01b0382166000908152601060205260408120805483929062000bcf90849062000e74565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b82805462000c279062000e8f565b90600052602060002090601f01602090048101928262000c4b576000855562000c96565b82601f1062000c6657805160ff191683800117855562000c96565b8280016001018555821562000c96579182015b8281111562000c9657825182559160200191906001019062000c79565b5062000ca492915062000cb6565b5090565b6125ba80620063b483390190565b5b8082111562000ca4576000815560010162000cb7565b80516001600160a01b038116811462000ce557600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121562000d1757600080fd5b62000d228562000ccd565b9350602062000d3381870162000ccd565b60408701519094506001600160401b038082111562000d5157600080fd5b818801915088601f83011262000d6657600080fd5b81518181111562000d7b5762000d7b62000cea565b8060051b604051601f19603f8301168101818110858211171562000da35762000da362000cea565b60405291825284820192508381018501918b83111562000dc257600080fd5b938501935b8285101562000deb5762000ddb8562000ccd565b8452938501939285019262000dc7565b60609a909a0151989b979a5050505050505050565b60006020828403121562000e1357600080fd5b62000e1e8262000ccd565b9392505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060ff821660ff81141562000e6b5762000e6b62000e3b565b60010192915050565b6000821982111562000e8a5762000e8a62000e3b565b500190565b600181811c9082168062000ea457607f821691505b6020821081141562000ec657634e487b7160e01b600052602260045260246000fd5b50919050565b6154d88062000edc6000396000f3fe60806040526004361061044e5760003560e01c80637b510fe811610243578063c3033aeb11610143578063e2f45605116100bb578063f2fde38b1161008a578063f69e20461161006f578063f69e204614610df7578063f8b45b0514610e0c578063fe33b10814610e2257600080fd5b8063f2fde38b14610db7578063f4571c4914610dd757600080fd5b8063e2f4560514610d4b578063e4956ce214610d61578063e79d416014610d81578063f1b234ad14610d9757600080fd5b8063cc32d17611610112578063d4c989d3116100f7578063d4c989d314610cb8578063dd62ed3e14610cd8578063e01af92c14610d2b57600080fd5b8063cc32d17614610c82578063d2fcc00114610c9857600080fd5b8063c3033aeb14610c0d578063c6af580b14610c2d578063c705c56914610c4d578063c9567bf914610c6d57600080fd5b80639e252f00116101d6578063a9059cbb116101a5578063b62496f51161018a578063b62496f514610b9d578063bc33718214610bcd578063c024666814610bed57600080fd5b8063a9059cbb14610b5d578063aafd847a14610b7d57600080fd5b80639e252f0014610add578063a457c2d714610afd578063a680e0bc14610b1d578063a8b9d24014610b3d57600080fd5b80638e126944116102125780638e12694414610a7257806395d89b4114610a9257806398118cb414610aa75780639a7a23d614610abd57600080fd5b80637b510fe8146109a8578063834caa5814610a07578063870bd30b14610a275780638da5cb5b14610a4757600080fd5b80633e3e95981161034e5780635d0044ca116102e15780636dd3d39f116102b057806370a082311161029557806370a082311461093a578063715018a61461097d5780637437681e1461099257600080fd5b80636dd3d39f146108d55780636ddd17131461091b57600080fd5b80635d0044ca1461082f5780635e843ad21461084f578063658c27a91461086f57806365b8dbc0146108b557600080fd5b80634fbee1931161031d5780634fbee1931461078f57806350a8e016146107d5578063537df3b6146107ef5780635b65b9ab1461080f57600080fd5b80633e3e95981461070d5780634838d1651461072d57806349bd5a5e1461074d5780634e71d92d1461077a57600080fd5b80631df4ccfc116103e15780632f4504ae116103b057806333251a0b1161039557806333251a0b146106ad57806333f3d628146106cd57806339509351146106ed57600080fd5b80632f4504ae14610670578063313ce5671461069157600080fd5b80631df4ccfc146105ed57806323b872dd1461060357806327ce0147146106235780632c1f52161461064357600080fd5b80631694505e1161041d5780631694505e146104fb57806318160ddd1461054d57806318e9b8b7146105625780631d7f3676146105a757600080fd5b80630483f7a01461045a57806306fdde031461047c578063095ea7b3146104a75780630dd87157146104d757600080fd5b3661045557005b600080fd5b34801561046657600080fd5b5061047a610475366004614e55565b610e38565b005b34801561048857600080fd5b50610491610f50565b60405161049e9190614e8e565b60405180910390f35b3480156104b357600080fd5b506104c76104c2366004614f01565b610fe2565b604051901515815260200161049e565b3480156104e357600080fd5b506104ed600b5481565b60405190815260200161049e565b34801561050757600080fd5b506017546105289073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161049e565b34801561055957600080fd5b50600d546104ed565b34801561056e57600080fd5b506104c761057d366004614f2d565b73ffffffffffffffffffffffffffffffffffffffff16600090815260208052604090205460ff1690565b3480156105b357600080fd5b506104c76105c2366004614f2d565b73ffffffffffffffffffffffffffffffffffffffff166000908152601f602052604090205460ff1690565b3480156105f957600080fd5b506104ed600a5481565b34801561060f57600080fd5b506104c761061e366004614f51565b610ff8565b34801561062f57600080fd5b506104ed61063e366004614f2d565b6110e5565b34801561064f57600080fd5b506016546105289073ffffffffffffffffffffffffffffffffffffffff1681565b34801561067c57600080fd5b50600c546104c7906301000000900460ff1681565b34801561069d57600080fd5b506040516012815260200161049e565b3480156106b957600080fd5b5061047a6106c8366004614f2d565b611181565b3480156106d957600080fd5b5061047a6106e8366004614f01565b6112db565b3480156106f957600080fd5b506104c7610708366004614f01565b6113f8565b34801561071957600080fd5b5061047a610728366004614f2d565b61143c565b34801561073957600080fd5b5061047a610748366004614f2d565b611661565b34801561075957600080fd5b506018546105289073ffffffffffffffffffffffffffffffffffffffff1681565b34801561078657600080fd5b5061047a6117c1565b34801561079b57600080fd5b506104c76107aa366004614f2d565b73ffffffffffffffffffffffffffffffffffffffff1660009081526012602052604090205460ff1690565b3480156107e157600080fd5b50601e546104c79060ff1681565b3480156107fb57600080fd5b5061047a61080a366004614f2d565b611873565b34801561081b57600080fd5b5061047a61082a366004614f92565b6119cf565b34801561083b57600080fd5b5061047a61084a366004614fbe565b611a7c565b34801561085b57600080fd5b5061047a61086a366004614fd7565b611ba1565b34801561087b57600080fd5b506104c761088a366004614f2d565b73ffffffffffffffffffffffffffffffffffffffff166000908152601c602052604090205460ff1690565b3480156108c157600080fd5b5061047a6108d0366004614f2d565b611c8b565b3480156108e157600080fd5b506104c76108f0366004614f2d565b73ffffffffffffffffffffffffffffffffffffffff166000908152601d602052604090205460ff1690565b34801561092757600080fd5b50600c546104c790610100900460ff1681565b34801561094657600080fd5b506104ed610955366004614f2d565b73ffffffffffffffffffffffffffffffffffffffff1660009081526010602052604090205490565b34801561098957600080fd5b5061047a612049565b34801561099e57600080fd5b506104ed60195481565b3480156109b457600080fd5b506109c86109c3366004614f2d565b6120d6565b6040805173ffffffffffffffffffffffffffffffffffffffff90961686526020860194909452928401919091526060830152608082015260a00161049e565b348015610a1357600080fd5b5061047a610a22366004614f2d565b612186565b348015610a3357600080fd5b50600c546104c79062010000900460ff1681565b348015610a5357600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff16610528565b348015610a7e57600080fd5b5061047a610a8d366004615019565b612256565b348015610a9e57600080fd5b50610491612336565b348015610ab357600080fd5b506104ed60085481565b348015610ac957600080fd5b5061047a610ad8366004614e55565b612345565b348015610ae957600080fd5b5061047a610af8366004614fbe565b61247e565b348015610b0957600080fd5b506104c7610b18366004614f01565b61252c565b348015610b2957600080fd5b506104ed610b38366004614f2d565b612606565b348015610b4957600080fd5b506104ed610b58366004614f2d565b61265f565b348015610b6957600080fd5b506104c7610b78366004614f01565b6126b8565b348015610b8957600080fd5b506104ed610b98366004614f2d565b6126c5565b348015610ba957600080fd5b506104c7610bb8366004614f2d565b60136020526000908152604090205460ff1681565b348015610bd957600080fd5b5061047a610be8366004614fbe565b61271e565b348015610bf957600080fd5b5061047a610c08366004614e55565b612843565b348015610c1957600080fd5b5061047a610c2836600461506d565b612a0a565b348015610c3957600080fd5b5061047a610c48366004615150565b612b24565b348015610c5957600080fd5b506104c7610c68366004614f2d565b612c17565b348015610c7957600080fd5b5061047a612cac565b348015610c8e57600080fd5b506104ed60075481565b348015610ca457600080fd5b5061047a610cb3366004614e55565b612d5a565b348015610cc457600080fd5b5061047a610cd3366004614e55565b612e31565b348015610ce457600080fd5b506104ed610cf336600461516d565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260116020908152604080832093909416825291909152205490565b348015610d3757600080fd5b5061047a610d46366004615150565b612f08565b348015610d5757600080fd5b506104ed60065481565b348015610d6d57600080fd5b5061047a610d7c366004615150565b612fef565b348015610d8d57600080fd5b506104ed60235481565b348015610da357600080fd5b5061047a610db236600461516d565b6130d8565b348015610dc357600080fd5b5061047a610dd2366004614f2d565b6131cd565b348015610de357600080fd5b5061047a610df236600461506d565b6132fa565b348015610e0357600080fd5b5061047a613414565b348015610e1857600080fd5b506104ed601a5481565b348015610e2e57600080fd5b506104ed60095481565b60005473ffffffffffffffffffffffffffffffffffffffff163314610ebe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6016546040517f0483f7a000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8481166004830152831515602483015290911690630483f7a0906044015b600060405180830381600087803b158015610f3457600080fd5b505af1158015610f48573d6000803e3d6000fd5b505050505050565b606060048054610f5f9061519b565b80601f0160208091040260200160405190810160405280929190818152602001828054610f8b9061519b565b8015610fd85780601f10610fad57610100808354040283529160200191610fd8565b820191906000526020600020905b815481529060010190602001808311610fbb57829003601f168201915b5050505050905090565b6000610fef3384846134d1565b50600192915050565b6000611005848484613684565b73ffffffffffffffffffffffffffffffffffffffff84166000908152601160209081526040808320338452909152902054828110156110c6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f535441525345543a207472616e7366657220616d6f756e74206578636565647360448201527f20616c6c6f77616e6365000000000000000000000000000000000000000000006064820152608401610eb5565b6110da85336110d5868561521e565b6134d1565b506001949350505050565b6016546040517f27ce014700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff838116600483015260009216906327ce0147906024015b602060405180830381865afa158015611157573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061117b9190615235565b92915050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611202576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eb5565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260208052604090205460ff16611290576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f45524332303a204973206e6f7420736e697065720000000000000000000000006044820152606401610eb5565b73ffffffffffffffffffffffffffffffffffffffff166000908152602080526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b60005473ffffffffffffffffffffffffffffffffffffffff16331461135c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eb5565b6040517fa9059cbb0000000000000000000000000000000000000000000000000000000081523360048201526024810182905273ffffffffffffffffffffffffffffffffffffffff83169063a9059cbb906044016020604051808303816000875af11580156113cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113f3919061524e565b505050565b33600081815260116020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610fef9185906110d590869061526b565b60005473ffffffffffffffffffffffffffffffffffffffff1633146114bd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eb5565b60185473ffffffffffffffffffffffffffffffffffffffff82811691161415611568576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f45524332303a2043616e206e6f742061646420756e697377617056325061697260448201527f20746f20736e69706572206c69737400000000000000000000000000000000006064820152608401610eb5565b60175473ffffffffffffffffffffffffffffffffffffffff82811691161415611613576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f45524332303a2043616e206e6f742061646420756e69737761705632526f757460448201527f657220746f20736e69706572206c6973740000000000000000000000000000006064820152608401610eb5565b73ffffffffffffffffffffffffffffffffffffffff166000908152602080526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b60005473ffffffffffffffffffffffffffffffffffffffff1633146116e2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eb5565b73ffffffffffffffffffffffffffffffffffffffff811660009081526015602052604090205460ff1615611772576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f7573657220616c726561647920626c61636b6c697374656400000000000000006044820152606401610eb5565b73ffffffffffffffffffffffffffffffffffffffff16600090815260156020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b60165473ffffffffffffffffffffffffffffffffffffffff1663807ab4f7335b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b16815273ffffffffffffffffffffffffffffffffffffffff90911660048201526024016020604051808303816000875af115801561184c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611870919061524e565b50565b60005473ffffffffffffffffffffffffffffffffffffffff1633146118f4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eb5565b73ffffffffffffffffffffffffffffffffffffffff811660009081526015602052604090205460ff16611983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f7573657220616c72656164792077686974656c697374656400000000000000006044820152606401610eb5565b73ffffffffffffffffffffffffffffffffffffffff16600090815260156020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b60005473ffffffffffffffffffffffffffffffffffffffff163314611a50576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eb5565b60078390556008829055600981905580611a6a838561526b565b611a74919061526b565b600a55505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611afd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eb5565b60af8110158015611b1057506127108111155b611b9c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f4d415857206d757374206265206265747765656e2031373520616e642031303060448201527f30300000000000000000000000000000000000000000000000000000000000006064820152608401610eb5565b601a55565b60005473ffffffffffffffffffffffffffffffffffffffff163314611c22576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eb5565b600c80546006939093559015157fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0093151561010002939093167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000090921691909117919091179055565b60005473ffffffffffffffffffffffffffffffffffffffff163314611d0c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eb5565b60175473ffffffffffffffffffffffffffffffffffffffff82811691161415611db7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f535441525345543a2074686520726f7574657220697320616c7265616479207360448201527f657420746f20746865206e6577206164647265737300000000000000000000006064820152608401610eb5565b60175460405173ffffffffffffffffffffffffffffffffffffffff918216918316907f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e90600090a3601780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8316908117909155604080517fc45a015500000000000000000000000000000000000000000000000000000000815290516000929163c45a01559160048083019260209291908290030181865afa158015611e99573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ebd9190615283565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f46573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f6a9190615283565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff9283166004820152911660248201526044016020604051808303816000875af1158015611fdc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120009190615283565b601880547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff929092169190911790555050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146120ca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eb5565b6120d4600061423b565b565b6016546040517f7b510fe800000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff83811660048301526000928392839283928392911690637b510fe89060240160a060405180830381865afa158015612150573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061217491906152a0565b939a9299509097509550909350915050565b60005473ffffffffffffffffffffffffffffffffffffffff163314612207576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eb5565b73ffffffffffffffffffffffffffffffffffffffff166000908152601f6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b60005473ffffffffffffffffffffffffffffffffffffffff1633146122d7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eb5565b6016546040517f8e1269440000000000000000000000000000000000000000000000000000000081526004810184905273ffffffffffffffffffffffffffffffffffffffff838116602483015290911690638e12694490604401610f1a565b606060058054610f5f9061519b565b60005473ffffffffffffffffffffffffffffffffffffffff1633146123c6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eb5565b60185473ffffffffffffffffffffffffffffffffffffffff83811691161415612470576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f535441525345543a2044455820706169722063616e206e6f742062652072656d60448201527f6f766564000000000000000000000000000000000000000000000000000000006064820152608401610eb5565b61247a82826142b0565b5050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146124ff576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eb5565b604051339082156108fc029083906000818181858888f1935050505015801561247a573d6000803e3d6000fd5b33600090815260116020908152604080832073ffffffffffffffffffffffffffffffffffffffff86168452909152812054828110156125ed576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f535441525345543a2064656372656173656420616c6c6f77616e63652062656c60448201527f6f77207a65726f000000000000000000000000000000000000000000000000006064820152608401610eb5565b6125fc33856110d5868561521e565b5060019392505050565b6016546040517fa680e0bc00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8381166004830152600092169063a680e0bc9060240161113a565b6016546040517fa8b9d24000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8381166004830152600092169063a8b9d2409060240161113a565b6000610fef338484613684565b6016546040517faafd847a00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8381166004830152600092169063aafd847a9060240161113a565b60005473ffffffffffffffffffffffffffffffffffffffff16331461279f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eb5565b604b81101580156127b257506127108111155b61283e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4d415854206d757374206265206265747765656e20373520616e64203130303060448201527f30000000000000000000000000000000000000000000000000000000000000006064820152608401610eb5565b601955565b60005473ffffffffffffffffffffffffffffffffffffffff1633146128c4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eb5565b73ffffffffffffffffffffffffffffffffffffffff821660009081526012602052604090205460ff1615158115151415612980576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f535441525345543a206163636f756e7420697320616c7265616479207365742060448201527f746f2072657175657374656420737461746500000000000000000000000000006064820152608401610eb5565b73ffffffffffffffffffffffffffffffffffffffff821660008181526012602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b60005473ffffffffffffffffffffffffffffffffffffffff163314612a8b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eb5565b60005b81518160ff16101561247a57600160156000848460ff1681518110612ab557612ab56152e9565b60209081029190910181015173ffffffffffffffffffffffffffffffffffffffff16825281019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001691151591909117905580612b1c81615318565b915050612a8e565b60005473ffffffffffffffffffffffffffffffffffffffff163314612ba5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eb5565b600c805482151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff9091161790556040517f5bb2376cf656637e70e36c01d3da25685bf3b353f18681b8a5e48c7b2effe13390612c0c90831515815260200190565b60405180910390a150565b6016546040517fc705c56900000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8381166004830152600092169063c705c56990602401602060405180830381865afa158015612c88573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061117b919061524e565b60005473ffffffffffffffffffffffffffffffffffffffff163314612d2d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eb5565b601b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b60005473ffffffffffffffffffffffffffffffffffffffff163314612ddb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eb5565b73ffffffffffffffffffffffffffffffffffffffff919091166000908152601d6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60005473ffffffffffffffffffffffffffffffffffffffff163314612eb2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eb5565b73ffffffffffffffffffffffffffffffffffffffff919091166000908152601c6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60005473ffffffffffffffffffffffffffffffffffffffff163314612f89576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eb5565b600c8054821515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff9091161790556040517fb9bbb15e341600c8d067a0cadeba219905d5ba6d422b193c9c32265d26fc51c890612c0c90831515815260200190565b60005473ffffffffffffffffffffffffffffffffffffffff163314613070576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eb5565b600c80548215156301000000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffff9091161790556040517f341322866a3a2c26c27efa4c270c5ba86f6963257118897dd8196f224c002d4390612c0c90831515815260200190565b60005473ffffffffffffffffffffffffffffffffffffffff163314613159576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eb5565b600e80547fffffffffffffffffffffff0000000000000000000000000000000000000000ff1661010073ffffffffffffffffffffffffffffffffffffffff94851602179055600f80547fffffffffffffffffffffffff00000000000000000000000000000000000000001691909216179055565b60005473ffffffffffffffffffffffffffffffffffffffff16331461324e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eb5565b73ffffffffffffffffffffffffffffffffffffffff81166132f1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610eb5565b6118708161423b565b60005473ffffffffffffffffffffffffffffffffffffffff16331461337b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eb5565b60005b81518160ff16101561247a57600060156000848460ff16815181106133a5576133a56152e9565b60209081029190910181015173ffffffffffffffffffffffffffffffffffffffff16825281019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169115159190911790558061340c81615318565b91505061337e565b600c546301000000900460ff166134ad576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f535441525345543a20636f6d706f756e64696e67206973206e6f7420656e616260448201527f6c656400000000000000000000000000000000000000000000000000000000006064820152608401610eb5565b60165473ffffffffffffffffffffffffffffffffffffffff16636de1a5a9336117e1565b73ffffffffffffffffffffffffffffffffffffffff8316613574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f535441525345543a20617070726f76652066726f6d20746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610eb5565b73ffffffffffffffffffffffffffffffffffffffff8216613616576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f535441525345543a20617070726f766520746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610eb5565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526011602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b601b5460ff16806136af575060005473ffffffffffffffffffffffffffffffffffffffff8481169116145b806136d4575060005473ffffffffffffffffffffffffffffffffffffffff8381169116145b80613704575073ffffffffffffffffffffffffffffffffffffffff831660009081526014602052604090205460ff165b80613734575073ffffffffffffffffffffffffffffffffffffffff821660009081526014602052604090205460ff165b61379a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600860248201527f4e6f74204f70656e0000000000000000000000000000000000000000000000006044820152606401610eb5565b73ffffffffffffffffffffffffffffffffffffffff831660009081526015602052604090205460ff161561382a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f535441525345543a2053656e64657220697320626c61636b6c697374656400006044820152606401610eb5565b73ffffffffffffffffffffffffffffffffffffffff821660009081526015602052604090205460ff16156138e0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f535441525345543a20526563697069656e7420697320626c61636b6c6973746560448201527f64000000000000000000000000000000000000000000000000000000000000006064820152608401610eb5565b73ffffffffffffffffffffffffffffffffffffffff8316613983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f535441525345543a207472616e736665722066726f6d20746865207a65726f2060448201527f61646472657373000000000000000000000000000000000000000000000000006064820152608401610eb5565b73ffffffffffffffffffffffffffffffffffffffff8216613a26576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f464653544152534554463a207472616e7366657220746f20746865207a65726f60448201527f20616464726573730000000000000000000000000000000000000000000000006064820152608401610eb5565b601e5460ff16613a3f57613a3a83836144c0565b613b94565b6000602154118015613a6b575060185473ffffffffffffffffffffffffffffffffffffffff8481169116145b8015613a9d575073ffffffffffffffffffffffffffffffffffffffff83166000908152601f602052604090205460ff16155b8015613acf575073ffffffffffffffffffffffffffffffffffffffff82166000908152601f602052604090205460ff16155b15613b9457602254602154613ae4904361521e565b1015613b945773ffffffffffffffffffffffffffffffffffffffff82166000908152602080526040812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790556023805491613b4583615338565b909155505060405173ffffffffffffffffffffffffffffffffffffffff831681527f18e6e5ce5c121466e41a954e72765d1ea02b8e6919043b61f0dab08b4c6572e59060200160405180910390a15b6000612710601954613ba5600d5490565b613baf9190615371565b613bb991906153ae565b90506000612710601a54613bcc600d5490565b613bd69190615371565b613be091906153ae565b90508183111580613c16575073ffffffffffffffffffffffffffffffffffffffff85166000908152601c602052604090205460ff165b613c7c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f5458204c696d69742045786365656465640000000000000000000000000000006044820152606401610eb5565b60005473ffffffffffffffffffffffffffffffffffffffff868116911614801590613cbd575073ffffffffffffffffffffffffffffffffffffffff84163014155b8015613ce4575060015473ffffffffffffffffffffffffffffffffffffffff858116911614155b8015613d0b575060185473ffffffffffffffffffffffffffffffffffffffff858116911614155b15613d645773ffffffffffffffffffffffffffffffffffffffff8416600090815260106020908152604080832054601d9092529091205460ff1680613d59575081613d56858361526b565b11155b613d6257600080fd5b505b73ffffffffffffffffffffffffffffffffffffffff851660009081526010602052604090205483811015613e1a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f535441525345543a207472616e7366657220616d6f756e74206578636565647360448201527f2062616c616e63650000000000000000000000000000000000000000000000006064820152608401610eb5565b30600090815260106020526040902054600654600c54479183101590610100900460ff168015613e475750805b8015613e565750600e5460ff16155b8015613e88575073ffffffffffffffffffffffffffffffffffffffff891660009081526013602052604090205460ff16155b8015613eaf575060175473ffffffffffffffffffffffffffffffffffffffff8a8116911614155b8015613ed6575060005473ffffffffffffffffffffffffffffffffffffffff8a8116911614155b8015613efd575060005473ffffffffffffffffffffffffffffffffffffffff898116911614155b15613f7457600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055600c5460ff16613f3d5760065492505b613f4783836145da565b42600b55600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690555b60185460009073ffffffffffffffffffffffffffffffffffffffff8b811691161480613fba575060185473ffffffffffffffffffffffffffffffffffffffff8a81169116145b15613fc3575060015b73ffffffffffffffffffffffffffffffffffffffff8a1660009081526012602052604090205460ff168061401c575073ffffffffffffffffffffffffffffffffffffffff891660009081526012602052604090205460ff165b15614025575060005b600e5460ff168061403f5750600c5462010000900460ff16155b15614048575060005b8015614086576000612710600a548a6140619190615371565b61406b91906153ae565b9050614077818a61521e565b98506140848b30836148f4565b505b6140918a8a8a6148f4565b60165473ffffffffffffffffffffffffffffffffffffffff1663e30443bc8b6140dc8173ffffffffffffffffffffffffffffffffffffffff1660009081526010602052604090205490565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff90921660048301526024820152604401600060405180830381600087803b15801561414757600080fd5b505af115801561415b573d6000803e3d6000fd5b505060165473ffffffffffffffffffffffffffffffffffffffff16915063e30443bc90508a6141ac8173ffffffffffffffffffffffffffffffffffffffff1660009081526010602052604090205490565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff90921660048301526024820152604401600060405180830381600087803b15801561421757600080fd5b505af115801561422b573d6000803e3d6000fd5b5050505050505050505050505050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b73ffffffffffffffffffffffffffffffffffffffff821660009081526013602052604090205460ff1615158115151415614392576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604160248201527f535441525345543a206175746f6d61746564206d61726b6574206d616b65722060448201527f7061697220697320616c72656164792073657420746f20746861742076616c7560648201527f6500000000000000000000000000000000000000000000000000000000000000608482015260a401610eb5565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260136020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168215801591909117909155614477576016546040517f0483f7a000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff84811660048301526001602483015290911690630483f7a090604401600060405180830381600087803b15801561445e57600080fd5b505af1158015614472573d6000803e3d6000fd5b505050505b6040518115159073ffffffffffffffffffffffffffffffffffffffff8416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b601e5460ff1615614553576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f4c697175696469747920616c726561647920616464656420616e64206d61726b60448201527f65642e00000000000000000000000000000000000000000000000000000000006064820152608401610eb5565b73ffffffffffffffffffffffffffffffffffffffff82166000908152601f602052604090205460ff1680156145a2575060185473ffffffffffffffffffffffffffffffffffffffff8281169116145b1561247a57601e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055436021555050565b600082116145e6575050565b600e54600090610100900473ffffffffffffffffffffffffffffffffffffffff161561462957600a5460075461461c9085615371565b61462691906153ae565b90505b600080601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015614699573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906146bd9190615235565b11156146e057600a546009546146d39086615371565b6146dd91906153ae565b90505b6000816146ed848761521e565b6146f7919061521e565b905060006147066002836153ae565b90506000614714828461521e565b9050600082614723868861526b565b61472d919061526b565b90504761473982614bb1565b600088614746834761521e565b614750919061526b565b905060008361475f8a84615371565b61476991906153ae565b90506000846147788a85615371565b61478291906153ae565b9050600081614791848661521e565b61479b919061521e565b905082156147f057600e5460405161010090910473ffffffffffffffffffffffffffffffffffffffff16906108fc8515029085906000818181858888f193505050501580156147ee573d6000803e3d6000fd5b505b6147fa8782614d2e565b60408051898152602081018390529081018890527fb63dc6f50047533abe2d6adf180d38d524c8d98e55ad199aac8d6b9801bbe24a9060600160405180910390a181156148e55760165460405160009173ffffffffffffffffffffffffffffffffffffffff169084908381818185875af1925050503d806000811461489b576040519150601f19603f3d011682016040523d82523d6000602084013e6148a0565b606091505b50509050801561422b57604080518c8152602081018590527f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc3910160405180910390a1505b50505050505050505050505050565b73ffffffffffffffffffffffffffffffffffffffff8316614997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f535441525345543a207472616e736665722066726f6d20746865207a65726f2060448201527f61646472657373000000000000000000000000000000000000000000000000006064820152608401610eb5565b73ffffffffffffffffffffffffffffffffffffffff8216614a3a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f535441525345543a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610eb5565b73ffffffffffffffffffffffffffffffffffffffff831660009081526010602052604090205481811015614af0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f535441525345543a207472616e7366657220616d6f756e74206578636565647360448201527f2062616c616e63650000000000000000000000000000000000000000000000006064820152608401610eb5565b614afa828261521e565b73ffffffffffffffffffffffffffffffffffffffff8086166000908152601060205260408082209390935590851681529081208054849290614b3d90849061526b565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051614ba391815260200190565b60405180910390a350505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110614be657614be66152e9565b73ffffffffffffffffffffffffffffffffffffffff928316602091820292909201810191909152601754604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa158015614c65573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614c899190615283565b81600181518110614c9c57614c9c6152e9565b73ffffffffffffffffffffffffffffffffffffffff9283166020918202929092010152601754614ccf91309116846134d1565b6017546040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9091169063791ac94790610f1a9085906000908690309042906004016153e9565b601754614d5390309073ffffffffffffffffffffffffffffffffffffffff16846134d1565b601754600f546040517ff305d71900000000000000000000000000000000000000000000000000000000815230600482015260248101859052600060448201819052606482015273ffffffffffffffffffffffffffffffffffffffff91821660848201524260a482015291169063f305d71990839060c40160606040518083038185885af1158015614de9573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190614e0e9190615474565b5050505050565b73ffffffffffffffffffffffffffffffffffffffff8116811461187057600080fd5b8035614e4281614e15565b919050565b801515811461187057600080fd5b60008060408385031215614e6857600080fd5b8235614e7381614e15565b91506020830135614e8381614e47565b809150509250929050565b600060208083528351808285015260005b81811015614ebb57858101830151858201604001528201614e9f565b81811115614ecd576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60008060408385031215614f1457600080fd5b8235614f1f81614e15565b946020939093013593505050565b600060208284031215614f3f57600080fd5b8135614f4a81614e15565b9392505050565b600080600060608486031215614f6657600080fd5b8335614f7181614e15565b92506020840135614f8181614e15565b929592945050506040919091013590565b600080600060608486031215614fa757600080fd5b505081359360208301359350604090920135919050565b600060208284031215614fd057600080fd5b5035919050565b600080600060608486031215614fec57600080fd5b8335614ff781614e47565b925060208401359150604084013561500e81614e47565b809150509250925092565b6000806040838503121561502c57600080fd5b823591506020830135614e8381614e15565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000602080838503121561508057600080fd5b823567ffffffffffffffff8082111561509857600080fd5b818501915085601f8301126150ac57600080fd5b8135818111156150be576150be61503e565b8060051b6040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0603f830116810181811085821117156151015761510161503e565b60405291825284820192508381018501918883111561511f57600080fd5b938501935b828510156151445761513585614e37565b84529385019392850192615124565b98975050505050505050565b60006020828403121561516257600080fd5b8135614f4a81614e47565b6000806040838503121561518057600080fd5b823561518b81614e15565b91506020830135614e8381614e15565b600181811c908216806151af57607f821691505b602082108114156151e9577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600082821015615230576152306151ef565b500390565b60006020828403121561524757600080fd5b5051919050565b60006020828403121561526057600080fd5b8151614f4a81614e47565b6000821982111561527e5761527e6151ef565b500190565b60006020828403121561529557600080fd5b8151614f4a81614e15565b600080600080600060a086880312156152b857600080fd5b85516152c381614e15565b602087015160408801516060890151608090990151929a91995097965090945092505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600060ff821660ff81141561532f5761532f6151ef565b60010192915050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561536a5761536a6151ef565b5060010190565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156153a9576153a96151ef565b500290565b6000826153e4577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561544657845173ffffffffffffffffffffffffffffffffffffffff1683529383019391830191600101615414565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b60008060006060848603121561548957600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220351976e91baa2f7162171df752cd4d61f2a3ea62161a232b4e4080045ebf95fd64736f6c634300080a003360e0604052601760a08190527f535441525345545f4469766964656e64547261636b657200000000000000000060c090815262000040916002919062000153565b506040805180820190915260178082527f535441525345545f4469766964656e64547261636b65720000000000000000006020909201918252620000879160039162000153565b503480156200009557600080fd5b50604051620025ba380380620025ba833981016040819052620000b89162000216565b620000c33362000103565b69021e19e0c9bab2400000608052600a80546001600160a01b039384166001600160a01b031991821617909155600180549290931691161790556200028b565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b82805462000161906200024e565b90600052602060002090601f016020900481019282620001855760008555620001d0565b82601f10620001a057805160ff1916838001178555620001d0565b82800160010185558215620001d0579182015b82811115620001d0578251825591602001919060010190620001b3565b50620001de929150620001e2565b5090565b5b80821115620001de5760008155600101620001e3565b80516001600160a01b03811681146200021157600080fd5b919050565b600080604083850312156200022a57600080fd5b6200023583620001f9565b91506200024560208401620001f9565b90509250929050565b600181811c908216806200026357607f821691505b602082108114156200028557634e487b7160e01b600052602260045260246000fd5b50919050565b608051612305620002b5600039600081816105ad0152818161094f01526110da01526123056000f3fe6080604052600436106101d15760003560e01c806385a6b3ae116100f7578063a8b9d24011610095578063c705c56911610064578063c705c569146105cf578063dd62ed3e14610615578063e30443bc14610630578063f2fde38b1461065057600080fd5b8063a8b9d24014610538578063a9059cbb14610238578063aafd847a14610558578063c49af5f01461059b57600080fd5b806395d89b41116100d157806395d89b411461049d5780639d76ea58146104b25780639e1e0661146104df578063a680e0bc146104f557600080fd5b806385a6b3ae1461041b5780638da5cb5b146104315780638e1269441461047d57600080fd5b80633009a6091161016f57806370a082311161013e57806370a0823114610344578063715018a6146103875780637b510fe81461039c578063807ab4f7146103fb57600080fd5b80633009a609146102c2578063313ce567146102d85780634e7b827f146102f45780636de1a5a91461032457600080fd5b8063095ea7b3116101ab578063095ea7b31461023857806318160ddd1461026857806323b872dd1461028757806327ce0147146102a257600080fd5b806303c83302146101e55780630483f7a0146101ed57806306fdde031461020d57600080fd5b366101e0576101de610670565b005b600080fd5b6101de610670565b3480156101f957600080fd5b506101de610208366004611d09565b61070c565b34801561021957600080fd5b506102226109e6565b60405161022f9190611d47565b60405180910390f35b34801561024457600080fd5b50610258610253366004611dba565b610a78565b604051901515815260200161022f565b34801561027457600080fd5b506005545b60405190815260200161022f565b34801561029357600080fd5b50610258610253366004611de6565b3480156102ae57600080fd5b506102796102bd366004611e27565b610b03565b3480156102ce57600080fd5b5061027960045481565b3480156102e457600080fd5b506040516012815260200161022f565b34801561030057600080fd5b5061025861030f366004611e27565b600b6020526000908152604090205460ff1681565b34801561033057600080fd5b5061025861033f366004611e27565b610b8e565b34801561035057600080fd5b5061027961035f366004611e27565b73ffffffffffffffffffffffffffffffffffffffff1660009081526006602052604090205490565b34801561039357600080fd5b506101de610c9d565b3480156103a857600080fd5b506103bc6103b7366004611e27565b610d28565b6040805173ffffffffffffffffffffffffffffffffffffffff90961686526020860194909452928401919091526060830152608082015260a00161022f565b34801561040757600080fd5b50610258610416366004611e27565b610df7565b34801561042757600080fd5b5061027960085481565b34801561043d57600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff165b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161022f565b34801561048957600080fd5b506101de610498366004611e4b565b610f00565b3480156104a957600080fd5b50610222610fd7565b3480156104be57600080fd5b50600a546104589073ffffffffffffffffffffffffffffffffffffffff1681565b3480156104eb57600080fd5b5061027960095481565b34801561050157600080fd5b50610279610510366004611e27565b73ffffffffffffffffffffffffffffffffffffffff166000908152600e602052604090205490565b34801561054457600080fd5b50610279610553366004611e27565b610fe6565b34801561056457600080fd5b50610279610573366004611e27565b73ffffffffffffffffffffffffffffffffffffffff166000908152600d602052604090205490565b3480156105a757600080fd5b506102797f000000000000000000000000000000000000000000000000000000000000000081565b3480156105db57600080fd5b506102586105ea366004611e27565b73ffffffffffffffffffffffffffffffffffffffff166000908152600b602052604090205460ff1690565b34801561062157600080fd5b50610279610253366004611e70565b34801561063c57600080fd5b506101de61064b366004611dba565b611025565b34801561065c57600080fd5b506101de61066b366004611e27565b611118565b60006005541161067f57600080fd5b341561070a576005546106a370010000000000000000000000000000000034611ecd565b6106ad9190611f0a565b6007546106ba9190611f45565b60075560405134815233907fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d784541165119060200160405180910390a234600860008282546107049190611f45565b90915550505b565b60005473ffffffffffffffffffffffffffffffffffffffff163314610792576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff82166000908152600b602052604090205460ff161515811515141561084e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603f60248201527f535441525345545f4469766964656e64547261636b65723a206163636f756e7460448201527f20616c72656164792073657420746f20726571756573746564207374617465006064820152608401610789565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600b6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001682158015919091179091556108b6576108b1826000611248565b610990565b600a546040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff848116600483015260009216906370a0823190602401602060405180830381865afa158015610927573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061094b9190611f5d565b90507f000000000000000000000000000000000000000000000000000000000000000081106109835761097e8382611248565b61098e565b61098e836000611248565b505b8173ffffffffffffffffffffffffffffffffffffffff167fa3c7c11b2e12c4144b09a7813f3393ba646392788638998c97be8da908cf04be826040516109da911515815260200190565b60405180910390a25050565b6060600280546109f590611f76565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2190611f76565b8015610a6e5780601f10610a4357610100808354040283529160200191610a6e565b820191906000526020600020905b815481529060010190602001808311610a5157829003601f168201915b5050505050905090565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f535441525345545f4469766964656e64547261636b65723a206d6574686f642060448201527f6e6f7420696d706c656d656e74656400000000000000000000000000000000006064820152600090608401610789565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600660205260408120546007548291610b3791611ecd565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600c6020526040902054909150700100000000000000000000000000000000610b7c8284611fca565b610b869190611f0a565b949350505050565b6000805473ffffffffffffffffffffffffffffffffffffffff163314610c10576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610789565b600080610c1c846112b3565b90925090508115610c935773ffffffffffffffffffffffffffffffffffffffff84166000818152600e602090815260409182902042905581518581529081018490527f0e311a2c6dbfb0153ec3a8a5bdca09070b3e5f60768fdc10a20453f38d186873910160405180910390a25060019392505050565b5060009392505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610d1e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610789565b61070a60006116e5565b6000806000806000610d716040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff1681526020016000815260200160008152602001600081525090565b73ffffffffffffffffffffffffffffffffffffffff87168152610d9387610fe6565b6020820152610da187610b03565b604082810191825273ffffffffffffffffffffffffffffffffffffffff989098166000908152600e6020908152989020546060830181905282519890920151905160095498999198909750919550909350915050565b6000805473ffffffffffffffffffffffffffffffffffffffff163314610e79576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610789565b6000610e848361175a565b90508015610ef75773ffffffffffffffffffffffffffffffffffffffff83166000818152600e602052604090819020429055517f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d490610ee69084815260200190565b60405180910390a250600192915050565b50600092915050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610f81576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610789565b4773ffffffffffffffffffffffffffffffffffffffff82166108fc84610fa75782610fa9565b845b6040518115909202916000818181858888f19350505050158015610fd1573d6000803e3d6000fd5b50505050565b6060600380546109f590611f76565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600d602052604081205461101583610b03565b61101f919061203e565b92915050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146110a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610789565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600b602052604090205460ff16156110d8575050565b7f0000000000000000000000000000000000000000000000000000000000000000811061110d576111098282611248565b5050565b611109826000611248565b60005473ffffffffffffffffffffffffffffffffffffffff163314611199576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610789565b73ffffffffffffffffffffffffffffffffffffffff811661123c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610789565b611245816116e5565b50565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600660205260409020548082111561128e576000611282828461203e565b9050610fd184826118dd565b808210156112ae5760006112a2838361203e565b9050610fd18482611a8a565b505050565b60008060006112c184610fe6565b905080156116d95773ffffffffffffffffffffffffffffffffffffffff84166000908152600d6020526040812080548392906112fe908490611f45565b9250508190555080600960008282546113179190611f45565b909155505060405181815273ffffffffffffffffffffffffffffffffffffffff8516907fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d9060200160405180910390a260015460408051600280825260608201835273ffffffffffffffffffffffffffffffffffffffff909316926000926020830190803683370190505090508173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156113ef573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114139190612055565b8160008151811061142657611426612072565b73ffffffffffffffffffffffffffffffffffffffff9283166020918202929092010152600a5482519116908290600190811061146457611464612072565b73ffffffffffffffffffffffffffffffffffffffff9283166020918202929092010152600a546040517f70a082310000000000000000000000000000000000000000000000000000000081528883166004820152600092839283929116906370a0823190602401602060405180830381865afa1580156114e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061150c9190611f5d565b90508473ffffffffffffffffffffffffffffffffffffffff1663b6f9de95876000878d426040518663ffffffff1660e01b815260040161154f94939291906120a1565b6000604051808303818588803b15801561156857600080fd5b505af19350505050801561157a575060015b6115bc57611586612125565b806308c379a014156115b0575061159b6121b3565b806115a657506115b2565b6000935050611661565b505b3d6000803e3d6000fd5b600a546040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8b8116600483015260019550839216906370a0823190602401602060405180830381865afa158015611630573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116549190611f5d565b61165e919061203e565b91505b826116ca5773ffffffffffffffffffffffffffffffffffffffff89166000908152600d60205260408120805488929061169b90849061203e565b9250508190555085600960008282546116b4919061203e565b9091555060009a8b9a5098505050505050505050565b50939793965092945050505050565b50600093849350915050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008061176683610fe6565b90508015610ef75773ffffffffffffffffffffffffffffffffffffffff83166000908152600d6020526040812080548392906117a3908490611f45565b9250508190555080600960008282546117bc9190611f45565b909155505060405181815273ffffffffffffffffffffffffffffffffffffffff8416907fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d9060200160405180910390a260008373ffffffffffffffffffffffffffffffffffffffff1682610bb890604051600060405180830381858888f193505050503d806000811461186b576040519150601f19603f3d011682016040523d82523d6000602084013e611870565b606091505b50509050806118d65773ffffffffffffffffffffffffffffffffffffffff84166000908152600d6020526040812080548492906118ae90849061203e565b9250508190555081600960008282546118c7919061203e565b90915550600095945050505050565b5092915050565b73ffffffffffffffffffffffffffffffffffffffff8216611980576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f535441525345545f4469766964656e64547261636b65723a206d696e7420746f60448201527f20746865207a65726f20616464726573730000000000000000000000000000006064820152608401610789565b80600560008282546119929190611f45565b909155505073ffffffffffffffffffffffffffffffffffffffff8216600090815260066020526040812080548392906119cc908490611f45565b909155505060405181815273ffffffffffffffffffffffffffffffffffffffff8316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a380600754611a2d9190611ecd565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600c6020526040902054611a5d919061225b565b73ffffffffffffffffffffffffffffffffffffffff9092166000908152600c602052604090209190915550565b73ffffffffffffffffffffffffffffffffffffffff8216611b2d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603360248201527f535441525345545f4469766964656e64547261636b65723a206275726e20667260448201527f6f6d20746865207a65726f2061646472657373000000000000000000000000006064820152608401610789565b73ffffffffffffffffffffffffffffffffffffffff821660009081526006602052604090205481811015611be3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f535441525345545f4469766964656e64547261636b65723a206275726e20616d60448201527f6f756e7420657863656564732062616c616e63650000000000000000000000006064820152608401610789565b611bed828261203e565b73ffffffffffffffffffffffffffffffffffffffff841660009081526006602052604081209190915560058054849290611c2890849061203e565b909155505060405182815260009073ffffffffffffffffffffffffffffffffffffffff8516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a381600754611c899190611ecd565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600c6020526040902054611cb99190611fca565b73ffffffffffffffffffffffffffffffffffffffff9093166000908152600c60205260409020929092555050565b73ffffffffffffffffffffffffffffffffffffffff8116811461124557600080fd5b60008060408385031215611d1c57600080fd5b8235611d2781611ce7565b915060208301358015158114611d3c57600080fd5b809150509250929050565b600060208083528351808285015260005b81811015611d7457858101830151858201604001528201611d58565b81811115611d86576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60008060408385031215611dcd57600080fd5b8235611dd881611ce7565b946020939093013593505050565b600080600060608486031215611dfb57600080fd5b8335611e0681611ce7565b92506020840135611e1681611ce7565b929592945050506040919091013590565b600060208284031215611e3957600080fd5b8135611e4481611ce7565b9392505050565b60008060408385031215611e5e57600080fd5b823591506020830135611d3c81611ce7565b60008060408385031215611e8357600080fd5b8235611e8e81611ce7565b91506020830135611d3c81611ce7565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611f0557611f05611e9e565b500290565b600082611f40577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b60008219821115611f5857611f58611e9e565b500190565b600060208284031215611f6f57600080fd5b5051919050565b600181811c90821680611f8a57607f821691505b60208210811415611fc4577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b6000808212827f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0384138115161561200457612004611e9e565b827f800000000000000000000000000000000000000000000000000000000000000003841281161561203857612038611e9e565b50500190565b60008282101561205057612050611e9e565b500390565b60006020828403121561206757600080fd5b8151611e4481611ce7565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600060808201868352602060808185015281875180845260a086019150828901935060005b818110156120f857845173ffffffffffffffffffffffffffffffffffffffff16835293830193918301916001016120c6565b505073ffffffffffffffffffffffffffffffffffffffff9690961660408501525050506060015292915050565b600060033d111561213e5760046000803e5060005160e01c5b90565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f830116810181811067ffffffffffffffff821117156121ac577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040525050565b600060443d10156121c15790565b6040517ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc803d016004833e81513d67ffffffffffffffff816024840111818411171561220f57505050505090565b82850191508151818111156122275750505050505090565b843d87010160208285010111156122415750505050505090565b61225060208286010187612141565b509095945050505050565b6000808312837f80000000000000000000000000000000000000000000000000000000000000000183128115161561229557612295611e9e565b837f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0183138116156122c9576122c9611e9e565b5050039056fea2646970667358221220cbbeb38bec42e7f5d0ef4afe6264b424b8beb0d40306258541795bf7b797301064736f6c634300080a00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000bc1277836d4895cb029ed1e9b553601dcfedc668000000000000000000000000bc1277836d4895cb029ed1e9b553601dcfedc66800000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000025ed9d8b35e6dee8efe1316ec816a3a8a7e17ca6000000000000000000000000bc1277836d4895cb029ed1e9b553601dcfedc668

Deployed Bytecode

0x60806040526004361061044e5760003560e01c80637b510fe811610243578063c3033aeb11610143578063e2f45605116100bb578063f2fde38b1161008a578063f69e20461161006f578063f69e204614610df7578063f8b45b0514610e0c578063fe33b10814610e2257600080fd5b8063f2fde38b14610db7578063f4571c4914610dd757600080fd5b8063e2f4560514610d4b578063e4956ce214610d61578063e79d416014610d81578063f1b234ad14610d9757600080fd5b8063cc32d17611610112578063d4c989d3116100f7578063d4c989d314610cb8578063dd62ed3e14610cd8578063e01af92c14610d2b57600080fd5b8063cc32d17614610c82578063d2fcc00114610c9857600080fd5b8063c3033aeb14610c0d578063c6af580b14610c2d578063c705c56914610c4d578063c9567bf914610c6d57600080fd5b80639e252f00116101d6578063a9059cbb116101a5578063b62496f51161018a578063b62496f514610b9d578063bc33718214610bcd578063c024666814610bed57600080fd5b8063a9059cbb14610b5d578063aafd847a14610b7d57600080fd5b80639e252f0014610add578063a457c2d714610afd578063a680e0bc14610b1d578063a8b9d24014610b3d57600080fd5b80638e126944116102125780638e12694414610a7257806395d89b4114610a9257806398118cb414610aa75780639a7a23d614610abd57600080fd5b80637b510fe8146109a8578063834caa5814610a07578063870bd30b14610a275780638da5cb5b14610a4757600080fd5b80633e3e95981161034e5780635d0044ca116102e15780636dd3d39f116102b057806370a082311161029557806370a082311461093a578063715018a61461097d5780637437681e1461099257600080fd5b80636dd3d39f146108d55780636ddd17131461091b57600080fd5b80635d0044ca1461082f5780635e843ad21461084f578063658c27a91461086f57806365b8dbc0146108b557600080fd5b80634fbee1931161031d5780634fbee1931461078f57806350a8e016146107d5578063537df3b6146107ef5780635b65b9ab1461080f57600080fd5b80633e3e95981461070d5780634838d1651461072d57806349bd5a5e1461074d5780634e71d92d1461077a57600080fd5b80631df4ccfc116103e15780632f4504ae116103b057806333251a0b1161039557806333251a0b146106ad57806333f3d628146106cd57806339509351146106ed57600080fd5b80632f4504ae14610670578063313ce5671461069157600080fd5b80631df4ccfc146105ed57806323b872dd1461060357806327ce0147146106235780632c1f52161461064357600080fd5b80631694505e1161041d5780631694505e146104fb57806318160ddd1461054d57806318e9b8b7146105625780631d7f3676146105a757600080fd5b80630483f7a01461045a57806306fdde031461047c578063095ea7b3146104a75780630dd87157146104d757600080fd5b3661045557005b600080fd5b34801561046657600080fd5b5061047a610475366004614e55565b610e38565b005b34801561048857600080fd5b50610491610f50565b60405161049e9190614e8e565b60405180910390f35b3480156104b357600080fd5b506104c76104c2366004614f01565b610fe2565b604051901515815260200161049e565b3480156104e357600080fd5b506104ed600b5481565b60405190815260200161049e565b34801561050757600080fd5b506017546105289073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161049e565b34801561055957600080fd5b50600d546104ed565b34801561056e57600080fd5b506104c761057d366004614f2d565b73ffffffffffffffffffffffffffffffffffffffff16600090815260208052604090205460ff1690565b3480156105b357600080fd5b506104c76105c2366004614f2d565b73ffffffffffffffffffffffffffffffffffffffff166000908152601f602052604090205460ff1690565b3480156105f957600080fd5b506104ed600a5481565b34801561060f57600080fd5b506104c761061e366004614f51565b610ff8565b34801561062f57600080fd5b506104ed61063e366004614f2d565b6110e5565b34801561064f57600080fd5b506016546105289073ffffffffffffffffffffffffffffffffffffffff1681565b34801561067c57600080fd5b50600c546104c7906301000000900460ff1681565b34801561069d57600080fd5b506040516012815260200161049e565b3480156106b957600080fd5b5061047a6106c8366004614f2d565b611181565b3480156106d957600080fd5b5061047a6106e8366004614f01565b6112db565b3480156106f957600080fd5b506104c7610708366004614f01565b6113f8565b34801561071957600080fd5b5061047a610728366004614f2d565b61143c565b34801561073957600080fd5b5061047a610748366004614f2d565b611661565b34801561075957600080fd5b506018546105289073ffffffffffffffffffffffffffffffffffffffff1681565b34801561078657600080fd5b5061047a6117c1565b34801561079b57600080fd5b506104c76107aa366004614f2d565b73ffffffffffffffffffffffffffffffffffffffff1660009081526012602052604090205460ff1690565b3480156107e157600080fd5b50601e546104c79060ff1681565b3480156107fb57600080fd5b5061047a61080a366004614f2d565b611873565b34801561081b57600080fd5b5061047a61082a366004614f92565b6119cf565b34801561083b57600080fd5b5061047a61084a366004614fbe565b611a7c565b34801561085b57600080fd5b5061047a61086a366004614fd7565b611ba1565b34801561087b57600080fd5b506104c761088a366004614f2d565b73ffffffffffffffffffffffffffffffffffffffff166000908152601c602052604090205460ff1690565b3480156108c157600080fd5b5061047a6108d0366004614f2d565b611c8b565b3480156108e157600080fd5b506104c76108f0366004614f2d565b73ffffffffffffffffffffffffffffffffffffffff166000908152601d602052604090205460ff1690565b34801561092757600080fd5b50600c546104c790610100900460ff1681565b34801561094657600080fd5b506104ed610955366004614f2d565b73ffffffffffffffffffffffffffffffffffffffff1660009081526010602052604090205490565b34801561098957600080fd5b5061047a612049565b34801561099e57600080fd5b506104ed60195481565b3480156109b457600080fd5b506109c86109c3366004614f2d565b6120d6565b6040805173ffffffffffffffffffffffffffffffffffffffff90961686526020860194909452928401919091526060830152608082015260a00161049e565b348015610a1357600080fd5b5061047a610a22366004614f2d565b612186565b348015610a3357600080fd5b50600c546104c79062010000900460ff1681565b348015610a5357600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff16610528565b348015610a7e57600080fd5b5061047a610a8d366004615019565b612256565b348015610a9e57600080fd5b50610491612336565b348015610ab357600080fd5b506104ed60085481565b348015610ac957600080fd5b5061047a610ad8366004614e55565b612345565b348015610ae957600080fd5b5061047a610af8366004614fbe565b61247e565b348015610b0957600080fd5b506104c7610b18366004614f01565b61252c565b348015610b2957600080fd5b506104ed610b38366004614f2d565b612606565b348015610b4957600080fd5b506104ed610b58366004614f2d565b61265f565b348015610b6957600080fd5b506104c7610b78366004614f01565b6126b8565b348015610b8957600080fd5b506104ed610b98366004614f2d565b6126c5565b348015610ba957600080fd5b506104c7610bb8366004614f2d565b60136020526000908152604090205460ff1681565b348015610bd957600080fd5b5061047a610be8366004614fbe565b61271e565b348015610bf957600080fd5b5061047a610c08366004614e55565b612843565b348015610c1957600080fd5b5061047a610c2836600461506d565b612a0a565b348015610c3957600080fd5b5061047a610c48366004615150565b612b24565b348015610c5957600080fd5b506104c7610c68366004614f2d565b612c17565b348015610c7957600080fd5b5061047a612cac565b348015610c8e57600080fd5b506104ed60075481565b348015610ca457600080fd5b5061047a610cb3366004614e55565b612d5a565b348015610cc457600080fd5b5061047a610cd3366004614e55565b612e31565b348015610ce457600080fd5b506104ed610cf336600461516d565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260116020908152604080832093909416825291909152205490565b348015610d3757600080fd5b5061047a610d46366004615150565b612f08565b348015610d5757600080fd5b506104ed60065481565b348015610d6d57600080fd5b5061047a610d7c366004615150565b612fef565b348015610d8d57600080fd5b506104ed60235481565b348015610da357600080fd5b5061047a610db236600461516d565b6130d8565b348015610dc357600080fd5b5061047a610dd2366004614f2d565b6131cd565b348015610de357600080fd5b5061047a610df236600461506d565b6132fa565b348015610e0357600080fd5b5061047a613414565b348015610e1857600080fd5b506104ed601a5481565b348015610e2e57600080fd5b506104ed60095481565b60005473ffffffffffffffffffffffffffffffffffffffff163314610ebe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6016546040517f0483f7a000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8481166004830152831515602483015290911690630483f7a0906044015b600060405180830381600087803b158015610f3457600080fd5b505af1158015610f48573d6000803e3d6000fd5b505050505050565b606060048054610f5f9061519b565b80601f0160208091040260200160405190810160405280929190818152602001828054610f8b9061519b565b8015610fd85780601f10610fad57610100808354040283529160200191610fd8565b820191906000526020600020905b815481529060010190602001808311610fbb57829003601f168201915b5050505050905090565b6000610fef3384846134d1565b50600192915050565b6000611005848484613684565b73ffffffffffffffffffffffffffffffffffffffff84166000908152601160209081526040808320338452909152902054828110156110c6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f535441525345543a207472616e7366657220616d6f756e74206578636565647360448201527f20616c6c6f77616e6365000000000000000000000000000000000000000000006064820152608401610eb5565b6110da85336110d5868561521e565b6134d1565b506001949350505050565b6016546040517f27ce014700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff838116600483015260009216906327ce0147906024015b602060405180830381865afa158015611157573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061117b9190615235565b92915050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611202576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eb5565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260208052604090205460ff16611290576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f45524332303a204973206e6f7420736e697065720000000000000000000000006044820152606401610eb5565b73ffffffffffffffffffffffffffffffffffffffff166000908152602080526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b60005473ffffffffffffffffffffffffffffffffffffffff16331461135c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eb5565b6040517fa9059cbb0000000000000000000000000000000000000000000000000000000081523360048201526024810182905273ffffffffffffffffffffffffffffffffffffffff83169063a9059cbb906044016020604051808303816000875af11580156113cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113f3919061524e565b505050565b33600081815260116020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610fef9185906110d590869061526b565b60005473ffffffffffffffffffffffffffffffffffffffff1633146114bd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eb5565b60185473ffffffffffffffffffffffffffffffffffffffff82811691161415611568576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f45524332303a2043616e206e6f742061646420756e697377617056325061697260448201527f20746f20736e69706572206c69737400000000000000000000000000000000006064820152608401610eb5565b60175473ffffffffffffffffffffffffffffffffffffffff82811691161415611613576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f45524332303a2043616e206e6f742061646420756e69737761705632526f757460448201527f657220746f20736e69706572206c6973740000000000000000000000000000006064820152608401610eb5565b73ffffffffffffffffffffffffffffffffffffffff166000908152602080526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b60005473ffffffffffffffffffffffffffffffffffffffff1633146116e2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eb5565b73ffffffffffffffffffffffffffffffffffffffff811660009081526015602052604090205460ff1615611772576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f7573657220616c726561647920626c61636b6c697374656400000000000000006044820152606401610eb5565b73ffffffffffffffffffffffffffffffffffffffff16600090815260156020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b60165473ffffffffffffffffffffffffffffffffffffffff1663807ab4f7335b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b16815273ffffffffffffffffffffffffffffffffffffffff90911660048201526024016020604051808303816000875af115801561184c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611870919061524e565b50565b60005473ffffffffffffffffffffffffffffffffffffffff1633146118f4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eb5565b73ffffffffffffffffffffffffffffffffffffffff811660009081526015602052604090205460ff16611983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f7573657220616c72656164792077686974656c697374656400000000000000006044820152606401610eb5565b73ffffffffffffffffffffffffffffffffffffffff16600090815260156020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b60005473ffffffffffffffffffffffffffffffffffffffff163314611a50576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eb5565b60078390556008829055600981905580611a6a838561526b565b611a74919061526b565b600a55505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611afd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eb5565b60af8110158015611b1057506127108111155b611b9c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f4d415857206d757374206265206265747765656e2031373520616e642031303060448201527f30300000000000000000000000000000000000000000000000000000000000006064820152608401610eb5565b601a55565b60005473ffffffffffffffffffffffffffffffffffffffff163314611c22576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eb5565b600c80546006939093559015157fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0093151561010002939093167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000090921691909117919091179055565b60005473ffffffffffffffffffffffffffffffffffffffff163314611d0c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eb5565b60175473ffffffffffffffffffffffffffffffffffffffff82811691161415611db7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f535441525345543a2074686520726f7574657220697320616c7265616479207360448201527f657420746f20746865206e6577206164647265737300000000000000000000006064820152608401610eb5565b60175460405173ffffffffffffffffffffffffffffffffffffffff918216918316907f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e90600090a3601780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8316908117909155604080517fc45a015500000000000000000000000000000000000000000000000000000000815290516000929163c45a01559160048083019260209291908290030181865afa158015611e99573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ebd9190615283565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f46573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f6a9190615283565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff9283166004820152911660248201526044016020604051808303816000875af1158015611fdc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120009190615283565b601880547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff929092169190911790555050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146120ca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eb5565b6120d4600061423b565b565b6016546040517f7b510fe800000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff83811660048301526000928392839283928392911690637b510fe89060240160a060405180830381865afa158015612150573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061217491906152a0565b939a9299509097509550909350915050565b60005473ffffffffffffffffffffffffffffffffffffffff163314612207576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eb5565b73ffffffffffffffffffffffffffffffffffffffff166000908152601f6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b60005473ffffffffffffffffffffffffffffffffffffffff1633146122d7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eb5565b6016546040517f8e1269440000000000000000000000000000000000000000000000000000000081526004810184905273ffffffffffffffffffffffffffffffffffffffff838116602483015290911690638e12694490604401610f1a565b606060058054610f5f9061519b565b60005473ffffffffffffffffffffffffffffffffffffffff1633146123c6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eb5565b60185473ffffffffffffffffffffffffffffffffffffffff83811691161415612470576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f535441525345543a2044455820706169722063616e206e6f742062652072656d60448201527f6f766564000000000000000000000000000000000000000000000000000000006064820152608401610eb5565b61247a82826142b0565b5050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146124ff576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eb5565b604051339082156108fc029083906000818181858888f1935050505015801561247a573d6000803e3d6000fd5b33600090815260116020908152604080832073ffffffffffffffffffffffffffffffffffffffff86168452909152812054828110156125ed576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f535441525345543a2064656372656173656420616c6c6f77616e63652062656c60448201527f6f77207a65726f000000000000000000000000000000000000000000000000006064820152608401610eb5565b6125fc33856110d5868561521e565b5060019392505050565b6016546040517fa680e0bc00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8381166004830152600092169063a680e0bc9060240161113a565b6016546040517fa8b9d24000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8381166004830152600092169063a8b9d2409060240161113a565b6000610fef338484613684565b6016546040517faafd847a00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8381166004830152600092169063aafd847a9060240161113a565b60005473ffffffffffffffffffffffffffffffffffffffff16331461279f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eb5565b604b81101580156127b257506127108111155b61283e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4d415854206d757374206265206265747765656e20373520616e64203130303060448201527f30000000000000000000000000000000000000000000000000000000000000006064820152608401610eb5565b601955565b60005473ffffffffffffffffffffffffffffffffffffffff1633146128c4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eb5565b73ffffffffffffffffffffffffffffffffffffffff821660009081526012602052604090205460ff1615158115151415612980576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f535441525345543a206163636f756e7420697320616c7265616479207365742060448201527f746f2072657175657374656420737461746500000000000000000000000000006064820152608401610eb5565b73ffffffffffffffffffffffffffffffffffffffff821660008181526012602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b60005473ffffffffffffffffffffffffffffffffffffffff163314612a8b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eb5565b60005b81518160ff16101561247a57600160156000848460ff1681518110612ab557612ab56152e9565b60209081029190910181015173ffffffffffffffffffffffffffffffffffffffff16825281019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001691151591909117905580612b1c81615318565b915050612a8e565b60005473ffffffffffffffffffffffffffffffffffffffff163314612ba5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eb5565b600c805482151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff9091161790556040517f5bb2376cf656637e70e36c01d3da25685bf3b353f18681b8a5e48c7b2effe13390612c0c90831515815260200190565b60405180910390a150565b6016546040517fc705c56900000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8381166004830152600092169063c705c56990602401602060405180830381865afa158015612c88573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061117b919061524e565b60005473ffffffffffffffffffffffffffffffffffffffff163314612d2d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eb5565b601b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b60005473ffffffffffffffffffffffffffffffffffffffff163314612ddb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eb5565b73ffffffffffffffffffffffffffffffffffffffff919091166000908152601d6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60005473ffffffffffffffffffffffffffffffffffffffff163314612eb2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eb5565b73ffffffffffffffffffffffffffffffffffffffff919091166000908152601c6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60005473ffffffffffffffffffffffffffffffffffffffff163314612f89576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eb5565b600c8054821515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff9091161790556040517fb9bbb15e341600c8d067a0cadeba219905d5ba6d422b193c9c32265d26fc51c890612c0c90831515815260200190565b60005473ffffffffffffffffffffffffffffffffffffffff163314613070576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eb5565b600c80548215156301000000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffff9091161790556040517f341322866a3a2c26c27efa4c270c5ba86f6963257118897dd8196f224c002d4390612c0c90831515815260200190565b60005473ffffffffffffffffffffffffffffffffffffffff163314613159576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eb5565b600e80547fffffffffffffffffffffff0000000000000000000000000000000000000000ff1661010073ffffffffffffffffffffffffffffffffffffffff94851602179055600f80547fffffffffffffffffffffffff00000000000000000000000000000000000000001691909216179055565b60005473ffffffffffffffffffffffffffffffffffffffff16331461324e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eb5565b73ffffffffffffffffffffffffffffffffffffffff81166132f1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610eb5565b6118708161423b565b60005473ffffffffffffffffffffffffffffffffffffffff16331461337b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eb5565b60005b81518160ff16101561247a57600060156000848460ff16815181106133a5576133a56152e9565b60209081029190910181015173ffffffffffffffffffffffffffffffffffffffff16825281019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169115159190911790558061340c81615318565b91505061337e565b600c546301000000900460ff166134ad576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f535441525345543a20636f6d706f756e64696e67206973206e6f7420656e616260448201527f6c656400000000000000000000000000000000000000000000000000000000006064820152608401610eb5565b60165473ffffffffffffffffffffffffffffffffffffffff16636de1a5a9336117e1565b73ffffffffffffffffffffffffffffffffffffffff8316613574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f535441525345543a20617070726f76652066726f6d20746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610eb5565b73ffffffffffffffffffffffffffffffffffffffff8216613616576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f535441525345543a20617070726f766520746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610eb5565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526011602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b601b5460ff16806136af575060005473ffffffffffffffffffffffffffffffffffffffff8481169116145b806136d4575060005473ffffffffffffffffffffffffffffffffffffffff8381169116145b80613704575073ffffffffffffffffffffffffffffffffffffffff831660009081526014602052604090205460ff165b80613734575073ffffffffffffffffffffffffffffffffffffffff821660009081526014602052604090205460ff165b61379a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600860248201527f4e6f74204f70656e0000000000000000000000000000000000000000000000006044820152606401610eb5565b73ffffffffffffffffffffffffffffffffffffffff831660009081526015602052604090205460ff161561382a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f535441525345543a2053656e64657220697320626c61636b6c697374656400006044820152606401610eb5565b73ffffffffffffffffffffffffffffffffffffffff821660009081526015602052604090205460ff16156138e0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f535441525345543a20526563697069656e7420697320626c61636b6c6973746560448201527f64000000000000000000000000000000000000000000000000000000000000006064820152608401610eb5565b73ffffffffffffffffffffffffffffffffffffffff8316613983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f535441525345543a207472616e736665722066726f6d20746865207a65726f2060448201527f61646472657373000000000000000000000000000000000000000000000000006064820152608401610eb5565b73ffffffffffffffffffffffffffffffffffffffff8216613a26576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f464653544152534554463a207472616e7366657220746f20746865207a65726f60448201527f20616464726573730000000000000000000000000000000000000000000000006064820152608401610eb5565b601e5460ff16613a3f57613a3a83836144c0565b613b94565b6000602154118015613a6b575060185473ffffffffffffffffffffffffffffffffffffffff8481169116145b8015613a9d575073ffffffffffffffffffffffffffffffffffffffff83166000908152601f602052604090205460ff16155b8015613acf575073ffffffffffffffffffffffffffffffffffffffff82166000908152601f602052604090205460ff16155b15613b9457602254602154613ae4904361521e565b1015613b945773ffffffffffffffffffffffffffffffffffffffff82166000908152602080526040812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790556023805491613b4583615338565b909155505060405173ffffffffffffffffffffffffffffffffffffffff831681527f18e6e5ce5c121466e41a954e72765d1ea02b8e6919043b61f0dab08b4c6572e59060200160405180910390a15b6000612710601954613ba5600d5490565b613baf9190615371565b613bb991906153ae565b90506000612710601a54613bcc600d5490565b613bd69190615371565b613be091906153ae565b90508183111580613c16575073ffffffffffffffffffffffffffffffffffffffff85166000908152601c602052604090205460ff165b613c7c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f5458204c696d69742045786365656465640000000000000000000000000000006044820152606401610eb5565b60005473ffffffffffffffffffffffffffffffffffffffff868116911614801590613cbd575073ffffffffffffffffffffffffffffffffffffffff84163014155b8015613ce4575060015473ffffffffffffffffffffffffffffffffffffffff858116911614155b8015613d0b575060185473ffffffffffffffffffffffffffffffffffffffff858116911614155b15613d645773ffffffffffffffffffffffffffffffffffffffff8416600090815260106020908152604080832054601d9092529091205460ff1680613d59575081613d56858361526b565b11155b613d6257600080fd5b505b73ffffffffffffffffffffffffffffffffffffffff851660009081526010602052604090205483811015613e1a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f535441525345543a207472616e7366657220616d6f756e74206578636565647360448201527f2062616c616e63650000000000000000000000000000000000000000000000006064820152608401610eb5565b30600090815260106020526040902054600654600c54479183101590610100900460ff168015613e475750805b8015613e565750600e5460ff16155b8015613e88575073ffffffffffffffffffffffffffffffffffffffff891660009081526013602052604090205460ff16155b8015613eaf575060175473ffffffffffffffffffffffffffffffffffffffff8a8116911614155b8015613ed6575060005473ffffffffffffffffffffffffffffffffffffffff8a8116911614155b8015613efd575060005473ffffffffffffffffffffffffffffffffffffffff898116911614155b15613f7457600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055600c5460ff16613f3d5760065492505b613f4783836145da565b42600b55600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690555b60185460009073ffffffffffffffffffffffffffffffffffffffff8b811691161480613fba575060185473ffffffffffffffffffffffffffffffffffffffff8a81169116145b15613fc3575060015b73ffffffffffffffffffffffffffffffffffffffff8a1660009081526012602052604090205460ff168061401c575073ffffffffffffffffffffffffffffffffffffffff891660009081526012602052604090205460ff165b15614025575060005b600e5460ff168061403f5750600c5462010000900460ff16155b15614048575060005b8015614086576000612710600a548a6140619190615371565b61406b91906153ae565b9050614077818a61521e565b98506140848b30836148f4565b505b6140918a8a8a6148f4565b60165473ffffffffffffffffffffffffffffffffffffffff1663e30443bc8b6140dc8173ffffffffffffffffffffffffffffffffffffffff1660009081526010602052604090205490565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff90921660048301526024820152604401600060405180830381600087803b15801561414757600080fd5b505af115801561415b573d6000803e3d6000fd5b505060165473ffffffffffffffffffffffffffffffffffffffff16915063e30443bc90508a6141ac8173ffffffffffffffffffffffffffffffffffffffff1660009081526010602052604090205490565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff90921660048301526024820152604401600060405180830381600087803b15801561421757600080fd5b505af115801561422b573d6000803e3d6000fd5b5050505050505050505050505050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b73ffffffffffffffffffffffffffffffffffffffff821660009081526013602052604090205460ff1615158115151415614392576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604160248201527f535441525345543a206175746f6d61746564206d61726b6574206d616b65722060448201527f7061697220697320616c72656164792073657420746f20746861742076616c7560648201527f6500000000000000000000000000000000000000000000000000000000000000608482015260a401610eb5565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260136020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168215801591909117909155614477576016546040517f0483f7a000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff84811660048301526001602483015290911690630483f7a090604401600060405180830381600087803b15801561445e57600080fd5b505af1158015614472573d6000803e3d6000fd5b505050505b6040518115159073ffffffffffffffffffffffffffffffffffffffff8416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b601e5460ff1615614553576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f4c697175696469747920616c726561647920616464656420616e64206d61726b60448201527f65642e00000000000000000000000000000000000000000000000000000000006064820152608401610eb5565b73ffffffffffffffffffffffffffffffffffffffff82166000908152601f602052604090205460ff1680156145a2575060185473ffffffffffffffffffffffffffffffffffffffff8281169116145b1561247a57601e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055436021555050565b600082116145e6575050565b600e54600090610100900473ffffffffffffffffffffffffffffffffffffffff161561462957600a5460075461461c9085615371565b61462691906153ae565b90505b600080601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015614699573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906146bd9190615235565b11156146e057600a546009546146d39086615371565b6146dd91906153ae565b90505b6000816146ed848761521e565b6146f7919061521e565b905060006147066002836153ae565b90506000614714828461521e565b9050600082614723868861526b565b61472d919061526b565b90504761473982614bb1565b600088614746834761521e565b614750919061526b565b905060008361475f8a84615371565b61476991906153ae565b90506000846147788a85615371565b61478291906153ae565b9050600081614791848661521e565b61479b919061521e565b905082156147f057600e5460405161010090910473ffffffffffffffffffffffffffffffffffffffff16906108fc8515029085906000818181858888f193505050501580156147ee573d6000803e3d6000fd5b505b6147fa8782614d2e565b60408051898152602081018390529081018890527fb63dc6f50047533abe2d6adf180d38d524c8d98e55ad199aac8d6b9801bbe24a9060600160405180910390a181156148e55760165460405160009173ffffffffffffffffffffffffffffffffffffffff169084908381818185875af1925050503d806000811461489b576040519150601f19603f3d011682016040523d82523d6000602084013e6148a0565b606091505b50509050801561422b57604080518c8152602081018590527f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc3910160405180910390a1505b50505050505050505050505050565b73ffffffffffffffffffffffffffffffffffffffff8316614997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f535441525345543a207472616e736665722066726f6d20746865207a65726f2060448201527f61646472657373000000000000000000000000000000000000000000000000006064820152608401610eb5565b73ffffffffffffffffffffffffffffffffffffffff8216614a3a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f535441525345543a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610eb5565b73ffffffffffffffffffffffffffffffffffffffff831660009081526010602052604090205481811015614af0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f535441525345543a207472616e7366657220616d6f756e74206578636565647360448201527f2062616c616e63650000000000000000000000000000000000000000000000006064820152608401610eb5565b614afa828261521e565b73ffffffffffffffffffffffffffffffffffffffff8086166000908152601060205260408082209390935590851681529081208054849290614b3d90849061526b565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051614ba391815260200190565b60405180910390a350505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110614be657614be66152e9565b73ffffffffffffffffffffffffffffffffffffffff928316602091820292909201810191909152601754604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa158015614c65573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614c899190615283565b81600181518110614c9c57614c9c6152e9565b73ffffffffffffffffffffffffffffffffffffffff9283166020918202929092010152601754614ccf91309116846134d1565b6017546040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9091169063791ac94790610f1a9085906000908690309042906004016153e9565b601754614d5390309073ffffffffffffffffffffffffffffffffffffffff16846134d1565b601754600f546040517ff305d71900000000000000000000000000000000000000000000000000000000815230600482015260248101859052600060448201819052606482015273ffffffffffffffffffffffffffffffffffffffff91821660848201524260a482015291169063f305d71990839060c40160606040518083038185885af1158015614de9573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190614e0e9190615474565b5050505050565b73ffffffffffffffffffffffffffffffffffffffff8116811461187057600080fd5b8035614e4281614e15565b919050565b801515811461187057600080fd5b60008060408385031215614e6857600080fd5b8235614e7381614e15565b91506020830135614e8381614e47565b809150509250929050565b600060208083528351808285015260005b81811015614ebb57858101830151858201604001528201614e9f565b81811115614ecd576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60008060408385031215614f1457600080fd5b8235614f1f81614e15565b946020939093013593505050565b600060208284031215614f3f57600080fd5b8135614f4a81614e15565b9392505050565b600080600060608486031215614f6657600080fd5b8335614f7181614e15565b92506020840135614f8181614e15565b929592945050506040919091013590565b600080600060608486031215614fa757600080fd5b505081359360208301359350604090920135919050565b600060208284031215614fd057600080fd5b5035919050565b600080600060608486031215614fec57600080fd5b8335614ff781614e47565b925060208401359150604084013561500e81614e47565b809150509250925092565b6000806040838503121561502c57600080fd5b823591506020830135614e8381614e15565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000602080838503121561508057600080fd5b823567ffffffffffffffff8082111561509857600080fd5b818501915085601f8301126150ac57600080fd5b8135818111156150be576150be61503e565b8060051b6040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0603f830116810181811085821117156151015761510161503e565b60405291825284820192508381018501918883111561511f57600080fd5b938501935b828510156151445761513585614e37565b84529385019392850192615124565b98975050505050505050565b60006020828403121561516257600080fd5b8135614f4a81614e47565b6000806040838503121561518057600080fd5b823561518b81614e15565b91506020830135614e8381614e15565b600181811c908216806151af57607f821691505b602082108114156151e9577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600082821015615230576152306151ef565b500390565b60006020828403121561524757600080fd5b5051919050565b60006020828403121561526057600080fd5b8151614f4a81614e47565b6000821982111561527e5761527e6151ef565b500190565b60006020828403121561529557600080fd5b8151614f4a81614e15565b600080600080600060a086880312156152b857600080fd5b85516152c381614e15565b602087015160408801516060890151608090990151929a91995097965090945092505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600060ff821660ff81141561532f5761532f6151ef565b60010192915050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561536a5761536a6151ef565b5060010190565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156153a9576153a96151ef565b500290565b6000826153e4577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561544657845173ffffffffffffffffffffffffffffffffffffffff1683529383019391830191600101615414565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b60008060006060848603121561548957600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220351976e91baa2f7162171df752cd4d61f2a3ea62161a232b4e4080045ebf95fd64736f6c634300080a0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000bc1277836d4895cb029ed1e9b553601dcfedc668000000000000000000000000bc1277836d4895cb029ed1e9b553601dcfedc66800000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000025ed9d8b35e6dee8efe1316ec816a3a8a7e17ca6000000000000000000000000bc1277836d4895cb029ed1e9b553601dcfedc668

-----Decoded View---------------
Arg [0] : _marketingWallet (address): 0xbc1277836D4895cb029Ed1e9B553601dCfedC668
Arg [1] : _liquidityWallet (address): 0xbc1277836D4895cb029Ed1e9B553601dCfedC668
Arg [2] : whitelistAddress (address[]): 0x25ed9D8b35e6deE8eFe1316ec816A3A8a7e17Ca6,0xbc1277836D4895cb029Ed1e9B553601dCfedC668
Arg [3] : _snipeBlockAmt (uint256): 1

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 000000000000000000000000bc1277836d4895cb029ed1e9b553601dcfedc668
Arg [1] : 000000000000000000000000bc1277836d4895cb029ed1e9b553601dcfedc668
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [5] : 00000000000000000000000025ed9d8b35e6dee8efe1316ec816a3a8a7e17ca6
Arg [6] : 000000000000000000000000bc1277836d4895cb029ed1e9b553601dcfedc668


Deployed Bytecode Sourcemap

35843:23606:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51866:176;;;;;;;;;;-1:-1:-1;51866:176:0;;;;;:::i;:::-;;:::i;:::-;;40073:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40853:210;;;;;;;;;;-1:-1:-1;40853:210:0;;;;;:::i;:::-;;:::i;:::-;;;1968:14:1;;1961:22;1943:41;;1931:2;1916:18;40853:210:0;1803:187:1;36372:27:0;;;;;;;;;;;;;;;;;;;2141:25:1;;;2129:2;2114:18;36372:27:0;1995:177:1;37713:41:0;;;;;;;;;;-1:-1:-1;37713:41:0;;;;;;;;;;;2380:42:1;2368:55;;;2350:74;;2338:2;2323:18;37713:41:0;2177:253:1;40343:108:0;;;;;;;;;;-1:-1:-1;40431:12:0;;40343:108;;58514:111;;;;;;;;;;-1:-1:-1;58514:111:0;;;;;:::i;:::-;58599:18;;58575:4;58599:18;;;:9;:18;;;;;;;;;58514:111;58637:128;;;;;;;;;;-1:-1:-1;58637:128:0;;;;;:::i;:::-;58731:26;;58707:4;58731:26;;;:17;:26;;;;;;;;;58637:128;36335:30;;;;;;;;;;;;;;;;42020:491;;;;;;;;;;-1:-1:-1;42020:491:0;;;;;:::i;:::-;;:::i;54738:184::-;;;;;;;;;;-1:-1:-1;54738:184:0;;;;;:::i;:::-;;:::i;37668:38::-;;;;;;;;;;-1:-1:-1;37668:38:0;;;;;;;;36510:37;;;;;;;;;;-1:-1:-1;36510:37:0;;;;;;;;;;;40259:76;;;;;;;;;;-1:-1:-1;40259:76:0;;40325:2;3553:36:1;;3541:2;3526:18;40259:76:0;3411:184:1;59119:187:0;;;;;;;;;;-1:-1:-1;59119:187:0;;;;;:::i;:::-;;:::i;57134:136::-;;;;;;;;;;-1:-1:-1;57134:136:0;;;;;:::i;:::-;;:::i;41071:280::-;;;;;;;;;;-1:-1:-1;41071:280:0;;;;;:::i;:::-;;:::i;58777:330::-;;;;;;;;;;-1:-1:-1;58777:330:0;;;;;:::i;:::-;;:::i;57397:186::-;;;;;;;;;;-1:-1:-1;57397:186:0;;;;;:::i;:::-;;:::i;37763:28::-;;;;;;;;;;-1:-1:-1;37763:28:0;;;;;;;;54071:96;;;;;;;;;;;;;:::i;51553:126::-;;;;;;;;;;-1:-1:-1;51553:126:0;;;;;:::i;:::-;51643:28;;51619:4;51643:28;;;:19;:28;;;;;;;;;51553:126;38052:36;;;;;;;;;;-1:-1:-1;38052:36:0;;;;;;;;57591:195;;;;;;;;;;-1:-1:-1;57591:195:0;;;;;:::i;:::-;;:::i;52730:322::-;;;;;;;;;;-1:-1:-1;52730:322:0;;;;;:::i;:::-;;:::i;56564:213::-;;;;;;;;;;-1:-1:-1;56564:213:0;;;;;:::i;:::-;;:::i;55816:288::-;;;;;;;;;;-1:-1:-1;55816:288:0;;;;;:::i;:::-;;:::i;56428:128::-;;;;;;;;;;-1:-1:-1;56428:128:0;;;;;:::i;:::-;56519:29;;56495:4;56519:29;;;:20;:29;;;;;;;;;56428:128;53516:547;;;;;;;;;;-1:-1:-1;53516:547:0;;;;;:::i;:::-;;:::i;56958:168::-;;;;;;;;;;-1:-1:-1;56958:168:0;;;;;:::i;:::-;57085:33;;57056:4;57085:33;;;:24;:33;;;;;;;;;56958:168;36437:30;;;;;;;;;;-1:-1:-1;36437:30:0;;;;;;;;;;;40459:177;;;;;;;;;;-1:-1:-1;40459:177:0;;;;;:::i;:::-;40610:18;;40578:7;40610:18;;;:9;:18;;;;;;;40459:177;1475:103;;;;;;;;;;;;;:::i;37800:25::-;;;;;;;;;;;;;;;;54930:280;;;;;;;;;;-1:-1:-1;54930:280:0;;;;;:::i;:::-;;:::i;:::-;;;;5075:42:1;5063:55;;;5045:74;;5150:2;5135:18;;5128:34;;;;5178:18;;;5171:34;;;;5236:2;5221:18;;5214:34;5279:3;5264:19;;5257:35;5032:3;5017:19;54930:280:0;4786:512:1;59314:132:0;;;;;;;;;;-1:-1:-1;59314:132:0;;;;;:::i;:::-;;:::i;36474:29::-;;;;;;;;;;-1:-1:-1;36474:29:0;;;;;;;;;;;824:87;;;;;;;;;;-1:-1:-1;870:7:0;897:6;;;824:87;;51687:171;;;;;;;;;;-1:-1:-1;51687:171:0;;;;;:::i;:::-;;:::i;40164:87::-;;;;;;;;;;;;;:::i;36268:33::-;;;;;;;;;;;;;;;;52478:244;;;;;;;;;;-1:-1:-1;52478:244:0;;;;;:::i;:::-;;:::i;57278:111::-;;;;;;;;;;-1:-1:-1;57278:111:0;;;;;:::i;:::-;;:::i;41359:429::-;;;;;;;;;;-1:-1:-1;41359:429:0;;;;;:::i;:::-;;:::i;55218:140::-;;;;;;;;;;-1:-1:-1;55218:140:0;;;;;:::i;:::-;;:::i;54360:184::-;;;;;;;;;;-1:-1:-1;54360:184:0;;;;;:::i;:::-;;:::i;41796:216::-;;;;;;;;;;-1:-1:-1;41796:216:0;;;;;:::i;:::-;;:::i;54552:178::-;;;;;;;;;;-1:-1:-1;54552:178:0;;;;;:::i;:::-;;:::i;36868:57::-;;;;;;;;;;-1:-1:-1;36868:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;56112:166;;;;;;;;;;-1:-1:-1;56112:166:0;;;;;:::i;:::-;;:::i;51212:333::-;;;;;;;;;;-1:-1:-1;51212:333:0;;;;;:::i;:::-;;:::i;57794:183::-;;;;;;;;;;-1:-1:-1;57794:183:0;;;;;:::i;:::-;;:::i;55510:133::-;;;;;;;;;;-1:-1:-1;55510:133:0;;;;;:::i;:::-;;:::i;52050:183::-;;;;;;;;;;-1:-1:-1;52050:183:0;;;;;:::i;:::-;;:::i;42519:74::-;;;;;;;;;;;;;:::i;36235:32::-;;;;;;;;;;;;;;;;56785:165;;;;;;;;;;-1:-1:-1;56785:165:0;;;;;:::i;:::-;;:::i;56286:134::-;;;;;;;;;;-1:-1:-1;56286:134:0;;;;;:::i;:::-;;:::i;40644:201::-;;;;;;;;;;-1:-1:-1;40644:201:0;;;;;:::i;:::-;40810:18;;;;40778:7;40810:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;40644:201;55366:136;;;;;;;;;;-1:-1:-1;55366:136:0;;;;;:::i;:::-;;:::i;36181:53::-;;;;;;;;;;;;;;;;55651:157;;;;;;;;;;-1:-1:-1;55651:157:0;;;;;:::i;:::-;;:::i;38274:28::-;;;;;;;;;;;;;;;;52241:229;;;;;;;;;;-1:-1:-1;52241:229:0;;;;;:::i;:::-;;:::i;1733:201::-;;;;;;;;;;-1:-1:-1;1733:201:0;;;;;:::i;:::-;;:::i;57985:186::-;;;;;;;;;;-1:-1:-1;57985:186:0;;;;;:::i;:::-;;:::i;54175:177::-;;;;;;;;;;;;;:::i;37832:30::-;;;;;;;;;;;;;;;;36302:32;;;;;;;;;;;;;;;;51866:176;870:7;897:6;1044:23;897:6;278:10;1044:23;1036:68;;;;;;;8247:2:1;1036:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;1036:68:0;;;;;;;;;51979:15:::1;::::0;:55:::1;::::0;;;;:15:::1;8592:55:1::0;;;51979::0::1;::::0;::::1;8574:74:1::0;8691:14;;8684:22;8664:18;;;8657:50;51979:15:0;;::::1;::::0;:36:::1;::::0;8547:18:1;;51979:55:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;51866:176:::0;;:::o;40073:83::-;40110:13;40143:5;40136:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40073:83;:::o;40853:210::-;40972:4;40994:39;278:10;41017:7;41026:6;40994:8;:39::i;:::-;-1:-1:-1;41051:4:0;40853:210;;;;:::o;42020:491::-;42160:4;42177:36;42187:6;42195:9;42206:6;42177:9;:36::i;:::-;42251:19;;;42224:24;42251:19;;;:11;:19;;;;;;;;278:10;42251:33;;;;;;;;42317:26;;;;42295:118;;;;;;;9362:2:1;42295:118:0;;;9344:21:1;9401:2;9381:18;;;9374:30;9440:34;9420:18;;;9413:62;9511:12;9491:18;;;9484:40;9541:19;;42295:118:0;9160:406:1;42295:118:0;42424:57;42433:6;278:10;42455:25;42474:6;42455:16;:25;:::i;:::-;42424:8;:57::i;:::-;-1:-1:-1;42499:4:0;;42020:491;-1:-1:-1;;;;42020:491:0:o;54738:184::-;54867:15;;:47;;;;;:15;2368:55:1;;;54867:47:0;;;2350:74:1;54835:7:0;;54867:15;;:38;;2323:18:1;;54867:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;54860:54;54738:184;-1:-1:-1;;54738:184:0:o;59119:187::-;870:7;897:6;1044:23;897:6;278:10;1044:23;1036:68;;;;;;;8247:2:1;1036:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;1036:68:0;8045:356:1;1036:68:0;59204:24:::1;::::0;::::1;;::::0;;;:9:::1;:24:::0;;;;;;::::1;;59196:57;;;::::0;::::1;::::0;;10281:2:1;59196:57:0::1;::::0;::::1;10263:21:1::0;10320:2;10300:18;;;10293:30;10359:22;10339:18;;;10332:50;10399:18;;59196:57:0::1;10079:344:1::0;59196:57:0::1;59266:24;;59293:5;59266:24:::0;;;:9:::1;:24:::0;;;;;:32;;;::::1;::::0;;59119:187::o;57134:136::-;870:7;897:6;1044:23;897:6;278:10;1044:23;1036:68;;;;;;;8247:2:1;1036:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;1036:68:0;8045:356:1;1036:68:0;57218:44:::1;::::0;;;;57242:10:::1;57218:44;::::0;::::1;10602:74:1::0;10692:18;;;10685:34;;;57218:23:0::1;::::0;::::1;::::0;::::1;::::0;10575:18:1;;57218:44:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;57134:136:::0;;:::o;41071:280::-;278:10;41169:4;41263:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;41169:4;;41191:130;;41241:7;;41263:47;;41300:10;;41263:47;:::i;58777:330::-;870:7;897:6;1044:23;897:6;278:10;1044:23;1036:68;;;;;;;8247:2:1;1036:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;1036:68:0;8045:356:1;1036:68:0;58876:13:::1;::::0;::::1;58859:30:::0;;::::1;58876:13:::0;::::1;58859:30;;58851:90;;;::::0;::::1;::::0;;11315:2:1;58851:90:0::1;::::0;::::1;11297:21:1::0;11354:2;11334:18;;;11327:30;11393:34;11373:18;;;11366:62;11464:17;11444:18;;;11437:45;11499:19;;58851:90:0::1;11113:411:1::0;58851:90:0::1;58985:15;::::0;::::1;58960:41:::0;;::::1;58985:15:::0;::::1;58960:41;;58952:103;;;::::0;::::1;::::0;;11731:2:1;58952:103:0::1;::::0;::::1;11713:21:1::0;11770:2;11750:18;;;11743:30;11809:34;11789:18;;;11782:62;11880:19;11860:18;;;11853:47;11917:19;;58952:103:0::1;11529:413:1::0;58952:103:0::1;59068:24;;;::::0;;;:9:::1;:24:::0;;;;;:31;;;::::1;59095:4;59068:31;::::0;;58777:330::o;57397:186::-;870:7;897:6;1044:23;897:6;278:10;1044:23;1036:68;;;;;;;8247:2:1;1036:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;1036:68:0;8045:356:1;1036:68:0;57468:20:::1;::::0;::::1;;::::0;;;:13:::1;:20;::::0;;;;;::::1;;57467:21;57459:58;;;::::0;::::1;::::0;;12149:2:1;57459:58:0::1;::::0;::::1;12131:21:1::0;12188:2;12168:18;;;12161:30;12227:26;12207:18;;;12200:54;12271:18;;57459:58:0::1;11947:348:1::0;57459:58:0::1;57528:20;;;::::0;;;:13:::1;:20;::::0;;;;:27;;;::::1;57551:4;57528:27;::::0;;57397:186::o;54071:96::-;54106:15;;;;:30;278:10;54145:12;54106:53;;;;;;;;;;2380:42:1;2368:55;;;54106:53:0;;;2350:74:1;2323:18;;54106:53:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;54071:96::o;57591:195::-;870:7;897:6;1044:23;897:6;278:10;1044:23;1036:68;;;;;;;8247:2:1;1036:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;1036:68:0;8045:356:1;1036:68:0;57671:20:::1;::::0;::::1;;::::0;;;:13:::1;:20;::::0;;;;;::::1;;57663:57;;;::::0;::::1;::::0;;12749:2:1;57663:57:0::1;::::0;::::1;12731:21:1::0;12788:2;12768:18;;;12761:30;12827:26;12807:18;;;12800:54;12871:18;;57663:57:0::1;12547:348:1::0;57663:57:0::1;57731:20;;57754:5;57731:20:::0;;;:13:::1;:20;::::0;;;;:28;;;::::1;::::0;;57591:195::o;52730:322::-;870:7;897:6;1044:23;897:6;278:10;1044:23;1036:68;;;;;;;8247:2:1;1036:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;1036:68:0;8045:356:1;1036:68:0;52877:11:::1;:26:::0;;;52914:12:::1;:28:::0;;;52953:11:::1;:26:::0;;;52967:12;53001:28:::1;52929:13:::0;52891:12;53001:28:::1;:::i;:::-;:43;;;;:::i;:::-;52990:8;:54:::0;-1:-1:-1;;;52730:322:0:o;56564:213::-;870:7;897:6;1044:23;897:6;278:10;1044:23;1036:68;;;;;;;8247:2:1;1036:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;1036:68:0;8045:356:1;1036:68:0;56660:3:::1;56652:4;:11;;:28;;;;;56675:5;56667:4;:13;;56652:28;56630:112;;;::::0;::::1;::::0;;13102:2:1;56630:112:0::1;::::0;::::1;13084:21:1::0;13141:2;13121:18;;;13114:30;13180:34;13160:18;;;13153:62;13251:4;13231:18;;;13224:32;13273:19;;56630:112:0::1;12900:398:1::0;56630:112:0::1;56753:9;:16:::0;56564:213::o;55816:288::-;870:7;897:6;1044:23;897:6;278:10;1044:23;1036:68;;;;;;;8247:2:1;1036:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;1036:68:0;8045:356:1;1036:68:0;55980:11:::1;:26:::0;;56017:18:::1;:40:::0;;;;56068:28;::::1;;::::0;55980:26;::::1;;;;56068:28:::0;;;;;;;;;;;;;;;::::1;::::0;;55816:288::o;53516:547::-;870:7;897:6;1044:23;897:6;278:10;1044:23;1036:68;;;;;;;8247:2:1;1036:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;1036:68:0;8045:356:1;1036:68:0;53639:15:::1;::::0;::::1;53617:38:::0;;::::1;53639:15:::0;::::1;53617:38;;53595:141;;;::::0;::::1;::::0;;13505:2:1;53595:141:0::1;::::0;::::1;13487:21:1::0;13544:2;13524:18;;;13517:30;13583:34;13563:18;;;13556:62;13654:23;13634:18;;;13627:51;13695:19;;53595:141:0::1;13303:417:1::0;53595:141:0::1;53794:15;::::0;53752:59:::1;::::0;53794:15:::1;::::0;;::::1;::::0;53752:59;::::1;::::0;::::1;::::0;53794:15:::1;::::0;53752:59:::1;53822:15;:48:::0;;;::::1;;::::0;::::1;::::0;;::::1;::::0;;;53924:25:::1;::::0;;;;;;;-1:-1:-1;;53822:48:0;53924:23:::1;::::0;:25:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;53822:48;53924:25:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;53906:69;;;53984:4;53991:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;53906:108;::::0;;::::1;::::0;;;;;;14165:42:1;14234:15;;;53906:108:0::1;::::0;::::1;14216:34:1::0;14286:15;;14266:18;;;14259:43;14128:18;;53906:108:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;54025:13;:30:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;53516:547:0:o;1475:103::-;870:7;897:6;1044:23;897:6;278:10;1044:23;1036:68;;;;;;;8247:2:1;1036:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;1036:68:0;8045:356:1;1036:68:0;1540:30:::1;1567:1;1540:18;:30::i;:::-;1475:103::o:0;54930:280::-;55163:15;;:39;;;;;:15;2368:55:1;;;55163:39:0;;;2350:74:1;55033:7:0;;;;;;;;;;55163:15;;;:30;;2323:18:1;;55163:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;55156:46;;;;-1:-1:-1;55156:46:0;;-1:-1:-1;55156:46:0;-1:-1:-1;55156:46:0;;-1:-1:-1;54930:280:0;-1:-1:-1;;54930:280:0:o;59314:132::-;870:7;897:6;1044:23;897:6;278:10;1044:23;1036:68;;;;;;;8247:2:1;1036:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;1036:68:0;8045:356:1;1036:68:0;59397:34:::1;;;::::0;;;:17:::1;:34;::::0;;;;:41;;;::::1;59434:4;59397:41;::::0;;59314:132::o;51687:171::-;870:7;897:6;1044:23;897:6;278:10;1044:23;1036:68;;;;;;;8247:2:1;1036:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;1036:68:0;8045:356:1;1036:68:0;51800:15:::1;::::0;:50:::1;::::0;;;;::::1;::::0;::::1;14989:25:1::0;;;51800:15:0::1;15050:55:1::0;;;15030:18;;;15023:83;51800:15:0;;::::1;::::0;:34:::1;::::0;14962:18:1;;51800:50:0::1;14815:297:1::0;40164:87:0;40203:13;40236:7;40229:14;;;;;:::i;52478:244::-;870:7;897:6;1044:23;897:6;278:10;1044:23;1036:68;;;;;;;8247:2:1;1036:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;1036:68:0;8045:356:1;1036:68:0;52608:13:::1;::::0;::::1;52600:21:::0;;::::1;52608:13:::0;::::1;52600:21;;52592:70;;;::::0;::::1;::::0;;15319:2:1;52592:70:0::1;::::0;::::1;15301:21:1::0;15358:2;15338:18;;;15331:30;15397:34;15377:18;;;15370:62;15468:6;15448:18;;;15441:34;15492:19;;52592:70:0::1;15117:400:1::0;52592:70:0::1;52673:41;52702:4;52708:5;52673:28;:41::i;:::-;52478:244:::0;;:::o;57278:111::-;870:7;897:6;1044:23;897:6;278:10;1044:23;1036:68;;;;;;;8247:2:1;1036:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;1036:68:0;8045:356:1;1036:68:0;57344:37:::1;::::0;57352:10:::1;::::0;57344:37;::::1;;;::::0;57373:7;;57344:37:::1;::::0;;;57373:7;57352:10;57344:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;41359:429:::0;278:10;41462:4;41511:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;41578:35;;;;41556:124;;;;;;;15724:2:1;41556:124:0;;;15706:21:1;15763:2;15743:18;;;15736:30;15802:34;15782:18;;;15775:62;15873:9;15853:18;;;15846:37;15900:19;;41556:124:0;15522:403:1;41556:124:0;41691:67;278:10;41714:7;41723:34;41742:15;41723:16;:34;:::i;41691:67::-;-1:-1:-1;41776:4:0;;41359:429;-1:-1:-1;;;41359:429:0:o;55218:140::-;55309:15;;:41;;;;;:15;2368:55:1;;;55309:41:0;;;2350:74:1;55282:7:0;;55309:15;;:32;;2323:18:1;;55309:41:0;2177:253:1;54360:184:0;54489:15;;:47;;;;;:15;2368:55:1;;;54489:47:0;;;2350:74:1;54457:7:0;;54489:15;;:38;;2323:18:1;;54489:47:0;2177:253:1;41796:216:0;41918:4;41940:42;278:10;41964:9;41975:6;41940:9;:42::i;54552:178::-;54678:15;;:44;;;;;:15;2368:55:1;;;54678:44:0;;;2350:74:1;54646:7:0;;54678:15;;:35;;2323:18:1;;54678:44:0;2177:253:1;56112:166:0;870:7;897:6;1044:23;897:6;278:10;1044:23;1036:68;;;;;;;8247:2:1;1036:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;1036:68:0;8045:356:1;1036:68:0;56190:2:::1;56182:4;:10;;:27;;;;;56204:5;56196:4;:13;;56182:27;56174:73;;;::::0;::::1;::::0;;16132:2:1;56174:73:0::1;::::0;::::1;16114:21:1::0;16171:2;16151:18;;;16144:30;16210:34;16190:18;;;16183:62;16281:3;16261:18;;;16254:31;16302:19;;56174:73:0::1;15930:397:1::0;56174:73:0::1;56258:5;:12:::0;56112:166::o;51212:333::-;870:7;897:6;1044:23;897:6;278:10;1044:23;1036:68;;;;;;;8247:2:1;1036:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;1036:68:0;8045:356:1;1036:68:0;51319:28:::1;::::0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;::::1;;:40;;::::0;::::1;;;;51297:140;;;::::0;::::1;::::0;;16534:2:1;51297:140:0::1;::::0;::::1;16516:21:1::0;16573:2;16553:18;;;16546:30;16612:34;16592:18;;;16585:62;16683:20;16663:18;;;16656:48;16721:19;;51297:140:0::1;16332:414:1::0;51297:140:0::1;51448:28;::::0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;;::::1;::::0;::::1;;::::0;;::::1;::::0;;;51503:34;;1943:41:1;;;51503:34:0::1;::::0;1916:18:1;51503:34:0::1;;;;;;;51212:333:::0;;:::o;57794:183::-;870:7;897:6;1044:23;897:6;278:10;1044:23;1036:68;;;;;;;8247:2:1;1036:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;1036:68:0;8045:356:1;1036:68:0;57875:7:::1;57870:100;57892:6;:13;57888:1;:17;;;57870:100;;;57954:4;57927:13;:24;57941:6;57948:1;57941:9;;;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;57927:24:::1;;::::0;;;::::1;::::0;;;;;;-1:-1:-1;57927:24:0;:31;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;57907:3;::::1;::::0;::::1;:::i;:::-;;;;57870:100;;55510:133:::0;870:7;897:6;1044:23;897:6;278:10;1044:23;1036:68;;;;;;;8247:2:1;1036:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;1036:68:0;8045:356:1;1036:68:0;55578:10:::1;:21:::0;;;::::1;;::::0;::::1;::::0;;;::::1;;::::0;;55615:20:::1;::::0;::::1;::::0;::::1;::::0;55591:8;1968:14:1;1961:22;1943:41;;1931:2;1916:18;;1803:187;55615:20:0::1;;;;;;;;55510:133:::0;:::o;52050:183::-;52177:15;;:48;;;;;:15;2368:55:1;;;52177:48:0;;;2350:74:1;52148:4:0;;52177:15;;:39;;2323:18:1;;52177:48:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;42519:74::-;870:7;897:6;1044:23;897:6;278:10;1044:23;1036:68;;;;;;;8247:2:1;1036:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;1036:68:0;8045:356:1;1036:68:0;42572:6:::1;:13:::0;;;::::1;42581:4;42572:13;::::0;;42519:74::o;56785:165::-;870:7;897:6;1044:23;897:6;278:10;1044:23;1036:68;;;;;;;8247:2:1;1036:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;1036:68:0;8045:356:1;1036:68:0;56898:33:::1;::::0;;;::::1;;::::0;;;:24:::1;:33;::::0;;;;:44;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;56785:165::o;56286:134::-;870:7;897:6;1044:23;897:6;278:10;1044:23;1036:68;;;;;;;8247:2:1;1036:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;1036:68:0;8045:356:1;1036:68:0;56372:29:::1;::::0;;;::::1;;::::0;;;:20:::1;:29;::::0;;;;:40;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;56286:134::o;55366:136::-;870:7;897:6;1044:23;897:6;278:10;1044:23;1036:68;;;;;;;8247:2:1;1036:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;1036:68:0;8045:356:1;1036:68:0;55435:11:::1;:22:::0;;;::::1;;;;::::0;;;::::1;;::::0;;55473:21:::1;::::0;::::1;::::0;::::1;::::0;55449:8;1968:14:1;1961:22;1943:41;;1931:2;1916:18;;1803:187;55651:157:0;870:7;897:6;1044:23;897:6;278:10;1044:23;1036:68;;;;;;;8247:2:1;1036:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;1036:68:0;8045:356:1;1036:68:0;55727:18:::1;:29:::0;;;::::1;;::::0;::::1;::::0;;;::::1;;::::0;;55772:28:::1;::::0;::::1;::::0;::::1;::::0;55748:8;1968:14:1;1961:22;1943:41;;1931:2;1916:18;;1803:187;52241:229:0;870:7;897:6;1044:23;897:6;278:10;1044:23;1036:68;;;;;;;8247:2:1;1036:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;1036:68:0;8045:356:1;1036:68:0;52383:15:::1;:34:::0;;;::::1;;;::::0;;::::1;;;::::0;;52428:15:::1;:34:::0;;;::::1;::::0;;;::::1;;::::0;;52241:229::o;1733:201::-;870:7;897:6;1044:23;897:6;278:10;1044:23;1036:68;;;;;;;8247:2:1;1036:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;1036:68:0;8045:356:1;1036:68:0;1822:22:::1;::::0;::::1;1814:73;;;::::0;::::1;::::0;;17322:2:1;1814:73:0::1;::::0;::::1;17304:21:1::0;17361:2;17341:18;;;17334:30;17400:34;17380:18;;;17373:62;17471:8;17451:18;;;17444:36;17497:19;;1814:73:0::1;17120:402:1::0;1814:73:0::1;1898:28;1917:8;1898:18;:28::i;57985:186::-:0;870:7;897:6;1044:23;897:6;278:10;1044:23;1036:68;;;;;;;8247:2:1;1036:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;1036:68:0;8045:356:1;1036:68:0;58068:7:::1;58063:101;58085:6;:13;58081:1;:17;;;58063:101;;;58147:5;58120:13;:24;58134:6;58141:1;58134:9;;;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;58120:24:::1;;::::0;;;::::1;::::0;;;;;;-1:-1:-1;58120:24:0;:32;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;58100:3;::::1;::::0;::::1;:::i;:::-;;;;58063:101;;54175:177:::0;54221:18;;;;;;;54213:66;;;;;;;17729:2:1;54213:66:0;;;17711:21:1;17768:2;17748:18;;;17741:30;17807:34;17787:18;;;17780:62;17878:5;17858:18;;;17851:33;17901:19;;54213:66:0;17527:399:1;54213:66:0;54290:15;;;;:31;278:10;54330:12;198:98;47034:373;47161:19;;;47153:70;;;;;;;18133:2:1;47153:70:0;;;18115:21:1;18172:2;18152:18;;;18145:30;18211:34;18191:18;;;18184:62;18282:8;18262:18;;;18255:36;18308:19;;47153:70:0;17931:402:1;47153:70:0;47242:21;;;47234:70;;;;;;;18540:2:1;47234:70:0;;;18522:21:1;18579:2;18559:18;;;18552:30;18618:34;18598:18;;;18591:62;18689:6;18669:18;;;18662:34;18713:19;;47234:70:0;18338:400:1;47234:70:0;47315:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;47367:32;;2141:25:1;;;47367:32:0;;2114:18:1;47367:32:0;;;;;;;47034:373;;;:::o;42601:3802::-;42747:6;;;;;:44;;-1:-1:-1;870:7:0;897:6;;42774:17;;;897:6;;42774:17;42747:44;:85;;;-1:-1:-1;870:7:0;897:6;;42812:20;;;897:6;;42812:20;42747:85;:124;;;-1:-1:-1;42853:18:0;;;;;;;:10;:18;;;;;;;;42747:124;:166;;;-1:-1:-1;42892:21:0;;;;;;;:10;:21;;;;;;;;42747:166;42725:224;;;;;;;18945:2:1;42725:224:0;;;18927:21:1;18984:1;18964:18;;;18957:29;19022:10;19002:18;;;18995:38;19050:18;;42725:224:0;18743:331:1;42725:224:0;42971:21;;;;;;;:13;:21;;;;;;;;42970:22;42962:65;;;;;;;19281:2:1;42962:65:0;;;19263:21:1;19320:2;19300:18;;;19293:30;19359:32;19339:18;;;19332:60;19409:18;;42962:65:0;19079:354:1;42962:65:0;43047:24;;;;;;;:13;:24;;;;;;;;43046:25;43038:71;;;;;;;19640:2:1;43038:71:0;;;19622:21:1;19679:2;19659:18;;;19652:30;19718:34;19698:18;;;19691:62;19789:3;19769:18;;;19762:31;19810:19;;43038:71:0;19438:397:1;43038:71:0;43130:20;;;43122:72;;;;;;;20042:2:1;43122:72:0;;;20024:21:1;20081:2;20061:18;;;20054:30;20120:34;20100:18;;;20093:62;20191:9;20171:18;;;20164:37;20218:19;;43122:72:0;19840:403:1;43122:72:0;43213:23;;;43205:76;;;;;;;20450:2:1;43205:76:0;;;20432:21:1;20489:2;20469:18;;;20462:30;20528:34;20508:18;;;20501:62;20599:10;20579:18;;;20572:38;20627:19;;43205:76:0;20248:404:1;43205:76:0;43299:16;;;;43294:547;;43332:37;43351:6;43359:9;43332:18;:37::i;:::-;43294:547;;;43421:1;43406:12;;:16;:61;;;;-1:-1:-1;43454:13:0;;;43444:23;;;43454:13;;43444:23;43406:61;:109;;;;-1:-1:-1;43490:25:0;;;;;;;:17;:25;;;;;;;;43489:26;43406:109;:159;;;;-1:-1:-1;43537:28:0;;;;;;;:17;:28;;;;;;;;43536:29;43406:159;43402:428;;;43634:13;;43619:12;;43604:27;;:12;:27;:::i;:::-;:43;43600:215;;;43672:20;;;;;;;:9;:20;;;;;:27;;;;43695:4;43672:27;;;43722:13;:16;;;;;;:::i;:::-;;;;-1:-1:-1;;43766:23:0;;2380:42:1;2368:55;;2350:74;;43766:23:0;;2338:2:1;2323:18;43766:23:0;;;;;;;43600:215;43855:20;43904:5;43895;;43879:13;40431:12;;;40343:108;43879:13;:21;;;;:::i;:::-;43878:31;;;;:::i;:::-;43855:54;;43911:18;43962:5;43949:9;;43933:13;40431:12;;;40343:108;43933:13;:25;;;;:::i;:::-;43932:35;;;;:::i;:::-;43911:56;;44010:12;44000:6;:22;;:54;;;-1:-1:-1;44026:28:0;;;;;;;:20;:28;;;;;;;;44000:54;43978:121;;;;;;;21571:2:1;43978:121:0;;;21553:21:1;21610:2;21590:18;;;21583:30;21649:19;21629:18;;;21622:47;21686:18;;43978:121:0;21369:341:1;43978:121:0;870:7;897:6;;44130:17;;;897:6;;44130:17;;;;:60;;-1:-1:-1;44164:26:0;;;44185:4;44164:26;;44130:60;:103;;;;-1:-1:-1;44228:4:0;;;44207:26;;;44228:4;;44207:26;;44130:103;:146;;;;-1:-1:-1;44263:13:0;;;44250:26;;;44263:13;;44250:26;;44130:146;44112:403;;;40610:18;;;44303:22;40610:18;;;:9;:18;;;;;;;;;44389:24;:35;;;;;;;;;;:99;;-1:-1:-1;44477:10:0;44450:23;44467:6;44450:14;:23;:::i;:::-;:37;;44389:99;44363:140;;;;;;44288:227;44112:403;44551:17;;;44527:21;44551:17;;;:9;:17;;;;;;44601:23;;;;44579:113;;;;;;;21917:2:1;44579:113:0;;;21899:21:1;21956:2;21936:18;;;21929:30;21995:34;21975:18;;;21968:62;22066:10;22046:18;;;22039:38;22094:19;;44579:113:0;21715:404:1;44579:113:0;44754:4;44705:28;40610:18;;;:9;:18;;;;;;44876;;44925:11;;44803:21;;44852:42;;;;44925:11;;;;;:43;;;;;44961:7;44925:43;:77;;;;-1:-1:-1;44994:8:0;;;;44993:9;44925:77;:158;;;;-1:-1:-1;45050:33:0;;;;;;;:25;:33;;;;;;;;45049:34;44925:158;:258;;;;-1:-1:-1;45167:15:0;;;45149:34;;;45167:15;;45149:34;;44925:258;:330;;;;-1:-1:-1;870:7:0;897:6;;45238:17;;;897:6;;45238:17;;44925:330;:367;;;;-1:-1:-1;870:7:0;897:6;;45272:20;;;897:6;;45272:20;;44925:367;44907:700;;;45319:8;:15;;;;45330:4;45319:15;;;45356:12;;45319:15;45356:12;45351:95;;45412:18;;45389:41;;45351:95;45460:57;45473:20;45495:21;45460:12;:57::i;:::-;45549:15;45534:12;:30;45579:8;:16;;;;;;44907:700;45680:13;;45619:12;;45680:13;45662:32;;;45680:13;;45662:32;;:84;;-1:-1:-1;45732:13:0;;;45711:35;;;45732:13;;45711:35;45662:84;45644:155;;;-1:-1:-1;45783:4:0;45644:155;45815:27;;;;;;;:19;:27;;;;;;;;;:61;;-1:-1:-1;45846:30:0;;;;;;;:19;:30;;;;;;;;45815:61;45811:109;;;-1:-1:-1;45903:5:0;45811:109;45936:8;;;;;:23;;-1:-1:-1;45949:10:0;;;;;;;45948:11;45936:23;45932:71;;;-1:-1:-1;45986:5:0;45932:71;46019:7;46015:171;;;46043:12;46080:5;46068:8;;46059:6;:17;;;;:::i;:::-;46058:27;;;;:::i;:::-;46043:42;-1:-1:-1;46100:14:0;46043:42;46100:14;;:::i;:::-;;;46129:45;46146:6;46162:4;46169;46129:16;:45::i;:::-;46028:158;46015:171;46198:43;46215:6;46223:9;46234:6;46198:16;:43::i;:::-;46254:15;;;;:26;46289:6;46298:17;46289:6;40610:18;;40578:7;40610:18;;;:9;:18;;;;;;;40459:177;46298:17;46254:62;;;;;;;;;;10632:42:1;10620:55;;;46254:62:0;;;10602:74:1;10692:18;;;10685:34;10575:18;;46254:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;46327:15:0;;;;;-1:-1:-1;46327:26:0;;-1:-1:-1;46362:9:0;46374:20;46362:9;40610:18;;40578:7;40610:18;;;:9;:18;;;;;;;40459:177;46374:20;46327:68;;;;;;;;;;10632:42:1;10620:55;;;46327:68:0;;;10602:74:1;10692:18;;;10685:34;10575:18;;46327:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42714:3689;;;;;;;42601:3802;;;:::o;2094:191::-;2168:16;2187:6;;;2204:17;;;;;;;;;;2237:40;;2187:6;;;;;;;2237:40;;2168:16;2237:40;2157:128;2094:191;:::o;53060:448::-;53165:31;;;;;;;:25;:31;;;;;;;;:40;;;;;;;53143:155;;;;;;;22644:2:1;53143:155:0;;;22626:21:1;22683:2;22663:18;;;22656:30;22722:34;22702:18;;;22695:62;22793:34;22773:18;;;22766:62;22865:3;22844:19;;;22837:32;22886:19;;53143:155:0;22442:469:1;53143:155:0;53309:31;;;;;;;:25;:31;;;;;:39;;;;;;;;;;;;;;;53359:86;;53385:15;;:48;;;;;:15;8592:55:1;;;53385:48:0;;;8574:74:1;53385:15:0;8664:18:1;;;8657:50;53385:15:0;;;;:36;;8547:18:1;;53385:48:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53359:86;53460:40;;;;;;;;;;;;;;;53060:448;;:::o;58206:300::-;58288:16;;;;58287:17;58279:65;;;;;;;23118:2:1;58279:65:0;;;23100:21:1;23157:2;23137:18;;;23130:30;23196:34;23176:18;;;23169:62;23267:5;23247:18;;;23240:33;23290:19;;58279:65:0;22916:399:1;58279:65:0;58359:23;;;;;;;:17;:23;;;;;;;;:46;;;;-1:-1:-1;58392:13:0;;;58386:19;;;58392:13;;58386:19;58359:46;58355:144;;;58422:16;:23;;;;58441:4;58422:23;;;58475:12;58460;:27;58206:300;;:::o;49206:1998::-;49293:1;49283:6;:11;49279:50;;49206:1998;;:::o;49279:50::-;49391:15;;49341:27;;49391:15;;;49383:38;49391:15;49383:38;49379:126;;49485:8;;49470:11;;49461:20;;:6;:20;:::i;:::-;49460:33;;;;:::i;:::-;49438:55;;49379:126;49517:27;49591:1;49559:15;;;;;;;;;;;:27;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:33;49555:121;;;49656:8;;49641:11;;49632:20;;:6;:20;:::i;:::-;49631:33;;;;:::i;:::-;49609:55;;49555:121;49688:26;49774:19;49717:41;49739:19;49717:6;:41;:::i;:::-;:76;;;;:::i;:::-;49688:105;-1:-1:-1;49804:27:0;49834:22;49855:1;49688:105;49834:22;:::i;:::-;49804:52;-1:-1:-1;49867:26:0;49896:40;49804:52;49896:18;:40;:::i;:::-;49867:69;-1:-1:-1;49947:23:0;50043:19;49973:54;50008:19;49973;:54;:::i;:::-;:89;;;;:::i;:::-;49947:115;-1:-1:-1;50099:21:0;50131:36;49947:115;50131:19;:36::i;:::-;50178:21;50257:6;50203:37;50227:13;50203:21;:37;:::i;:::-;50202:61;;;;:::i;:::-;50178:85;-1:-1:-1;50276:23:0;50355:15;50303:35;50319:19;50178:85;50303:35;:::i;:::-;50302:68;;;;:::i;:::-;50276:94;-1:-1:-1;50381:23:0;50460:15;50408:35;50424:19;50408:13;:35;:::i;:::-;50407:68;;;;:::i;:::-;50381:94;-1:-1:-1;50486:23:0;50381:94;50512:44;50541:15;50512:13;:44;:::i;:::-;:75;;;;:::i;:::-;50486:101;-1:-1:-1;50604:19:0;;50600:102;;50648:15;;50640:50;;50648:15;;;;;;;50640:50;;;;;;;;;;;;50648:15;50640:50;;;;;;;;;;;;;;;;;;;;;50600:102;50714:49;50727:18;50747:15;50714:12;:49::i;:::-;50779:127;;;23522:25:1;;;23578:2;23563:18;;23556:34;;;23606:18;;;23599:34;;;50779:127:0;;23510:2:1;23495:18;50779:127:0;;;;;;;50923:19;;50919:278;;50986:15;;50978:89;;50960:12;;50986:15;;;51033;;50960:12;50978:89;50960:12;50978:89;51033:15;50986;50978:89;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50959:108;;;51086:7;51082:104;;;51119:51;;;24028:25:1;;;24084:2;24069:18;;24062:34;;;51119:51:0;;24001:18:1;51119:51:0;;;;;;;50944:253;50919:278;49268:1936;;;;;;;;;;;49206:1998;;:::o;46411:615::-;46549:20;;;46541:72;;;;;;;20042:2:1;46541:72:0;;;20024:21:1;20081:2;20061:18;;;20054:30;20120:34;20100:18;;;20093:62;20191:9;20171:18;;;20164:37;20218:19;;46541:72:0;19840:403:1;46541:72:0;46632:23;;;46624:73;;;;;;;24309:2:1;46624:73:0;;;24291:21:1;24348:2;24328:18;;;24321:30;24387:34;24367:18;;;24360:62;24458:7;24438:18;;;24431:35;24483:19;;46624:73:0;24107:401:1;46624:73:0;46732:17;;;46708:21;46732:17;;;:9;:17;;;;;;46782:23;;;;46760:113;;;;;;;21917:2:1;46760:113:0;;;21899:21:1;21956:2;21936:18;;;21929:30;21995:34;21975:18;;;21968:62;22066:10;22046:18;;;22039:38;22094:19;;46760:113:0;21715:404:1;46760:113:0;46904:22;46920:6;46904:13;:22;:::i;:::-;46884:17;;;;;;;;:9;:17;;;;;;:42;;;;46937:20;;;;;;;;:30;;46961:6;;46884:17;46937:30;;46961:6;;46937:30;:::i;:::-;;;;;;;;47000:9;46983:35;;46992:6;46983:35;;;47011:6;46983:35;;;;2141:25:1;;2129:2;2114:18;;1995:177;46983:35:0;;;;;;;;46530:496;46411:615;;;:::o;48121:490::-;48209:16;;;48223:1;48209:16;;;;;;;;48185:21;;48209:16;;;;;;;;;;-1:-1:-1;48209:16:0;48185:40;;48254:4;48236;48241:1;48236:7;;;;;;;;:::i;:::-;:23;;;;:7;;;;;;;;;;:23;;;;48280:15;;:22;;;;;;;;:15;;;;;:20;;:22;;;;;48236:7;;48280:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48270:4;48275:1;48270:7;;;;;;;;:::i;:::-;:32;;;;:7;;;;;;;;;:32;48345:15;;48313:57;;48330:4;;48345:15;48363:6;48313:8;:57::i;:::-;48381:15;;:222;;;;;:15;;;;;:66;;:222;;48462:6;;48381:15;;48530:4;;48557;;48577:15;;48381:222;;;:::i;48619:395::-;48724:15;;48692:57;;48709:4;;48724:15;;48742:6;48692:8;:57::i;:::-;48760:15;;48950;;48760:246;;;;;48829:4;48760:246;;;25908:34:1;25958:18;;;25951:34;;;48760:15:0;26001:18:1;;;25994:34;;;26044:18;;;26037:34;48760:15:0;48950;;;26087:19:1;;;26080:44;48980:15:0;26140:19:1;;;26133:35;48760:15:0;;;:31;;48799:6;;25819:19:1;;48760:246:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;48619:395;;:::o;14:154:1:-;100:42;93:5;89:54;82:5;79:65;69:93;;158:1;155;148:12;173:134;241:20;;270:31;241:20;270:31;:::i;:::-;173:134;;;:::o;312:118::-;398:5;391:13;384:21;377:5;374:32;364:60;;420:1;417;410:12;435:382;500:6;508;561:2;549:9;540:7;536:23;532:32;529:52;;;577:1;574;567:12;529:52;616:9;603:23;635:31;660:5;635:31;:::i;:::-;685:5;-1:-1:-1;742:2:1;727:18;;714:32;755:30;714:32;755:30;:::i;:::-;804:7;794:17;;;435:382;;;;;:::o;822:656::-;934:4;963:2;992;981:9;974:21;1024:6;1018:13;1067:6;1062:2;1051:9;1047:18;1040:34;1092:1;1102:140;1116:6;1113:1;1110:13;1102:140;;;1211:14;;;1207:23;;1201:30;1177:17;;;1196:2;1173:26;1166:66;1131:10;;1102:140;;;1260:6;1257:1;1254:13;1251:91;;;1330:1;1325:2;1316:6;1305:9;1301:22;1297:31;1290:42;1251:91;-1:-1:-1;1394:2:1;1382:15;1399:66;1378:88;1363:104;;;;1469:2;1359:113;;822:656;-1:-1:-1;;;822:656:1:o;1483:315::-;1551:6;1559;1612:2;1600:9;1591:7;1587:23;1583:32;1580:52;;;1628:1;1625;1618:12;1580:52;1667:9;1654:23;1686:31;1711:5;1686:31;:::i;:::-;1736:5;1788:2;1773:18;;;;1760:32;;-1:-1:-1;;;1483:315:1:o;2435:247::-;2494:6;2547:2;2535:9;2526:7;2522:23;2518:32;2515:52;;;2563:1;2560;2553:12;2515:52;2602:9;2589:23;2621:31;2646:5;2621:31;:::i;:::-;2671:5;2435:247;-1:-1:-1;;;2435:247:1:o;2687:456::-;2764:6;2772;2780;2833:2;2821:9;2812:7;2808:23;2804:32;2801:52;;;2849:1;2846;2839:12;2801:52;2888:9;2875:23;2907:31;2932:5;2907:31;:::i;:::-;2957:5;-1:-1:-1;3014:2:1;2999:18;;2986:32;3027:33;2986:32;3027:33;:::i;:::-;2687:456;;3079:7;;-1:-1:-1;;;3133:2:1;3118:18;;;;3105:32;;2687:456::o;3831:316::-;3908:6;3916;3924;3977:2;3965:9;3956:7;3952:23;3948:32;3945:52;;;3993:1;3990;3983:12;3945:52;-1:-1:-1;;4016:23:1;;;4086:2;4071:18;;4058:32;;-1:-1:-1;4137:2:1;4122:18;;;4109:32;;3831:316;-1:-1:-1;3831:316:1:o;4152:180::-;4211:6;4264:2;4252:9;4243:7;4239:23;4235:32;4232:52;;;4280:1;4277;4270:12;4232:52;-1:-1:-1;4303:23:1;;4152:180;-1:-1:-1;4152:180:1:o;4337:444::-;4408:6;4416;4424;4477:2;4465:9;4456:7;4452:23;4448:32;4445:52;;;4493:1;4490;4483:12;4445:52;4532:9;4519:23;4551:28;4573:5;4551:28;:::i;:::-;4598:5;-1:-1:-1;4650:2:1;4635:18;;4622:32;;-1:-1:-1;4706:2:1;4691:18;;4678:32;4719:30;4678:32;4719:30;:::i;:::-;4768:7;4758:17;;;4337:444;;;;;:::o;5303:315::-;5371:6;5379;5432:2;5420:9;5411:7;5407:23;5403:32;5400:52;;;5448:1;5445;5438:12;5400:52;5484:9;5471:23;5461:33;;5544:2;5533:9;5529:18;5516:32;5557:31;5582:5;5557:31;:::i;5623:184::-;5675:77;5672:1;5665:88;5772:4;5769:1;5762:15;5796:4;5793:1;5786:15;5812:1180;5896:6;5927:2;5970;5958:9;5949:7;5945:23;5941:32;5938:52;;;5986:1;5983;5976:12;5938:52;6026:9;6013:23;6055:18;6096:2;6088:6;6085:14;6082:34;;;6112:1;6109;6102:12;6082:34;6150:6;6139:9;6135:22;6125:32;;6195:7;6188:4;6184:2;6180:13;6176:27;6166:55;;6217:1;6214;6207:12;6166:55;6253:2;6240:16;6275:2;6271;6268:10;6265:36;;;6281:18;;:::i;:::-;6327:2;6324:1;6320:10;6359:2;6353:9;6418:66;6413:2;6409;6405:11;6401:84;6393:6;6389:97;6536:6;6524:10;6521:22;6516:2;6504:10;6501:18;6498:46;6495:72;;;6547:18;;:::i;:::-;6583:2;6576:22;6633:18;;;6667:15;;;;-1:-1:-1;6709:11:1;;;6705:20;;;6737:19;;;6734:39;;;6769:1;6766;6759:12;6734:39;6793:11;;;;6813:148;6829:6;6824:3;6821:15;6813:148;;;6895:23;6914:3;6895:23;:::i;:::-;6883:36;;6846:12;;;;6939;;;;6813:148;;;6980:6;5812:1180;-1:-1:-1;;;;;;;;5812:1180:1:o;6997:241::-;7053:6;7106:2;7094:9;7085:7;7081:23;7077:32;7074:52;;;7122:1;7119;7112:12;7074:52;7161:9;7148:23;7180:28;7202:5;7180:28;:::i;7243:388::-;7311:6;7319;7372:2;7360:9;7351:7;7347:23;7343:32;7340:52;;;7388:1;7385;7378:12;7340:52;7427:9;7414:23;7446:31;7471:5;7446:31;:::i;:::-;7496:5;-1:-1:-1;7553:2:1;7538:18;;7525:32;7566:33;7525:32;7566:33;:::i;8718:437::-;8797:1;8793:12;;;;8840;;;8861:61;;8915:4;8907:6;8903:17;8893:27;;8861:61;8968:2;8960:6;8957:14;8937:18;8934:38;8931:218;;;9005:77;9002:1;8995:88;9106:4;9103:1;9096:15;9134:4;9131:1;9124:15;8931:218;;8718:437;;;:::o;9571:184::-;9623:77;9620:1;9613:88;9720:4;9717:1;9710:15;9744:4;9741:1;9734:15;9760:125;9800:4;9828:1;9825;9822:8;9819:34;;;9833:18;;:::i;:::-;-1:-1:-1;9870:9:1;;9760:125::o;9890:184::-;9960:6;10013:2;10001:9;9992:7;9988:23;9984:32;9981:52;;;10029:1;10026;10019:12;9981:52;-1:-1:-1;10052:16:1;;9890:184;-1:-1:-1;9890:184:1:o;10730:245::-;10797:6;10850:2;10838:9;10829:7;10825:23;10821:32;10818:52;;;10866:1;10863;10856:12;10818:52;10898:9;10892:16;10917:28;10939:5;10917:28;:::i;10980:128::-;11020:3;11051:1;11047:6;11044:1;11041:13;11038:39;;;11057:18;;:::i;:::-;-1:-1:-1;11093:9:1;;10980:128::o;13725:251::-;13795:6;13848:2;13836:9;13827:7;13823:23;13819:32;13816:52;;;13864:1;13861;13854:12;13816:52;13896:9;13890:16;13915:31;13940:5;13915:31;:::i;14313:497::-;14419:6;14427;14435;14443;14451;14504:3;14492:9;14483:7;14479:23;14475:33;14472:53;;;14521:1;14518;14511:12;14472:53;14553:9;14547:16;14572:31;14597:5;14572:31;:::i;:::-;14667:2;14652:18;;14646:25;14711:2;14696:18;;14690:25;14755:2;14740:18;;14734:25;14799:3;14784:19;;;14778:26;14622:5;;14646:25;;-1:-1:-1;14690:25:1;14734;-1:-1:-1;14778:26:1;;-1:-1:-1;14313:497:1;-1:-1:-1;;;14313:497:1:o;16751:184::-;16803:77;16800:1;16793:88;16900:4;16897:1;16890:15;16924:4;16921:1;16914:15;16940:175;16977:3;17021:4;17014:5;17010:16;17050:4;17041:7;17038:17;17035:43;;;17058:18;;:::i;:::-;17107:1;17094:15;;16940:175;-1:-1:-1;;16940:175:1:o;20657:195::-;20696:3;20727:66;20720:5;20717:77;20714:103;;;20797:18;;:::i;:::-;-1:-1:-1;20844:1:1;20833:13;;20657:195::o;20857:228::-;20897:7;21023:1;20955:66;20951:74;20948:1;20945:81;20940:1;20933:9;20926:17;20922:105;20919:131;;;21030:18;;:::i;:::-;-1:-1:-1;21070:9:1;;20857:228::o;21090:274::-;21130:1;21156;21146:189;;21191:77;21188:1;21181:88;21292:4;21289:1;21282:15;21320:4;21317:1;21310:15;21146:189;-1:-1:-1;21349:9:1;;21090:274::o;24513:1026::-;24775:4;24823:3;24812:9;24808:19;24854:6;24843:9;24836:25;24880:2;24918:6;24913:2;24902:9;24898:18;24891:34;24961:3;24956:2;24945:9;24941:18;24934:31;24985:6;25020;25014:13;25051:6;25043;25036:22;25089:3;25078:9;25074:19;25067:26;;25128:2;25120:6;25116:15;25102:29;;25149:1;25159:218;25173:6;25170:1;25167:13;25159:218;;;25238:13;;25253:42;25234:62;25222:75;;25352:15;;;;25317:12;;;;25195:1;25188:9;25159:218;;;-1:-1:-1;;25445:42:1;25433:55;;;;25428:2;25413:18;;25406:83;-1:-1:-1;;;25520:3:1;25505:19;25498:35;25394:3;24513:1026;-1:-1:-1;;;24513:1026:1:o;26179:306::-;26267:6;26275;26283;26336:2;26324:9;26315:7;26311:23;26307:32;26304:52;;;26352:1;26349;26342:12;26304:52;26381:9;26375:16;26365:26;;26431:2;26420:9;26416:18;26410:25;26400:35;;26475:2;26464:9;26460:18;26454:25;26444:35;;26179:306;;;;;:::o

Swarm Source

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