ETH Price: $3,283.35 (+0.11%)
Gas: 14 Gwei

Token

Pump Fund Treasury (PUMP)
 

Overview

Max Total Supply

1,000,000,000 PUMP

Holders

84

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
3,440,000 PUMP

Value
$0.00
0x3f328e127a96d9df109654e103e561d416bcefe7
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:
Pump

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-01-12
*/

// hevm: flattened sources of src/pumpf.sol
// SPDX-License-Identifier: MIT
pragma solidity =0.8.10 >=0.8.0 <0.9.0;
pragma experimental ABIEncoderV2;

////// lib/openzeppelin-contracts/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

/* pragma solidity ^0.8.0; */

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

////// lib/openzeppelin-contracts/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

/* pragma solidity ^0.8.0; */

/* import "../utils/Context.sol"; */

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

/* pragma solidity ^0.8.0; */

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

/* pragma solidity ^0.8.0; */

/* import "../IERC20.sol"; */

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

/* pragma solidity ^0.8.0; */

/* import "./IERC20.sol"; */
/* import "./extensions/IERC20Metadata.sol"; */
/* import "../../utils/Context.sol"; */

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

////// lib/openzeppelin-contracts/contracts/utils/Address.sol
// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)

/* pragma solidity ^0.8.0; */

/**
 * @dev Collection of functions related to the address type
 */
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);
            }
        }
    }
}

////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

/* pragma solidity ^0.8.0; */

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

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

    function WETH() external pure returns (address);

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

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

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

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

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

////// pump.sol
/**

Pump Fund Treasury
Mining DeFI 3.0 for Profits and Wealth

Investor Dashboard:
https://pumpfund.us/dashboard

Discussion:
https://t.me/PumpFundTreasury

*/

/* pragma solidity 0.8.10; */

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

/* import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; */
/* import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; */
/* import {IUniswapV2Pair} from "./IUniswapV2Pair.sol"; */

contract Pump is Ownable, IERC20 {
    address UNISWAPROUTER = address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
    address DEAD = 0x000000000000000000000000000000000000dEaD;
    address ZERO = 0x0000000000000000000000000000000000000000;

    string private _name = "Pump Fund Treasury";
    string private _symbol = "PUMP";

    uint256 public treasuryFeeBPS = 900;
    uint256 public liquidityFeeBPS = 100;
    uint256 public dividendFeeBPS = 400;
    uint256 public totalFeeBPS = 1400;

    uint256 public swapTokensAtAmount = 100000 * (10**18);
    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 maxTxBPS = 200;
    uint256 public maxWalletBPS = 500;

    bool isOpen = false;

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

    constructor(
        address _marketingWallet,
        address _liquidityWallet,
        address[] memory whitelistAddress
    ) {
        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);

        _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,
            "PUMP: 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,
            "PUMP: 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], "PUMP: Sender is blacklisted");
        require(!isBlacklisted[recipient], "PUMP: Recipient is blacklisted");

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

        uint256 _maxTxAmount = (totalSupply() * maxTxBPS) / 10000;
        uint256 _maxWallet = (totalSupply() * maxWalletBPS) / 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,
            "PUMP: 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 * totalFeeBPS) / 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), "PUMP: transfer from the zero address");
        require(recipient != address(0), "PUMP: transfer to the zero address");
        uint256 senderBalance = _balances[sender];
        require(
            senderBalance >= amount,
            "PUMP: 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), "PUMP: approve from the zero address");
        require(spender != address(0), "PUMP: 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), "PUMP: 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), "PUMP: burn from the zero address");
        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "PUMP: 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 * treasuryFeeBPS) / totalFeeBPS;
        }

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

        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,
            "PUMP: 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, "PUMP: DEX pair can not be removed");
        _setAutomatedMarketMakerPair(pair, value);
    }

    function setFee(
        uint256 _treasuryFee,
        uint256 _liquidityFee,
        uint256 _dividendFee
    ) external onlyOwner {
        treasuryFeeBPS = _treasuryFee;
        liquidityFeeBPS = _liquidityFee;
        dividendFeeBPS = _dividendFee;
        totalFeeBPS = _treasuryFee + _liquidityFee + _dividendFee;
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        require(
            automatedMarketMakerPairs[pair] != value,
            "PUMP: 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),
            "PUMP: 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, "PUMP: 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 setMaxTxBPS(uint256 bps) external onlyOwner {
        require(bps >= 75 && bps <= 10000, "BPS must be between 75 and 10000");
        maxTxBPS = bps;
    }

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

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

    function setMaxWalletBPS(uint256 bps) external onlyOwner {
        require(
            bps >= 175 && bps <= 10000,
            "BPS must be between 175 and 10000"
        );
        maxWalletBPS = bps;
    }

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

contract DividendTracker is Ownable, IERC20 {
    address UNISWAPROUTER;

    string private _name = "PUMP_DividendTracker";
    string private _symbol = "PUMP_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,
            "PUMP_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),
            "PUMP_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),
            "PUMP_DividendTracker: burn from the zero address"
        );
        uint256 accountBalance = _balances[account];
        require(
            accountBalance >= amount,
            "PUMP_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("PUMP_DividendTracker: method not implemented");
    }

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

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

    function transferFrom(
        address,
        address,
        uint256
    ) public pure override returns (bool) {
        revert("PUMP_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[]"}],"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":"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":[{"internalType":"address","name":"account","type":"address"}],"name":"accumulativeDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"dividendFeeBPS","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":[],"name":"lastSwapTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityFeeBPS","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":"maxTxBPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletBPS","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":[],"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":"bps","type":"uint256"}],"name":"setMaxTxBPS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"bps","type":"uint256"}],"name":"setMaxWalletBPS","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":"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":"totalFeeBPS","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":"treasuryFeeBPS","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"}]

600180546001600160a01b0319908116737a250d5630b4cf539739df2c5dacb4c659f2488d1790915560028054821661dead17905560038054909116905560c0604052601260808190527150756d702046756e6420547265617375727960701b60a090815262000073916004919062000b7b565b5060408051808201909152600480825263050554d560e41b6020909201918252620000a19160059162000b7b565b50610384600655606460075561019060085561057860095569152d02c7e14af6800000600a55600c805463ffffffff1916630101010117905560c86019556101f4601a55601b805460ff19169055348015620000fc57600080fd5b5060405162007f8938038062007f898339810160408190526200011f9162000c62565b6200012a3362000632565b600e8054610100600160a81b0319166101006001600160a01b038681169190910291909117909155600f80546001600160a01b031916918416919091179055620001748162000682565b60015460405130916001600160a01b031690620001919062000c0a565b6001600160a01b03928316815291166020820152604001604051809103906000f080158015620001c5573d6000803e3d6000fd5b50601680546001600160a01b0319166001600160a01b039283161790556001546040805163c45a015560e01b815290519190921691600091839163c45a01559160048083019260209291908290030181865afa1580156200022a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000250919062000d5c565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200029e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002c4919062000d5c565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000312573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000338919062000d5c565b601780546001600160a01b038086166001600160a01b0319928316179092556018805492841692909116919091179055905062000377816001620006fb565b60165460405162241fbd60e51b81526001600160a01b03909116600482018190526001602483015290630483f7a090604401600060405180830381600087803b158015620003c457600080fd5b505af1158015620003d9573d6000803e3d6000fd5b505060165460405162241fbd60e51b8152306004820152600160248201526001600160a01b039091169250630483f7a09150604401600060405180830381600087803b1580156200042957600080fd5b505af11580156200043e573d6000803e3d6000fd5b50506016546001600160a01b03169150630483f7a09050620004686000546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260016024820152604401600060405180830381600087803b158015620004b157600080fd5b505af1158015620004c6573d6000803e3d6000fd5b505060165460405162241fbd60e51b81526001600160a01b038681166004830152600160248301529091169250630483f7a09150604401600060405180830381600087803b1580156200051857600080fd5b505af11580156200052d573d6000803e3d6000fd5b505050506200054d620005456200086860201b60201c565b600162000877565b6200055a30600162000877565b60165462000573906001600160a01b0316600162000877565b620005926200058a6000546001600160a01b031690565b6001620009aa565b6200059f306001620009aa565b601654620005b8906001600160a01b03166001620009aa565b620005d7620005cf6000546001600160a01b031690565b600162000a20565b620005e430600162000a20565b601654620005fd906001600160a01b0316600162000a20565b62000627620006146000546001600160a01b031690565b6b033b2e3c9fd0803ce800000062000a96565b505050505062000e28565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60005b81518160ff161015620006f757600160146000848460ff1681518110620006b057620006b062000d81565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580620006ee8162000dad565b91505062000685565b5050565b6001600160a01b03821660009081526013602052604090205460ff1615158115151415620007965760405162461bcd60e51b815260206004820152603e60248201527f50554d503a206175746f6d61746564206d61726b6574206d616b65722070616960448201527f7220697320616c72656164792073657420746f20746861742076616c7565000060648201526084015b60405180910390fd5b6001600160a01b0382166000908152601360205260409020805460ff191682158015919091179091556200082c5760165460405162241fbd60e51b81526001600160a01b0384811660048301526001602483015290911690630483f7a090604401600060405180830381600087803b1580156200081257600080fd5b505af115801562000827573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6000546001600160a01b031690565b6000546001600160a01b03163314620008c25760405162461bcd60e51b8152602060048201819052602482015260008051602062007f6983398151915260448201526064016200078d565b6001600160a01b03821660009081526012602052604090205460ff16151581151514156200094b5760405162461bcd60e51b815260206004820152602f60248201527f50554d503a206163636f756e7420697320616c72656164792073657420746f2060448201526e72657175657374656420737461746560881b60648201526084016200078d565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6000546001600160a01b03163314620009f55760405162461bcd60e51b8152602060048201819052602482015260008051602062007f6983398151915260448201526064016200078d565b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b6000546001600160a01b0316331462000a6b5760405162461bcd60e51b8152602060048201819052602482015260008051602062007f6983398151915260448201526064016200078d565b6001600160a01b03919091166000908152601d60205260409020805460ff1916911515919091179055565b6001600160a01b03821662000aee5760405162461bcd60e51b815260206004820152601e60248201527f50554d503a206d696e7420746f20746865207a65726f2061646472657373000060448201526064016200078d565b80600d600082825462000b02919062000dd0565b90915550506001600160a01b0382166000908152601060205260408120805483929062000b3190849062000dd0565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b82805462000b899062000deb565b90600052602060002090601f01602090048101928262000bad576000855562000bf8565b82601f1062000bc857805160ff191683800117855562000bf8565b8280016001018555821562000bf8579182015b8281111562000bf857825182559160200191906001019062000bdb565b5062000c0692915062000c18565b5090565b6125ba80620059af83390190565b5b8082111562000c06576000815560010162000c19565b80516001600160a01b038116811462000c4757600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b60008060006060848603121562000c7857600080fd5b62000c838462000c2f565b9250602062000c9481860162000c2f565b60408601519093506001600160401b038082111562000cb257600080fd5b818701915087601f83011262000cc757600080fd5b81518181111562000cdc5762000cdc62000c4c565b8060051b604051601f19603f8301168101818110858211171562000d045762000d0462000c4c565b60405291825284820192508381018501918a83111562000d2357600080fd5b938501935b8285101562000d4c5762000d3c8562000c2f565b8452938501939285019262000d28565b8096505050505050509250925092565b60006020828403121562000d6f57600080fd5b62000d7a8262000c2f565b9392505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060ff821660ff81141562000dc75762000dc762000d97565b60010192915050565b6000821982111562000de65762000de662000d97565b500190565b600181811c9082168062000e0057607f821691505b6020821081141562000e2257634e487b7160e01b600052602260045260246000fd5b50919050565b614b778062000e386000396000f3fe6080604052600436106103b15760003560e01c80637b510fe8116101e7578063c02466681161010d578063e01af92c116100a0578063f1b234ad1161006f578063f1b234ad14610c0b578063f2fde38b14610c2b578063f4571c4914610c4b578063f69e204614610c6b57600080fd5b8063e01af92c14610b9f578063e2f4560514610bbf578063e4956ce214610bd5578063ebbf1ace14610bf557600080fd5b8063c9567bf9116100dc578063c9567bf914610af7578063d2fcc00114610b0c578063d4c989d314610b2c578063dd62ed3e14610b4c57600080fd5b8063c024666814610a77578063c3033aeb14610a97578063c6af580b14610ab7578063c705c56914610ad757600080fd5b8063a457c2d711610185578063aa4e8c4a11610154578063aa4e8c4a146109f1578063aafd847a14610a11578063b62496f514610a31578063b80b6e8914610a6157600080fd5b8063a457c2d714610971578063a680e0bc14610991578063a8b9d240146109b1578063a9059cbb146109d157600080fd5b80638e126944116101c15780638e126944146108fc57806395d89b411461091c5780639a7a23d6146109315780639e252f001461095157600080fd5b80637b510fe814610852578063870bd30b146108b15780638da5cb5b146108d157600080fd5b806349bd5a5e116102d7578063658c27a91161026a5780636ddd1713116102395780636ddd1713146107c557806370a08231146107e4578063715018a614610827578063744d15911461083c57600080fd5b8063658c27a9146106f957806365b8dbc01461073f57806368c51e351461075f5780636dd3d39f1461077f57600080fd5b806357777d31116102a657806357777d311461068d5780635937ea6c146106a35780635b65b9ab146106b95780635e843ad2146106d957600080fd5b806349bd5a5e146105e55780634e71d92d146106125780634fbee19314610627578063537df3b61461066d57600080fd5b806327ce01471161034f57806333f3d6281161031e57806333f3d6281461056f57806337eb15281461058f57806339509351146105a55780634838d165146105c557600080fd5b806327ce0147146104e55780632c1f5216146105055780632f4504ae14610532578063313ce5671461055357600080fd5b80630dd871571161038b5780630dd871571461043a5780631694505e1461045e57806318160ddd146104b057806323b872dd146104c557600080fd5b80630483f7a0146103bd57806306fdde03146103df578063095ea7b31461040a57600080fd5b366103b857005b600080fd5b3480156103c957600080fd5b506103dd6103d836600461452d565b610c80565b005b3480156103eb57600080fd5b506103f4610d98565b6040516104019190614566565b60405180910390f35b34801561041657600080fd5b5061042a6104253660046145d9565b610e2a565b6040519015158152602001610401565b34801561044657600080fd5b50610450600b5481565b604051908152602001610401565b34801561046a57600080fd5b5060175461048b9073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610401565b3480156104bc57600080fd5b50600d54610450565b3480156104d157600080fd5b5061042a6104e0366004614605565b610e40565b3480156104f157600080fd5b50610450610500366004614646565b610f2d565b34801561051157600080fd5b5060165461048b9073ffffffffffffffffffffffffffffffffffffffff1681565b34801561053e57600080fd5b50600c5461042a906301000000900460ff1681565b34801561055f57600080fd5b5060405160128152602001610401565b34801561057b57600080fd5b506103dd61058a3660046145d9565b610fc9565b34801561059b57600080fd5b5061045060095481565b3480156105b157600080fd5b5061042a6105c03660046145d9565b6110e6565b3480156105d157600080fd5b506103dd6105e0366004614646565b61112a565b3480156105f157600080fd5b5060185461048b9073ffffffffffffffffffffffffffffffffffffffff1681565b34801561061e57600080fd5b506103dd61128a565b34801561063357600080fd5b5061042a610642366004614646565b73ffffffffffffffffffffffffffffffffffffffff1660009081526012602052604090205460ff1690565b34801561067957600080fd5b506103dd610688366004614646565b61133c565b34801561069957600080fd5b5061045060195481565b3480156106af57600080fd5b5061045060065481565b3480156106c557600080fd5b506103dd6106d436600461466a565b611498565b3480156106e557600080fd5b506103dd6106f4366004614696565b611545565b34801561070557600080fd5b5061042a610714366004614646565b73ffffffffffffffffffffffffffffffffffffffff166000908152601c602052604090205460ff1690565b34801561074b57600080fd5b506103dd61075a366004614646565b61162f565b34801561076b57600080fd5b506103dd61077a3660046146d8565b6119ed565b34801561078b57600080fd5b5061042a61079a366004614646565b73ffffffffffffffffffffffffffffffffffffffff166000908152601d602052604090205460ff1690565b3480156107d157600080fd5b50600c5461042a90610100900460ff1681565b3480156107f057600080fd5b506104506107ff366004614646565b73ffffffffffffffffffffffffffffffffffffffff1660009081526010602052604090205490565b34801561083357600080fd5b506103dd611b12565b34801561084857600080fd5b50610450601a5481565b34801561085e57600080fd5b5061087261086d366004614646565b611b9f565b6040805173ffffffffffffffffffffffffffffffffffffffff90961686526020860194909452928401919091526060830152608082015260a001610401565b3480156108bd57600080fd5b50600c5461042a9062010000900460ff1681565b3480156108dd57600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff1661048b565b34801561090857600080fd5b506103dd6109173660046146f1565b611c4f565b34801561092857600080fd5b506103f4611d2f565b34801561093d57600080fd5b506103dd61094c36600461452d565b611d3e565b34801561095d57600080fd5b506103dd61096c3660046146d8565b611e78565b34801561097d57600080fd5b5061042a61098c3660046145d9565b611f26565b34801561099d57600080fd5b506104506109ac366004614646565b611fff565b3480156109bd57600080fd5b506104506109cc366004614646565b612058565b3480156109dd57600080fd5b5061042a6109ec3660046145d9565b6120b1565b3480156109fd57600080fd5b506103dd610a0c3660046146d8565b6120be565b348015610a1d57600080fd5b50610450610a2c366004614646565b6121bd565b348015610a3d57600080fd5b5061042a610a4c366004614646565b60136020526000908152604090205460ff1681565b348015610a6d57600080fd5b5061045060085481565b348015610a8357600080fd5b506103dd610a9236600461452d565b612216565b348015610aa357600080fd5b506103dd610ab2366004614745565b6123dd565b348015610ac357600080fd5b506103dd610ad2366004614828565b6124f7565b348015610ae357600080fd5b5061042a610af2366004614646565b6125ea565b348015610b0357600080fd5b506103dd61267f565b348015610b1857600080fd5b506103dd610b2736600461452d565b61272d565b348015610b3857600080fd5b506103dd610b4736600461452d565b612804565b348015610b5857600080fd5b50610450610b67366004614845565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260116020908152604080832093909416825291909152205490565b348015610bab57600080fd5b506103dd610bba366004614828565b6128db565b348015610bcb57600080fd5b50610450600a5481565b348015610be157600080fd5b506103dd610bf0366004614828565b6129c2565b348015610c0157600080fd5b5061045060075481565b348015610c1757600080fd5b506103dd610c26366004614845565b612aab565b348015610c3757600080fd5b506103dd610c46366004614646565b612ba0565b348015610c5757600080fd5b506103dd610c66366004614745565b612ccd565b348015610c7757600080fd5b506103dd612de7565b60005473ffffffffffffffffffffffffffffffffffffffff163314610d06576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6016546040517f0483f7a000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8481166004830152831515602483015290911690630483f7a0906044015b600060405180830381600087803b158015610d7c57600080fd5b505af1158015610d90573d6000803e3d6000fd5b505050505050565b606060048054610da790614873565b80601f0160208091040260200160405190810160405280929190818152602001828054610dd390614873565b8015610e205780601f10610df557610100808354040283529160200191610e20565b820191906000526020600020905b815481529060010190602001808311610e0357829003601f168201915b5050505050905090565b6000610e37338484612e7e565b50600192915050565b6000610e4d848484613032565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260116020908152604080832033845290915290205482811015610f0e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f50554d503a207472616e7366657220616d6f756e74206578636565647320616c60448201527f6c6f77616e6365000000000000000000000000000000000000000000000000006064820152608401610cfd565b610f228533610f1d86856148f6565b612e7e565b506001949350505050565b6016546040517f27ce014700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff838116600483015260009216906327ce0147906024015b602060405180830381865afa158015610f9f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fc3919061490d565b92915050565b60005473ffffffffffffffffffffffffffffffffffffffff16331461104a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cfd565b6040517fa9059cbb0000000000000000000000000000000000000000000000000000000081523360048201526024810182905273ffffffffffffffffffffffffffffffffffffffff83169063a9059cbb906044016020604051808303816000875af11580156110bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110e19190614926565b505050565b33600081815260116020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610e37918590610f1d908690614943565b60005473ffffffffffffffffffffffffffffffffffffffff1633146111ab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cfd565b73ffffffffffffffffffffffffffffffffffffffff811660009081526015602052604090205460ff161561123b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f7573657220616c726561647920626c61636b6c697374656400000000000000006044820152606401610cfd565b73ffffffffffffffffffffffffffffffffffffffff16600090815260156020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b60165473ffffffffffffffffffffffffffffffffffffffff1663807ab4f7335b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b16815273ffffffffffffffffffffffffffffffffffffffff90911660048201526024016020604051808303816000875af1158015611315573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113399190614926565b50565b60005473ffffffffffffffffffffffffffffffffffffffff1633146113bd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cfd565b73ffffffffffffffffffffffffffffffffffffffff811660009081526015602052604090205460ff1661144c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f7573657220616c72656164792077686974656c697374656400000000000000006044820152606401610cfd565b73ffffffffffffffffffffffffffffffffffffffff16600090815260156020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b60005473ffffffffffffffffffffffffffffffffffffffff163314611519576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cfd565b600683905560078290556008819055806115338385614943565b61153d9190614943565b600955505050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146115c6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cfd565b600c8054600a939093559015157fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0093151561010002939093167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000090921691909117919091179055565b60005473ffffffffffffffffffffffffffffffffffffffff1633146116b0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cfd565b60175473ffffffffffffffffffffffffffffffffffffffff8281169116141561175b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f50554d503a2074686520726f7574657220697320616c7265616479207365742060448201527f746f20746865206e6577206164647265737300000000000000000000000000006064820152608401610cfd565b60175460405173ffffffffffffffffffffffffffffffffffffffff918216918316907f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e90600090a3601780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8316908117909155604080517fc45a015500000000000000000000000000000000000000000000000000000000815290516000929163c45a01559160048083019260209291908290030181865afa15801561183d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611861919061495b565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156118ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061190e919061495b565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff9283166004820152911660248201526044016020604051808303816000875af1158015611980573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119a4919061495b565b601880547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff929092169190911790555050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611a6e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cfd565b60af8110158015611a8157506127108111155b611b0d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f425053206d757374206265206265747765656e2031373520616e64203130303060448201527f30000000000000000000000000000000000000000000000000000000000000006064820152608401610cfd565b601a55565b60005473ffffffffffffffffffffffffffffffffffffffff163314611b93576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cfd565b611b9d6000613a54565b565b6016546040517f7b510fe800000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff83811660048301526000928392839283928392911690637b510fe89060240160a060405180830381865afa158015611c19573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c3d9190614978565b939a9299509097509550909350915050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611cd0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cfd565b6016546040517f8e1269440000000000000000000000000000000000000000000000000000000081526004810184905273ffffffffffffffffffffffffffffffffffffffff838116602483015290911690638e12694490604401610d62565b606060058054610da790614873565b60005473ffffffffffffffffffffffffffffffffffffffff163314611dbf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cfd565b60185473ffffffffffffffffffffffffffffffffffffffff83811691161415611e6a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f50554d503a2044455820706169722063616e206e6f742062652072656d6f766560448201527f64000000000000000000000000000000000000000000000000000000000000006064820152608401610cfd565b611e748282613ac9565b5050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611ef9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cfd565b604051339082156108fc029083906000818181858888f19350505050158015611e74573d6000803e3d6000fd5b33600090815260116020908152604080832073ffffffffffffffffffffffffffffffffffffffff8616845290915281205482811015611fe6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f50554d503a2064656372656173656420616c6c6f77616e63652062656c6f772060448201527f7a65726f000000000000000000000000000000000000000000000000000000006064820152608401610cfd565b611ff53385610f1d86856148f6565b5060019392505050565b6016546040517fa680e0bc00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8381166004830152600092169063a680e0bc90602401610f82565b6016546040517fa8b9d24000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8381166004830152600092169063a8b9d24090602401610f82565b6000610e37338484613032565b60005473ffffffffffffffffffffffffffffffffffffffff16331461213f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cfd565b604b811015801561215257506127108111155b6121b8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f425053206d757374206265206265747765656e20373520616e642031303030306044820152606401610cfd565b601955565b6016546040517faafd847a00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8381166004830152600092169063aafd847a90602401610f82565b60005473ffffffffffffffffffffffffffffffffffffffff163314612297576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cfd565b73ffffffffffffffffffffffffffffffffffffffff821660009081526012602052604090205460ff1615158115151415612353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f50554d503a206163636f756e7420697320616c72656164792073657420746f2060448201527f72657175657374656420737461746500000000000000000000000000000000006064820152608401610cfd565b73ffffffffffffffffffffffffffffffffffffffff821660008181526012602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b60005473ffffffffffffffffffffffffffffffffffffffff16331461245e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cfd565b60005b81518160ff161015611e7457600160156000848460ff1681518110612488576124886149c1565b60209081029190910181015173ffffffffffffffffffffffffffffffffffffffff16825281019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055806124ef816149f0565b915050612461565b60005473ffffffffffffffffffffffffffffffffffffffff163314612578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cfd565b600c805482151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff9091161790556040517f5bb2376cf656637e70e36c01d3da25685bf3b353f18681b8a5e48c7b2effe133906125df90831515815260200190565b60405180910390a150565b6016546040517fc705c56900000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8381166004830152600092169063c705c56990602401602060405180830381865afa15801561265b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fc39190614926565b60005473ffffffffffffffffffffffffffffffffffffffff163314612700576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cfd565b601b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b60005473ffffffffffffffffffffffffffffffffffffffff1633146127ae576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cfd565b73ffffffffffffffffffffffffffffffffffffffff919091166000908152601d6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60005473ffffffffffffffffffffffffffffffffffffffff163314612885576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cfd565b73ffffffffffffffffffffffffffffffffffffffff919091166000908152601c6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60005473ffffffffffffffffffffffffffffffffffffffff16331461295c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cfd565b600c8054821515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff9091161790556040517fb9bbb15e341600c8d067a0cadeba219905d5ba6d422b193c9c32265d26fc51c8906125df90831515815260200190565b60005473ffffffffffffffffffffffffffffffffffffffff163314612a43576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cfd565b600c80548215156301000000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffff9091161790556040517f341322866a3a2c26c27efa4c270c5ba86f6963257118897dd8196f224c002d43906125df90831515815260200190565b60005473ffffffffffffffffffffffffffffffffffffffff163314612b2c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cfd565b600e80547fffffffffffffffffffffff0000000000000000000000000000000000000000ff1661010073ffffffffffffffffffffffffffffffffffffffff94851602179055600f80547fffffffffffffffffffffffff00000000000000000000000000000000000000001691909216179055565b60005473ffffffffffffffffffffffffffffffffffffffff163314612c21576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cfd565b73ffffffffffffffffffffffffffffffffffffffff8116612cc4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610cfd565b61133981613a54565b60005473ffffffffffffffffffffffffffffffffffffffff163314612d4e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cfd565b60005b81518160ff161015611e7457600060156000848460ff1681518110612d7857612d786149c1565b60209081029190910181015173ffffffffffffffffffffffffffffffffffffffff16825281019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001691151591909117905580612ddf816149f0565b915050612d51565b600c546301000000900460ff16612e5a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f50554d503a20636f6d706f756e64696e67206973206e6f7420656e61626c65646044820152606401610cfd565b60165473ffffffffffffffffffffffffffffffffffffffff16636de1a5a9336112aa565b73ffffffffffffffffffffffffffffffffffffffff8316612f21576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f50554d503a20617070726f76652066726f6d20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610cfd565b73ffffffffffffffffffffffffffffffffffffffff8216612fc4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f50554d503a20617070726f766520746f20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610cfd565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526011602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b601b5460ff168061305d575060005473ffffffffffffffffffffffffffffffffffffffff8481169116145b80613082575060005473ffffffffffffffffffffffffffffffffffffffff8381169116145b806130b2575073ffffffffffffffffffffffffffffffffffffffff831660009081526014602052604090205460ff165b806130e2575073ffffffffffffffffffffffffffffffffffffffff821660009081526014602052604090205460ff165b613148576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600860248201527f4e6f74204f70656e0000000000000000000000000000000000000000000000006044820152606401610cfd565b73ffffffffffffffffffffffffffffffffffffffff831660009081526015602052604090205460ff16156131d8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f50554d503a2053656e64657220697320626c61636b6c697374656400000000006044820152606401610cfd565b73ffffffffffffffffffffffffffffffffffffffff821660009081526015602052604090205460ff1615613268576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f50554d503a20526563697069656e7420697320626c61636b6c697374656400006044820152606401610cfd565b73ffffffffffffffffffffffffffffffffffffffff831661330a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f50554d503a207472616e736665722066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610cfd565b73ffffffffffffffffffffffffffffffffffffffff82166133ad576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f50554d503a207472616e7366657220746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610cfd565b60006127106019546133be600d5490565b6133c89190614a10565b6133d29190614a4d565b90506000612710601a546133e5600d5490565b6133ef9190614a10565b6133f99190614a4d565b9050818311158061342f575073ffffffffffffffffffffffffffffffffffffffff85166000908152601c602052604090205460ff165b613495576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f5458204c696d69742045786365656465640000000000000000000000000000006044820152606401610cfd565b60005473ffffffffffffffffffffffffffffffffffffffff8681169116148015906134d6575073ffffffffffffffffffffffffffffffffffffffff84163014155b80156134fd575060025473ffffffffffffffffffffffffffffffffffffffff858116911614155b8015613524575060185473ffffffffffffffffffffffffffffffffffffffff858116911614155b1561357d5773ffffffffffffffffffffffffffffffffffffffff8416600090815260106020908152604080832054601d9092529091205460ff168061357257508161356f8583614943565b11155b61357b57600080fd5b505b73ffffffffffffffffffffffffffffffffffffffff851660009081526010602052604090205483811015613633576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f50554d503a207472616e7366657220616d6f756e74206578636565647320626160448201527f6c616e63650000000000000000000000000000000000000000000000000000006064820152608401610cfd565b30600090815260106020526040902054600a54600c54479183101590610100900460ff1680156136605750805b801561366f5750600e5460ff16155b80156136a1575073ffffffffffffffffffffffffffffffffffffffff891660009081526013602052604090205460ff16155b80156136c8575060175473ffffffffffffffffffffffffffffffffffffffff8a8116911614155b80156136ef575060005473ffffffffffffffffffffffffffffffffffffffff8a8116911614155b8015613716575060005473ffffffffffffffffffffffffffffffffffffffff898116911614155b1561378d57600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055600c5460ff1661375657600a5492505b6137608383613cb3565b42600b55600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690555b60185460009073ffffffffffffffffffffffffffffffffffffffff8b8116911614806137d3575060185473ffffffffffffffffffffffffffffffffffffffff8a81169116145b156137dc575060015b73ffffffffffffffffffffffffffffffffffffffff8a1660009081526012602052604090205460ff1680613835575073ffffffffffffffffffffffffffffffffffffffff891660009081526012602052604090205460ff165b1561383e575060005b600e5460ff16806138585750600c5462010000900460ff16155b15613861575060005b801561389f5760006127106009548a61387a9190614a10565b6138849190614a4d565b9050613890818a6148f6565b985061389d8b3083613fcd565b505b6138aa8a8a8a613fcd565b60165473ffffffffffffffffffffffffffffffffffffffff1663e30443bc8b6138f58173ffffffffffffffffffffffffffffffffffffffff1660009081526010602052604090205490565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff90921660048301526024820152604401600060405180830381600087803b15801561396057600080fd5b505af1158015613974573d6000803e3d6000fd5b505060165473ffffffffffffffffffffffffffffffffffffffff16915063e30443bc90508a6139c58173ffffffffffffffffffffffffffffffffffffffff1660009081526010602052604090205490565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff90921660048301526024820152604401600060405180830381600087803b158015613a3057600080fd5b505af1158015613a44573d6000803e3d6000fd5b5050505050505050505050505050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b73ffffffffffffffffffffffffffffffffffffffff821660009081526013602052604090205460ff1615158115151415613b85576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603e60248201527f50554d503a206175746f6d61746564206d61726b6574206d616b65722070616960448201527f7220697320616c72656164792073657420746f20746861742076616c756500006064820152608401610cfd565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260136020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168215801591909117909155613c6a576016546040517f0483f7a000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff84811660048301526001602483015290911690630483f7a090604401600060405180830381600087803b158015613c5157600080fd5b505af1158015613c65573d6000803e3d6000fd5b505050505b6040518115159073ffffffffffffffffffffffffffffffffffffffff8416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b60008211613cbf575050565b600e54600090610100900473ffffffffffffffffffffffffffffffffffffffff1615613d0257600954600654613cf59085614a10565b613cff9190614a4d565b90505b600080601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015613d72573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613d96919061490d565b1115613db957600954600854613dac9086614a10565b613db69190614a4d565b90505b600081613dc684876148f6565b613dd091906148f6565b90506000613ddf600283614a4d565b90506000613ded82846148f6565b9050600082613dfc8688614943565b613e069190614943565b905047613e1282614289565b600088613e1f83476148f6565b613e299190614943565b9050600083613e388a84614a10565b613e429190614a4d565b9050600084613e518a85614a10565b613e5b9190614a4d565b9050600081613e6a84866148f6565b613e7491906148f6565b90508215613ec957600e5460405161010090910473ffffffffffffffffffffffffffffffffffffffff16906108fc8515029085906000818181858888f19350505050158015613ec7573d6000803e3d6000fd5b505b613ed38782614406565b60408051898152602081018390529081018890527fb63dc6f50047533abe2d6adf180d38d524c8d98e55ad199aac8d6b9801bbe24a9060600160405180910390a18115613fbe5760165460405160009173ffffffffffffffffffffffffffffffffffffffff169084908381818185875af1925050503d8060008114613f74576040519150601f19603f3d011682016040523d82523d6000602084013e613f79565b606091505b505090508015613a4457604080518c8152602081018590527f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc3910160405180910390a1505b50505050505050505050505050565b73ffffffffffffffffffffffffffffffffffffffff831661406f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f50554d503a207472616e736665722066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610cfd565b73ffffffffffffffffffffffffffffffffffffffff8216614112576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f50554d503a207472616e7366657220746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610cfd565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260106020526040902054818110156141c8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f50554d503a207472616e7366657220616d6f756e74206578636565647320626160448201527f6c616e63650000000000000000000000000000000000000000000000000000006064820152608401610cfd565b6141d282826148f6565b73ffffffffffffffffffffffffffffffffffffffff8086166000908152601060205260408082209390935590851681529081208054849290614215908490614943565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161427b91815260200190565b60405180910390a350505050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106142be576142be6149c1565b73ffffffffffffffffffffffffffffffffffffffff928316602091820292909201810191909152601754604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa15801561433d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614361919061495b565b81600181518110614374576143746149c1565b73ffffffffffffffffffffffffffffffffffffffff92831660209182029290920101526017546143a79130911684612e7e565b6017546040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9091169063791ac94790610d62908590600090869030904290600401614a88565b60175461442b90309073ffffffffffffffffffffffffffffffffffffffff1684612e7e565b601754600f546040517ff305d71900000000000000000000000000000000000000000000000000000000815230600482015260248101859052600060448201819052606482015273ffffffffffffffffffffffffffffffffffffffff91821660848201524260a482015291169063f305d71990839060c40160606040518083038185885af11580156144c1573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906144e69190614b13565b5050505050565b73ffffffffffffffffffffffffffffffffffffffff8116811461133957600080fd5b803561451a816144ed565b919050565b801515811461133957600080fd5b6000806040838503121561454057600080fd5b823561454b816144ed565b9150602083013561455b8161451f565b809150509250929050565b600060208083528351808285015260005b8181101561459357858101830151858201604001528201614577565b818111156145a5576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b600080604083850312156145ec57600080fd5b82356145f7816144ed565b946020939093013593505050565b60008060006060848603121561461a57600080fd5b8335614625816144ed565b92506020840135614635816144ed565b929592945050506040919091013590565b60006020828403121561465857600080fd5b8135614663816144ed565b9392505050565b60008060006060848603121561467f57600080fd5b505081359360208301359350604090920135919050565b6000806000606084860312156146ab57600080fd5b83356146b68161451f565b92506020840135915060408401356146cd8161451f565b809150509250925092565b6000602082840312156146ea57600080fd5b5035919050565b6000806040838503121561470457600080fd5b82359150602083013561455b816144ed565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000602080838503121561475857600080fd5b823567ffffffffffffffff8082111561477057600080fd5b818501915085601f83011261478457600080fd5b81358181111561479657614796614716565b8060051b6040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0603f830116810181811085821117156147d9576147d9614716565b6040529182528482019250838101850191888311156147f757600080fd5b938501935b8285101561481c5761480d8561450f565b845293850193928501926147fc565b98975050505050505050565b60006020828403121561483a57600080fd5b81356146638161451f565b6000806040838503121561485857600080fd5b8235614863816144ed565b9150602083013561455b816144ed565b600181811c9082168061488757607f821691505b602082108114156148c1577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600082821015614908576149086148c7565b500390565b60006020828403121561491f57600080fd5b5051919050565b60006020828403121561493857600080fd5b81516146638161451f565b60008219821115614956576149566148c7565b500190565b60006020828403121561496d57600080fd5b8151614663816144ed565b600080600080600060a0868803121561499057600080fd5b855161499b816144ed565b602087015160408801516060890151608090990151929a91995097965090945092505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600060ff821660ff811415614a0757614a076148c7565b60010192915050565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a4857614a486148c7565b500290565b600082614a83577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015614ae557845173ffffffffffffffffffffffffffffffffffffffff1683529383019391830191600101614ab3565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b600080600060608486031215614b2857600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220d5034922cd598d00f1a23fcd79e809d7c2d23b33632ef8a4a3af626f79142af064736f6c634300080a003360e0604052601460a08190527f50554d505f4469766964656e64547261636b657200000000000000000000000060c090815262000040916002919062000153565b506040805180820190915260148082527f50554d505f4469766964656e64547261636b65720000000000000000000000006020909201918252620000879160039162000153565b503480156200009557600080fd5b50604051620025ba380380620025ba833981016040819052620000b89162000216565b620000c33362000103565b69021e19e0c9bab2400000608052600a80546001600160a01b039384166001600160a01b031991821617909155600180549290931691161790556200028b565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b82805462000161906200024e565b90600052602060002090601f016020900481019282620001855760008555620001d0565b82601f10620001a057805160ff1916838001178555620001d0565b82800160010185558215620001d0579182015b82811115620001d0578251825591602001919060010190620001b3565b50620001de929150620001e2565b5090565b5b80821115620001de5760008155600101620001e3565b80516001600160a01b03811681146200021157600080fd5b919050565b600080604083850312156200022a57600080fd5b6200023583620001f9565b91506200024560208401620001f9565b90509250929050565b600181811c908216806200026357607f821691505b602082108114156200028557634e487b7160e01b600052602260045260246000fd5b50919050565b608051612305620002b5600039600081816105ad0152818161094f01526110da01526123056000f3fe6080604052600436106101d15760003560e01c806385a6b3ae116100f7578063a8b9d24011610095578063c705c56911610064578063c705c569146105cf578063dd62ed3e14610615578063e30443bc14610630578063f2fde38b1461065057600080fd5b8063a8b9d24014610538578063a9059cbb14610238578063aafd847a14610558578063c49af5f01461059b57600080fd5b806395d89b41116100d157806395d89b411461049d5780639d76ea58146104b25780639e1e0661146104df578063a680e0bc146104f557600080fd5b806385a6b3ae1461041b5780638da5cb5b146104315780638e1269441461047d57600080fd5b80633009a6091161016f57806370a082311161013e57806370a0823114610344578063715018a6146103875780637b510fe81461039c578063807ab4f7146103fb57600080fd5b80633009a609146102c2578063313ce567146102d85780634e7b827f146102f45780636de1a5a91461032457600080fd5b8063095ea7b3116101ab578063095ea7b31461023857806318160ddd1461026857806323b872dd1461028757806327ce0147146102a257600080fd5b806303c83302146101e55780630483f7a0146101ed57806306fdde031461020d57600080fd5b366101e0576101de610670565b005b600080fd5b6101de610670565b3480156101f957600080fd5b506101de610208366004611d09565b61070c565b34801561021957600080fd5b506102226109e6565b60405161022f9190611d47565b60405180910390f35b34801561024457600080fd5b50610258610253366004611dba565b610a78565b604051901515815260200161022f565b34801561027457600080fd5b506005545b60405190815260200161022f565b34801561029357600080fd5b50610258610253366004611de6565b3480156102ae57600080fd5b506102796102bd366004611e27565b610b03565b3480156102ce57600080fd5b5061027960045481565b3480156102e457600080fd5b506040516012815260200161022f565b34801561030057600080fd5b5061025861030f366004611e27565b600b6020526000908152604090205460ff1681565b34801561033057600080fd5b5061025861033f366004611e27565b610b8e565b34801561035057600080fd5b5061027961035f366004611e27565b73ffffffffffffffffffffffffffffffffffffffff1660009081526006602052604090205490565b34801561039357600080fd5b506101de610c9d565b3480156103a857600080fd5b506103bc6103b7366004611e27565b610d28565b6040805173ffffffffffffffffffffffffffffffffffffffff90961686526020860194909452928401919091526060830152608082015260a00161022f565b34801561040757600080fd5b50610258610416366004611e27565b610df7565b34801561042757600080fd5b5061027960085481565b34801561043d57600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff165b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161022f565b34801561048957600080fd5b506101de610498366004611e4b565b610f00565b3480156104a957600080fd5b50610222610fd7565b3480156104be57600080fd5b50600a546104589073ffffffffffffffffffffffffffffffffffffffff1681565b3480156104eb57600080fd5b5061027960095481565b34801561050157600080fd5b50610279610510366004611e27565b73ffffffffffffffffffffffffffffffffffffffff166000908152600e602052604090205490565b34801561054457600080fd5b50610279610553366004611e27565b610fe6565b34801561056457600080fd5b50610279610573366004611e27565b73ffffffffffffffffffffffffffffffffffffffff166000908152600d602052604090205490565b3480156105a757600080fd5b506102797f000000000000000000000000000000000000000000000000000000000000000081565b3480156105db57600080fd5b506102586105ea366004611e27565b73ffffffffffffffffffffffffffffffffffffffff166000908152600b602052604090205460ff1690565b34801561062157600080fd5b50610279610253366004611e70565b34801561063c57600080fd5b506101de61064b366004611dba565b611025565b34801561065c57600080fd5b506101de61066b366004611e27565b611118565b60006005541161067f57600080fd5b341561070a576005546106a370010000000000000000000000000000000034611ecd565b6106ad9190611f0a565b6007546106ba9190611f45565b60075560405134815233907fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d784541165119060200160405180910390a234600860008282546107049190611f45565b90915550505b565b60005473ffffffffffffffffffffffffffffffffffffffff163314610792576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff82166000908152600b602052604090205460ff161515811515141561084e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603c60248201527f50554d505f4469766964656e64547261636b65723a206163636f756e7420616c60448201527f72656164792073657420746f20726571756573746564207374617465000000006064820152608401610789565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600b6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001682158015919091179091556108b6576108b1826000611248565b610990565b600a546040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff848116600483015260009216906370a0823190602401602060405180830381865afa158015610927573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061094b9190611f5d565b90507f000000000000000000000000000000000000000000000000000000000000000081106109835761097e8382611248565b61098e565b61098e836000611248565b505b8173ffffffffffffffffffffffffffffffffffffffff167fa3c7c11b2e12c4144b09a7813f3393ba646392788638998c97be8da908cf04be826040516109da911515815260200190565b60405180910390a25050565b6060600280546109f590611f76565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2190611f76565b8015610a6e5780601f10610a4357610100808354040283529160200191610a6e565b820191906000526020600020905b815481529060010190602001808311610a5157829003601f168201915b5050505050905090565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f50554d505f4469766964656e64547261636b65723a206d6574686f64206e6f7460448201527f20696d706c656d656e74656400000000000000000000000000000000000000006064820152600090608401610789565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600660205260408120546007548291610b3791611ecd565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600c6020526040902054909150700100000000000000000000000000000000610b7c8284611fca565b610b869190611f0a565b949350505050565b6000805473ffffffffffffffffffffffffffffffffffffffff163314610c10576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610789565b600080610c1c846112b3565b90925090508115610c935773ffffffffffffffffffffffffffffffffffffffff84166000818152600e602090815260409182902042905581518581529081018490527f0e311a2c6dbfb0153ec3a8a5bdca09070b3e5f60768fdc10a20453f38d186873910160405180910390a25060019392505050565b5060009392505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610d1e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610789565b61070a60006116e5565b6000806000806000610d716040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff1681526020016000815260200160008152602001600081525090565b73ffffffffffffffffffffffffffffffffffffffff87168152610d9387610fe6565b6020820152610da187610b03565b604082810191825273ffffffffffffffffffffffffffffffffffffffff989098166000908152600e6020908152989020546060830181905282519890920151905160095498999198909750919550909350915050565b6000805473ffffffffffffffffffffffffffffffffffffffff163314610e79576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610789565b6000610e848361175a565b90508015610ef75773ffffffffffffffffffffffffffffffffffffffff83166000818152600e602052604090819020429055517f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d490610ee69084815260200190565b60405180910390a250600192915050565b50600092915050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610f81576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610789565b4773ffffffffffffffffffffffffffffffffffffffff82166108fc84610fa75782610fa9565b845b6040518115909202916000818181858888f19350505050158015610fd1573d6000803e3d6000fd5b50505050565b6060600380546109f590611f76565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600d602052604081205461101583610b03565b61101f919061203e565b92915050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146110a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610789565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600b602052604090205460ff16156110d8575050565b7f0000000000000000000000000000000000000000000000000000000000000000811061110d576111098282611248565b5050565b611109826000611248565b60005473ffffffffffffffffffffffffffffffffffffffff163314611199576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610789565b73ffffffffffffffffffffffffffffffffffffffff811661123c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610789565b611245816116e5565b50565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600660205260409020548082111561128e576000611282828461203e565b9050610fd184826118dd565b808210156112ae5760006112a2838361203e565b9050610fd18482611a8a565b505050565b60008060006112c184610fe6565b905080156116d95773ffffffffffffffffffffffffffffffffffffffff84166000908152600d6020526040812080548392906112fe908490611f45565b9250508190555080600960008282546113179190611f45565b909155505060405181815273ffffffffffffffffffffffffffffffffffffffff8516907fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d9060200160405180910390a260015460408051600280825260608201835273ffffffffffffffffffffffffffffffffffffffff909316926000926020830190803683370190505090508173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156113ef573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114139190612055565b8160008151811061142657611426612072565b73ffffffffffffffffffffffffffffffffffffffff9283166020918202929092010152600a5482519116908290600190811061146457611464612072565b73ffffffffffffffffffffffffffffffffffffffff9283166020918202929092010152600a546040517f70a082310000000000000000000000000000000000000000000000000000000081528883166004820152600092839283929116906370a0823190602401602060405180830381865afa1580156114e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061150c9190611f5d565b90508473ffffffffffffffffffffffffffffffffffffffff1663b6f9de95876000878d426040518663ffffffff1660e01b815260040161154f94939291906120a1565b6000604051808303818588803b15801561156857600080fd5b505af19350505050801561157a575060015b6115bc57611586612125565b806308c379a014156115b0575061159b6121b3565b806115a657506115b2565b6000935050611661565b505b3d6000803e3d6000fd5b600a546040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8b8116600483015260019550839216906370a0823190602401602060405180830381865afa158015611630573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116549190611f5d565b61165e919061203e565b91505b826116ca5773ffffffffffffffffffffffffffffffffffffffff89166000908152600d60205260408120805488929061169b90849061203e565b9250508190555085600960008282546116b4919061203e565b9091555060009a8b9a5098505050505050505050565b50939793965092945050505050565b50600093849350915050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008061176683610fe6565b90508015610ef75773ffffffffffffffffffffffffffffffffffffffff83166000908152600d6020526040812080548392906117a3908490611f45565b9250508190555080600960008282546117bc9190611f45565b909155505060405181815273ffffffffffffffffffffffffffffffffffffffff8416907fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d9060200160405180910390a260008373ffffffffffffffffffffffffffffffffffffffff1682610bb890604051600060405180830381858888f193505050503d806000811461186b576040519150601f19603f3d011682016040523d82523d6000602084013e611870565b606091505b50509050806118d65773ffffffffffffffffffffffffffffffffffffffff84166000908152600d6020526040812080548492906118ae90849061203e565b9250508190555081600960008282546118c7919061203e565b90915550600095945050505050565b5092915050565b73ffffffffffffffffffffffffffffffffffffffff8216611980576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f50554d505f4469766964656e64547261636b65723a206d696e7420746f20746860448201527f65207a65726f20616464726573730000000000000000000000000000000000006064820152608401610789565b80600560008282546119929190611f45565b909155505073ffffffffffffffffffffffffffffffffffffffff8216600090815260066020526040812080548392906119cc908490611f45565b909155505060405181815273ffffffffffffffffffffffffffffffffffffffff8316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a380600754611a2d9190611ecd565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600c6020526040902054611a5d919061225b565b73ffffffffffffffffffffffffffffffffffffffff9092166000908152600c602052604090209190915550565b73ffffffffffffffffffffffffffffffffffffffff8216611b2d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603060248201527f50554d505f4469766964656e64547261636b65723a206275726e2066726f6d2060448201527f746865207a65726f2061646472657373000000000000000000000000000000006064820152608401610789565b73ffffffffffffffffffffffffffffffffffffffff821660009081526006602052604090205481811015611be3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f50554d505f4469766964656e64547261636b65723a206275726e20616d6f756e60448201527f7420657863656564732062616c616e63650000000000000000000000000000006064820152608401610789565b611bed828261203e565b73ffffffffffffffffffffffffffffffffffffffff841660009081526006602052604081209190915560058054849290611c2890849061203e565b909155505060405182815260009073ffffffffffffffffffffffffffffffffffffffff8516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a381600754611c899190611ecd565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600c6020526040902054611cb99190611fca565b73ffffffffffffffffffffffffffffffffffffffff9093166000908152600c60205260409020929092555050565b73ffffffffffffffffffffffffffffffffffffffff8116811461124557600080fd5b60008060408385031215611d1c57600080fd5b8235611d2781611ce7565b915060208301358015158114611d3c57600080fd5b809150509250929050565b600060208083528351808285015260005b81811015611d7457858101830151858201604001528201611d58565b81811115611d86576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60008060408385031215611dcd57600080fd5b8235611dd881611ce7565b946020939093013593505050565b600080600060608486031215611dfb57600080fd5b8335611e0681611ce7565b92506020840135611e1681611ce7565b929592945050506040919091013590565b600060208284031215611e3957600080fd5b8135611e4481611ce7565b9392505050565b60008060408385031215611e5e57600080fd5b823591506020830135611d3c81611ce7565b60008060408385031215611e8357600080fd5b8235611e8e81611ce7565b91506020830135611d3c81611ce7565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611f0557611f05611e9e565b500290565b600082611f40577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b60008219821115611f5857611f58611e9e565b500190565b600060208284031215611f6f57600080fd5b5051919050565b600181811c90821680611f8a57607f821691505b60208210811415611fc4577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b6000808212827f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0384138115161561200457612004611e9e565b827f800000000000000000000000000000000000000000000000000000000000000003841281161561203857612038611e9e565b50500190565b60008282101561205057612050611e9e565b500390565b60006020828403121561206757600080fd5b8151611e4481611ce7565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600060808201868352602060808185015281875180845260a086019150828901935060005b818110156120f857845173ffffffffffffffffffffffffffffffffffffffff16835293830193918301916001016120c6565b505073ffffffffffffffffffffffffffffffffffffffff9690961660408501525050506060015292915050565b600060033d111561213e5760046000803e5060005160e01c5b90565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f830116810181811067ffffffffffffffff821117156121ac577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040525050565b600060443d10156121c15790565b6040517ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc803d016004833e81513d67ffffffffffffffff816024840111818411171561220f57505050505090565b82850191508151818111156122275750505050505090565b843d87010160208285010111156122415750505050505090565b61225060208286010187612141565b509095945050505050565b6000808312837f80000000000000000000000000000000000000000000000000000000000000000183128115161561229557612295611e9e565b837f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0183138116156122c9576122c9611e9e565b5050039056fea264697066735822122066c6afbddcb66ef438b30f1206ee48bbdb0ea51cfeaace40dadfd6b9b295002064736f6c634300080a00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000c828c8ebd049d3d18c2d09dcfd14d75d514b535b000000000000000000000000c828c8ebd049d3d18c2d09dcfd14d75d514b535b00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000d3c577cb9ab3d64ee15fe27fd99208ff2f8f722f

Deployed Bytecode

0x6080604052600436106103b15760003560e01c80637b510fe8116101e7578063c02466681161010d578063e01af92c116100a0578063f1b234ad1161006f578063f1b234ad14610c0b578063f2fde38b14610c2b578063f4571c4914610c4b578063f69e204614610c6b57600080fd5b8063e01af92c14610b9f578063e2f4560514610bbf578063e4956ce214610bd5578063ebbf1ace14610bf557600080fd5b8063c9567bf9116100dc578063c9567bf914610af7578063d2fcc00114610b0c578063d4c989d314610b2c578063dd62ed3e14610b4c57600080fd5b8063c024666814610a77578063c3033aeb14610a97578063c6af580b14610ab7578063c705c56914610ad757600080fd5b8063a457c2d711610185578063aa4e8c4a11610154578063aa4e8c4a146109f1578063aafd847a14610a11578063b62496f514610a31578063b80b6e8914610a6157600080fd5b8063a457c2d714610971578063a680e0bc14610991578063a8b9d240146109b1578063a9059cbb146109d157600080fd5b80638e126944116101c15780638e126944146108fc57806395d89b411461091c5780639a7a23d6146109315780639e252f001461095157600080fd5b80637b510fe814610852578063870bd30b146108b15780638da5cb5b146108d157600080fd5b806349bd5a5e116102d7578063658c27a91161026a5780636ddd1713116102395780636ddd1713146107c557806370a08231146107e4578063715018a614610827578063744d15911461083c57600080fd5b8063658c27a9146106f957806365b8dbc01461073f57806368c51e351461075f5780636dd3d39f1461077f57600080fd5b806357777d31116102a657806357777d311461068d5780635937ea6c146106a35780635b65b9ab146106b95780635e843ad2146106d957600080fd5b806349bd5a5e146105e55780634e71d92d146106125780634fbee19314610627578063537df3b61461066d57600080fd5b806327ce01471161034f57806333f3d6281161031e57806333f3d6281461056f57806337eb15281461058f57806339509351146105a55780634838d165146105c557600080fd5b806327ce0147146104e55780632c1f5216146105055780632f4504ae14610532578063313ce5671461055357600080fd5b80630dd871571161038b5780630dd871571461043a5780631694505e1461045e57806318160ddd146104b057806323b872dd146104c557600080fd5b80630483f7a0146103bd57806306fdde03146103df578063095ea7b31461040a57600080fd5b366103b857005b600080fd5b3480156103c957600080fd5b506103dd6103d836600461452d565b610c80565b005b3480156103eb57600080fd5b506103f4610d98565b6040516104019190614566565b60405180910390f35b34801561041657600080fd5b5061042a6104253660046145d9565b610e2a565b6040519015158152602001610401565b34801561044657600080fd5b50610450600b5481565b604051908152602001610401565b34801561046a57600080fd5b5060175461048b9073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610401565b3480156104bc57600080fd5b50600d54610450565b3480156104d157600080fd5b5061042a6104e0366004614605565b610e40565b3480156104f157600080fd5b50610450610500366004614646565b610f2d565b34801561051157600080fd5b5060165461048b9073ffffffffffffffffffffffffffffffffffffffff1681565b34801561053e57600080fd5b50600c5461042a906301000000900460ff1681565b34801561055f57600080fd5b5060405160128152602001610401565b34801561057b57600080fd5b506103dd61058a3660046145d9565b610fc9565b34801561059b57600080fd5b5061045060095481565b3480156105b157600080fd5b5061042a6105c03660046145d9565b6110e6565b3480156105d157600080fd5b506103dd6105e0366004614646565b61112a565b3480156105f157600080fd5b5060185461048b9073ffffffffffffffffffffffffffffffffffffffff1681565b34801561061e57600080fd5b506103dd61128a565b34801561063357600080fd5b5061042a610642366004614646565b73ffffffffffffffffffffffffffffffffffffffff1660009081526012602052604090205460ff1690565b34801561067957600080fd5b506103dd610688366004614646565b61133c565b34801561069957600080fd5b5061045060195481565b3480156106af57600080fd5b5061045060065481565b3480156106c557600080fd5b506103dd6106d436600461466a565b611498565b3480156106e557600080fd5b506103dd6106f4366004614696565b611545565b34801561070557600080fd5b5061042a610714366004614646565b73ffffffffffffffffffffffffffffffffffffffff166000908152601c602052604090205460ff1690565b34801561074b57600080fd5b506103dd61075a366004614646565b61162f565b34801561076b57600080fd5b506103dd61077a3660046146d8565b6119ed565b34801561078b57600080fd5b5061042a61079a366004614646565b73ffffffffffffffffffffffffffffffffffffffff166000908152601d602052604090205460ff1690565b3480156107d157600080fd5b50600c5461042a90610100900460ff1681565b3480156107f057600080fd5b506104506107ff366004614646565b73ffffffffffffffffffffffffffffffffffffffff1660009081526010602052604090205490565b34801561083357600080fd5b506103dd611b12565b34801561084857600080fd5b50610450601a5481565b34801561085e57600080fd5b5061087261086d366004614646565b611b9f565b6040805173ffffffffffffffffffffffffffffffffffffffff90961686526020860194909452928401919091526060830152608082015260a001610401565b3480156108bd57600080fd5b50600c5461042a9062010000900460ff1681565b3480156108dd57600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff1661048b565b34801561090857600080fd5b506103dd6109173660046146f1565b611c4f565b34801561092857600080fd5b506103f4611d2f565b34801561093d57600080fd5b506103dd61094c36600461452d565b611d3e565b34801561095d57600080fd5b506103dd61096c3660046146d8565b611e78565b34801561097d57600080fd5b5061042a61098c3660046145d9565b611f26565b34801561099d57600080fd5b506104506109ac366004614646565b611fff565b3480156109bd57600080fd5b506104506109cc366004614646565b612058565b3480156109dd57600080fd5b5061042a6109ec3660046145d9565b6120b1565b3480156109fd57600080fd5b506103dd610a0c3660046146d8565b6120be565b348015610a1d57600080fd5b50610450610a2c366004614646565b6121bd565b348015610a3d57600080fd5b5061042a610a4c366004614646565b60136020526000908152604090205460ff1681565b348015610a6d57600080fd5b5061045060085481565b348015610a8357600080fd5b506103dd610a9236600461452d565b612216565b348015610aa357600080fd5b506103dd610ab2366004614745565b6123dd565b348015610ac357600080fd5b506103dd610ad2366004614828565b6124f7565b348015610ae357600080fd5b5061042a610af2366004614646565b6125ea565b348015610b0357600080fd5b506103dd61267f565b348015610b1857600080fd5b506103dd610b2736600461452d565b61272d565b348015610b3857600080fd5b506103dd610b4736600461452d565b612804565b348015610b5857600080fd5b50610450610b67366004614845565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260116020908152604080832093909416825291909152205490565b348015610bab57600080fd5b506103dd610bba366004614828565b6128db565b348015610bcb57600080fd5b50610450600a5481565b348015610be157600080fd5b506103dd610bf0366004614828565b6129c2565b348015610c0157600080fd5b5061045060075481565b348015610c1757600080fd5b506103dd610c26366004614845565b612aab565b348015610c3757600080fd5b506103dd610c46366004614646565b612ba0565b348015610c5757600080fd5b506103dd610c66366004614745565b612ccd565b348015610c7757600080fd5b506103dd612de7565b60005473ffffffffffffffffffffffffffffffffffffffff163314610d06576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6016546040517f0483f7a000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8481166004830152831515602483015290911690630483f7a0906044015b600060405180830381600087803b158015610d7c57600080fd5b505af1158015610d90573d6000803e3d6000fd5b505050505050565b606060048054610da790614873565b80601f0160208091040260200160405190810160405280929190818152602001828054610dd390614873565b8015610e205780601f10610df557610100808354040283529160200191610e20565b820191906000526020600020905b815481529060010190602001808311610e0357829003601f168201915b5050505050905090565b6000610e37338484612e7e565b50600192915050565b6000610e4d848484613032565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260116020908152604080832033845290915290205482811015610f0e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f50554d503a207472616e7366657220616d6f756e74206578636565647320616c60448201527f6c6f77616e6365000000000000000000000000000000000000000000000000006064820152608401610cfd565b610f228533610f1d86856148f6565b612e7e565b506001949350505050565b6016546040517f27ce014700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff838116600483015260009216906327ce0147906024015b602060405180830381865afa158015610f9f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fc3919061490d565b92915050565b60005473ffffffffffffffffffffffffffffffffffffffff16331461104a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cfd565b6040517fa9059cbb0000000000000000000000000000000000000000000000000000000081523360048201526024810182905273ffffffffffffffffffffffffffffffffffffffff83169063a9059cbb906044016020604051808303816000875af11580156110bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110e19190614926565b505050565b33600081815260116020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610e37918590610f1d908690614943565b60005473ffffffffffffffffffffffffffffffffffffffff1633146111ab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cfd565b73ffffffffffffffffffffffffffffffffffffffff811660009081526015602052604090205460ff161561123b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f7573657220616c726561647920626c61636b6c697374656400000000000000006044820152606401610cfd565b73ffffffffffffffffffffffffffffffffffffffff16600090815260156020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b60165473ffffffffffffffffffffffffffffffffffffffff1663807ab4f7335b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b16815273ffffffffffffffffffffffffffffffffffffffff90911660048201526024016020604051808303816000875af1158015611315573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113399190614926565b50565b60005473ffffffffffffffffffffffffffffffffffffffff1633146113bd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cfd565b73ffffffffffffffffffffffffffffffffffffffff811660009081526015602052604090205460ff1661144c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f7573657220616c72656164792077686974656c697374656400000000000000006044820152606401610cfd565b73ffffffffffffffffffffffffffffffffffffffff16600090815260156020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b60005473ffffffffffffffffffffffffffffffffffffffff163314611519576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cfd565b600683905560078290556008819055806115338385614943565b61153d9190614943565b600955505050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146115c6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cfd565b600c8054600a939093559015157fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0093151561010002939093167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000090921691909117919091179055565b60005473ffffffffffffffffffffffffffffffffffffffff1633146116b0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cfd565b60175473ffffffffffffffffffffffffffffffffffffffff8281169116141561175b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f50554d503a2074686520726f7574657220697320616c7265616479207365742060448201527f746f20746865206e6577206164647265737300000000000000000000000000006064820152608401610cfd565b60175460405173ffffffffffffffffffffffffffffffffffffffff918216918316907f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e90600090a3601780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8316908117909155604080517fc45a015500000000000000000000000000000000000000000000000000000000815290516000929163c45a01559160048083019260209291908290030181865afa15801561183d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611861919061495b565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156118ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061190e919061495b565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff9283166004820152911660248201526044016020604051808303816000875af1158015611980573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119a4919061495b565b601880547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff929092169190911790555050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611a6e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cfd565b60af8110158015611a8157506127108111155b611b0d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f425053206d757374206265206265747765656e2031373520616e64203130303060448201527f30000000000000000000000000000000000000000000000000000000000000006064820152608401610cfd565b601a55565b60005473ffffffffffffffffffffffffffffffffffffffff163314611b93576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cfd565b611b9d6000613a54565b565b6016546040517f7b510fe800000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff83811660048301526000928392839283928392911690637b510fe89060240160a060405180830381865afa158015611c19573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c3d9190614978565b939a9299509097509550909350915050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611cd0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cfd565b6016546040517f8e1269440000000000000000000000000000000000000000000000000000000081526004810184905273ffffffffffffffffffffffffffffffffffffffff838116602483015290911690638e12694490604401610d62565b606060058054610da790614873565b60005473ffffffffffffffffffffffffffffffffffffffff163314611dbf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cfd565b60185473ffffffffffffffffffffffffffffffffffffffff83811691161415611e6a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f50554d503a2044455820706169722063616e206e6f742062652072656d6f766560448201527f64000000000000000000000000000000000000000000000000000000000000006064820152608401610cfd565b611e748282613ac9565b5050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611ef9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cfd565b604051339082156108fc029083906000818181858888f19350505050158015611e74573d6000803e3d6000fd5b33600090815260116020908152604080832073ffffffffffffffffffffffffffffffffffffffff8616845290915281205482811015611fe6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f50554d503a2064656372656173656420616c6c6f77616e63652062656c6f772060448201527f7a65726f000000000000000000000000000000000000000000000000000000006064820152608401610cfd565b611ff53385610f1d86856148f6565b5060019392505050565b6016546040517fa680e0bc00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8381166004830152600092169063a680e0bc90602401610f82565b6016546040517fa8b9d24000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8381166004830152600092169063a8b9d24090602401610f82565b6000610e37338484613032565b60005473ffffffffffffffffffffffffffffffffffffffff16331461213f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cfd565b604b811015801561215257506127108111155b6121b8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f425053206d757374206265206265747765656e20373520616e642031303030306044820152606401610cfd565b601955565b6016546040517faafd847a00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8381166004830152600092169063aafd847a90602401610f82565b60005473ffffffffffffffffffffffffffffffffffffffff163314612297576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cfd565b73ffffffffffffffffffffffffffffffffffffffff821660009081526012602052604090205460ff1615158115151415612353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f50554d503a206163636f756e7420697320616c72656164792073657420746f2060448201527f72657175657374656420737461746500000000000000000000000000000000006064820152608401610cfd565b73ffffffffffffffffffffffffffffffffffffffff821660008181526012602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b60005473ffffffffffffffffffffffffffffffffffffffff16331461245e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cfd565b60005b81518160ff161015611e7457600160156000848460ff1681518110612488576124886149c1565b60209081029190910181015173ffffffffffffffffffffffffffffffffffffffff16825281019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055806124ef816149f0565b915050612461565b60005473ffffffffffffffffffffffffffffffffffffffff163314612578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cfd565b600c805482151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff9091161790556040517f5bb2376cf656637e70e36c01d3da25685bf3b353f18681b8a5e48c7b2effe133906125df90831515815260200190565b60405180910390a150565b6016546040517fc705c56900000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8381166004830152600092169063c705c56990602401602060405180830381865afa15801561265b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fc39190614926565b60005473ffffffffffffffffffffffffffffffffffffffff163314612700576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cfd565b601b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b60005473ffffffffffffffffffffffffffffffffffffffff1633146127ae576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cfd565b73ffffffffffffffffffffffffffffffffffffffff919091166000908152601d6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60005473ffffffffffffffffffffffffffffffffffffffff163314612885576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cfd565b73ffffffffffffffffffffffffffffffffffffffff919091166000908152601c6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60005473ffffffffffffffffffffffffffffffffffffffff16331461295c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cfd565b600c8054821515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff9091161790556040517fb9bbb15e341600c8d067a0cadeba219905d5ba6d422b193c9c32265d26fc51c8906125df90831515815260200190565b60005473ffffffffffffffffffffffffffffffffffffffff163314612a43576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cfd565b600c80548215156301000000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffff9091161790556040517f341322866a3a2c26c27efa4c270c5ba86f6963257118897dd8196f224c002d43906125df90831515815260200190565b60005473ffffffffffffffffffffffffffffffffffffffff163314612b2c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cfd565b600e80547fffffffffffffffffffffff0000000000000000000000000000000000000000ff1661010073ffffffffffffffffffffffffffffffffffffffff94851602179055600f80547fffffffffffffffffffffffff00000000000000000000000000000000000000001691909216179055565b60005473ffffffffffffffffffffffffffffffffffffffff163314612c21576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cfd565b73ffffffffffffffffffffffffffffffffffffffff8116612cc4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610cfd565b61133981613a54565b60005473ffffffffffffffffffffffffffffffffffffffff163314612d4e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cfd565b60005b81518160ff161015611e7457600060156000848460ff1681518110612d7857612d786149c1565b60209081029190910181015173ffffffffffffffffffffffffffffffffffffffff16825281019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001691151591909117905580612ddf816149f0565b915050612d51565b600c546301000000900460ff16612e5a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f50554d503a20636f6d706f756e64696e67206973206e6f7420656e61626c65646044820152606401610cfd565b60165473ffffffffffffffffffffffffffffffffffffffff16636de1a5a9336112aa565b73ffffffffffffffffffffffffffffffffffffffff8316612f21576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f50554d503a20617070726f76652066726f6d20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610cfd565b73ffffffffffffffffffffffffffffffffffffffff8216612fc4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f50554d503a20617070726f766520746f20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610cfd565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526011602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b601b5460ff168061305d575060005473ffffffffffffffffffffffffffffffffffffffff8481169116145b80613082575060005473ffffffffffffffffffffffffffffffffffffffff8381169116145b806130b2575073ffffffffffffffffffffffffffffffffffffffff831660009081526014602052604090205460ff165b806130e2575073ffffffffffffffffffffffffffffffffffffffff821660009081526014602052604090205460ff165b613148576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600860248201527f4e6f74204f70656e0000000000000000000000000000000000000000000000006044820152606401610cfd565b73ffffffffffffffffffffffffffffffffffffffff831660009081526015602052604090205460ff16156131d8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f50554d503a2053656e64657220697320626c61636b6c697374656400000000006044820152606401610cfd565b73ffffffffffffffffffffffffffffffffffffffff821660009081526015602052604090205460ff1615613268576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f50554d503a20526563697069656e7420697320626c61636b6c697374656400006044820152606401610cfd565b73ffffffffffffffffffffffffffffffffffffffff831661330a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f50554d503a207472616e736665722066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610cfd565b73ffffffffffffffffffffffffffffffffffffffff82166133ad576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f50554d503a207472616e7366657220746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610cfd565b60006127106019546133be600d5490565b6133c89190614a10565b6133d29190614a4d565b90506000612710601a546133e5600d5490565b6133ef9190614a10565b6133f99190614a4d565b9050818311158061342f575073ffffffffffffffffffffffffffffffffffffffff85166000908152601c602052604090205460ff165b613495576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f5458204c696d69742045786365656465640000000000000000000000000000006044820152606401610cfd565b60005473ffffffffffffffffffffffffffffffffffffffff8681169116148015906134d6575073ffffffffffffffffffffffffffffffffffffffff84163014155b80156134fd575060025473ffffffffffffffffffffffffffffffffffffffff858116911614155b8015613524575060185473ffffffffffffffffffffffffffffffffffffffff858116911614155b1561357d5773ffffffffffffffffffffffffffffffffffffffff8416600090815260106020908152604080832054601d9092529091205460ff168061357257508161356f8583614943565b11155b61357b57600080fd5b505b73ffffffffffffffffffffffffffffffffffffffff851660009081526010602052604090205483811015613633576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f50554d503a207472616e7366657220616d6f756e74206578636565647320626160448201527f6c616e63650000000000000000000000000000000000000000000000000000006064820152608401610cfd565b30600090815260106020526040902054600a54600c54479183101590610100900460ff1680156136605750805b801561366f5750600e5460ff16155b80156136a1575073ffffffffffffffffffffffffffffffffffffffff891660009081526013602052604090205460ff16155b80156136c8575060175473ffffffffffffffffffffffffffffffffffffffff8a8116911614155b80156136ef575060005473ffffffffffffffffffffffffffffffffffffffff8a8116911614155b8015613716575060005473ffffffffffffffffffffffffffffffffffffffff898116911614155b1561378d57600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055600c5460ff1661375657600a5492505b6137608383613cb3565b42600b55600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690555b60185460009073ffffffffffffffffffffffffffffffffffffffff8b8116911614806137d3575060185473ffffffffffffffffffffffffffffffffffffffff8a81169116145b156137dc575060015b73ffffffffffffffffffffffffffffffffffffffff8a1660009081526012602052604090205460ff1680613835575073ffffffffffffffffffffffffffffffffffffffff891660009081526012602052604090205460ff165b1561383e575060005b600e5460ff16806138585750600c5462010000900460ff16155b15613861575060005b801561389f5760006127106009548a61387a9190614a10565b6138849190614a4d565b9050613890818a6148f6565b985061389d8b3083613fcd565b505b6138aa8a8a8a613fcd565b60165473ffffffffffffffffffffffffffffffffffffffff1663e30443bc8b6138f58173ffffffffffffffffffffffffffffffffffffffff1660009081526010602052604090205490565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff90921660048301526024820152604401600060405180830381600087803b15801561396057600080fd5b505af1158015613974573d6000803e3d6000fd5b505060165473ffffffffffffffffffffffffffffffffffffffff16915063e30443bc90508a6139c58173ffffffffffffffffffffffffffffffffffffffff1660009081526010602052604090205490565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff90921660048301526024820152604401600060405180830381600087803b158015613a3057600080fd5b505af1158015613a44573d6000803e3d6000fd5b5050505050505050505050505050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b73ffffffffffffffffffffffffffffffffffffffff821660009081526013602052604090205460ff1615158115151415613b85576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603e60248201527f50554d503a206175746f6d61746564206d61726b6574206d616b65722070616960448201527f7220697320616c72656164792073657420746f20746861742076616c756500006064820152608401610cfd565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260136020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168215801591909117909155613c6a576016546040517f0483f7a000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff84811660048301526001602483015290911690630483f7a090604401600060405180830381600087803b158015613c5157600080fd5b505af1158015613c65573d6000803e3d6000fd5b505050505b6040518115159073ffffffffffffffffffffffffffffffffffffffff8416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b60008211613cbf575050565b600e54600090610100900473ffffffffffffffffffffffffffffffffffffffff1615613d0257600954600654613cf59085614a10565b613cff9190614a4d565b90505b600080601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015613d72573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613d96919061490d565b1115613db957600954600854613dac9086614a10565b613db69190614a4d565b90505b600081613dc684876148f6565b613dd091906148f6565b90506000613ddf600283614a4d565b90506000613ded82846148f6565b9050600082613dfc8688614943565b613e069190614943565b905047613e1282614289565b600088613e1f83476148f6565b613e299190614943565b9050600083613e388a84614a10565b613e429190614a4d565b9050600084613e518a85614a10565b613e5b9190614a4d565b9050600081613e6a84866148f6565b613e7491906148f6565b90508215613ec957600e5460405161010090910473ffffffffffffffffffffffffffffffffffffffff16906108fc8515029085906000818181858888f19350505050158015613ec7573d6000803e3d6000fd5b505b613ed38782614406565b60408051898152602081018390529081018890527fb63dc6f50047533abe2d6adf180d38d524c8d98e55ad199aac8d6b9801bbe24a9060600160405180910390a18115613fbe5760165460405160009173ffffffffffffffffffffffffffffffffffffffff169084908381818185875af1925050503d8060008114613f74576040519150601f19603f3d011682016040523d82523d6000602084013e613f79565b606091505b505090508015613a4457604080518c8152602081018590527f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc3910160405180910390a1505b50505050505050505050505050565b73ffffffffffffffffffffffffffffffffffffffff831661406f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f50554d503a207472616e736665722066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610cfd565b73ffffffffffffffffffffffffffffffffffffffff8216614112576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f50554d503a207472616e7366657220746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610cfd565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260106020526040902054818110156141c8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f50554d503a207472616e7366657220616d6f756e74206578636565647320626160448201527f6c616e63650000000000000000000000000000000000000000000000000000006064820152608401610cfd565b6141d282826148f6565b73ffffffffffffffffffffffffffffffffffffffff8086166000908152601060205260408082209390935590851681529081208054849290614215908490614943565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161427b91815260200190565b60405180910390a350505050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106142be576142be6149c1565b73ffffffffffffffffffffffffffffffffffffffff928316602091820292909201810191909152601754604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa15801561433d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614361919061495b565b81600181518110614374576143746149c1565b73ffffffffffffffffffffffffffffffffffffffff92831660209182029290920101526017546143a79130911684612e7e565b6017546040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9091169063791ac94790610d62908590600090869030904290600401614a88565b60175461442b90309073ffffffffffffffffffffffffffffffffffffffff1684612e7e565b601754600f546040517ff305d71900000000000000000000000000000000000000000000000000000000815230600482015260248101859052600060448201819052606482015273ffffffffffffffffffffffffffffffffffffffff91821660848201524260a482015291169063f305d71990839060c40160606040518083038185885af11580156144c1573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906144e69190614b13565b5050505050565b73ffffffffffffffffffffffffffffffffffffffff8116811461133957600080fd5b803561451a816144ed565b919050565b801515811461133957600080fd5b6000806040838503121561454057600080fd5b823561454b816144ed565b9150602083013561455b8161451f565b809150509250929050565b600060208083528351808285015260005b8181101561459357858101830151858201604001528201614577565b818111156145a5576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b600080604083850312156145ec57600080fd5b82356145f7816144ed565b946020939093013593505050565b60008060006060848603121561461a57600080fd5b8335614625816144ed565b92506020840135614635816144ed565b929592945050506040919091013590565b60006020828403121561465857600080fd5b8135614663816144ed565b9392505050565b60008060006060848603121561467f57600080fd5b505081359360208301359350604090920135919050565b6000806000606084860312156146ab57600080fd5b83356146b68161451f565b92506020840135915060408401356146cd8161451f565b809150509250925092565b6000602082840312156146ea57600080fd5b5035919050565b6000806040838503121561470457600080fd5b82359150602083013561455b816144ed565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000602080838503121561475857600080fd5b823567ffffffffffffffff8082111561477057600080fd5b818501915085601f83011261478457600080fd5b81358181111561479657614796614716565b8060051b6040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0603f830116810181811085821117156147d9576147d9614716565b6040529182528482019250838101850191888311156147f757600080fd5b938501935b8285101561481c5761480d8561450f565b845293850193928501926147fc565b98975050505050505050565b60006020828403121561483a57600080fd5b81356146638161451f565b6000806040838503121561485857600080fd5b8235614863816144ed565b9150602083013561455b816144ed565b600181811c9082168061488757607f821691505b602082108114156148c1577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600082821015614908576149086148c7565b500390565b60006020828403121561491f57600080fd5b5051919050565b60006020828403121561493857600080fd5b81516146638161451f565b60008219821115614956576149566148c7565b500190565b60006020828403121561496d57600080fd5b8151614663816144ed565b600080600080600060a0868803121561499057600080fd5b855161499b816144ed565b602087015160408801516060890151608090990151929a91995097965090945092505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600060ff821660ff811415614a0757614a076148c7565b60010192915050565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a4857614a486148c7565b500290565b600082614a83577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015614ae557845173ffffffffffffffffffffffffffffffffffffffff1683529383019391830191600101614ab3565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b600080600060608486031215614b2857600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220d5034922cd598d00f1a23fcd79e809d7c2d23b33632ef8a4a3af626f79142af064736f6c634300080a0033

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

000000000000000000000000C828C8EbD049D3d18c2D09dCfD14d75D514b535b000000000000000000000000C828C8EbD049D3d18c2D09dCfD14d75D514b535b00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000d3c577cb9AB3d64ee15Fe27FD99208fF2F8F722F

-----Decoded View---------------
Arg [0] : _marketingWallet (address): 0xC828C8EbD049D3d18c2D09dCfD14d75D514b535b
Arg [1] : _liquidityWallet (address): 0xC828C8EbD049D3d18c2D09dCfD14d75D514b535b
Arg [2] : whitelistAddress (address[]): 0xd3c577cb9AB3d64ee15Fe27FD99208fF2F8F722F

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 000000000000000000000000C828C8EbD049D3d18c2D09dCfD14d75D514b535b
Arg [1] : 000000000000000000000000C828C8EbD049D3d18c2D09dCfD14d75D514b535b
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [4] : 000000000000000000000000d3c577cb9AB3d64ee15Fe27FD99208fF2F8F722F


Deployed Bytecode Sourcemap

41206:21345:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56241:176;;;;;;;;;;-1:-1:-1;56241:176:0;;;;;:::i;:::-;;:::i;:::-;;45028:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45808:210;;;;;;;;;;-1:-1:-1;45808:210:0;;;;;:::i;:::-;;:::i;:::-;;;1968:14:1;;1961:22;1943:41;;1931:2;1916:18;45808:210:0;1803:187:1;41777:27:0;;;;;;;;;;;;;;;;;;;2141:25:1;;;2129:2;2114:18;41777:27:0;1995:177:1;43120:41:0;;;;;;;;;;-1:-1:-1;43120:41:0;;;;;;;;;;;2380:42:1;2368:55;;;2350:74;;2338:2;2323:18;43120:41:0;2177:253:1;45298:108:0;;;;;;;;;;-1:-1:-1;45386:12:0;;45298:108;;46972:488;;;;;;;;;;-1:-1:-1;46972:488:0;;;;;:::i;:::-;;:::i;59113:184::-;;;;;;;;;;-1:-1:-1;59113:184:0;;;;;:::i;:::-;;:::i;43075:38::-;;;;;;;;;;-1:-1:-1;43075:38:0;;;;;;;;41917:37;;;;;;;;;;-1:-1:-1;41917:37:0;;;;;;;;;;;45214:76;;;;;;;;;;-1:-1:-1;45214:76:0;;45280:2;3553:36:1;;3541:2;3526:18;45214:76:0;3411:184:1;61511:136:0;;;;;;;;;;-1:-1:-1;61511:136:0;;;;;:::i;:::-;;:::i;41675:33::-;;;;;;;;;;;;;;;;46026:280;;;;;;;;;;-1:-1:-1;46026:280:0;;;;;:::i;:::-;;:::i;61774:186::-;;;;;;;;;;-1:-1:-1;61774:186:0;;;;;:::i;:::-;;:::i;43170:28::-;;;;;;;;;;-1:-1:-1;43170:28:0;;;;;;;;58449:96;;;;;;;;;;;;;:::i;55928:126::-;;;;;;;;;;-1:-1:-1;55928:126:0;;;;;:::i;:::-;56018:28;;55994:4;56018:28;;;:19;:28;;;;;;;;;55928:126;61968:195;;;;;;;;;;-1:-1:-1;61968:195:0;;;;;:::i;:::-;;:::i;43207:29::-;;;;;;;;;;;;;;;;41548:35;;;;;;;;;;;;;;;;57102:334;;;;;;;;;;-1:-1:-1;57102:334:0;;;;;:::i;:::-;;:::i;60191:288::-;;;;;;;;;;-1:-1:-1;60191:288:0;;;;;:::i;:::-;;:::i;60804:128::-;;;;;;;;;;-1:-1:-1;60804:128:0;;;;;:::i;:::-;60895:29;;60871:4;60895:29;;;:20;:29;;;;;;;;;60804:128;57897:544;;;;;;;;;;-1:-1:-1;57897:544:0;;;;;:::i;:::-;;:::i;60940:214::-;;;;;;;;;;-1:-1:-1;60940:214:0;;;;;:::i;:::-;;:::i;61335:168::-;;;;;;;;;;-1:-1:-1;61335:168:0;;;;;:::i;:::-;61462:33;;61433:4;61462:33;;;:24;:33;;;;;;;;;61335:168;41844:30;;;;;;;;;;-1:-1:-1;41844:30:0;;;;;;;;;;;45414:177;;;;;;;;;;-1:-1:-1;45414:177:0;;;;;:::i;:::-;45565:18;;45533:7;45565:18;;;:9;:18;;;;;;;45414:177;2826:103;;;;;;;;;;;;;:::i;43243:33::-;;;;;;;;;;;;;;;;59305:280;;;;;;;;;;-1:-1:-1;59305: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;59305:280:0;4786:512:1;41881:29:0;;;;;;;;;;-1:-1:-1;41881:29:0;;;;;;;;;;;2175:87;;;;;;;;;;-1:-1:-1;2221:7:0;2248:6;;;2175:87;;56062:171;;;;;;;;;;-1:-1:-1;56062:171:0;;;;;:::i;:::-;;:::i;45119:87::-;;;;;;;;;;;;;:::i;56853:241::-;;;;;;;;;;-1:-1:-1;56853:241:0;;;;;:::i;:::-;;:::i;61655:111::-;;;;;;;;;;-1:-1:-1;61655:111:0;;;;;:::i;:::-;;:::i;46314:426::-;;;;;;;;;;-1:-1:-1;46314:426:0;;;;;:::i;:::-;;:::i;59593:140::-;;;;;;;;;;-1:-1:-1;59593:140:0;;;;;:::i;:::-;;:::i;58735:184::-;;;;;;;;;;-1:-1:-1;58735:184:0;;;;;:::i;:::-;;:::i;46748:216::-;;;;;;;;;;-1:-1:-1;46748:216:0;;;;;:::i;:::-;;:::i;60487:167::-;;;;;;;;;;-1:-1:-1;60487:167:0;;;;;:::i;:::-;;:::i;58927:178::-;;;;;;;;;;-1:-1:-1;58927:178:0;;;;;:::i;:::-;;:::i;42275:57::-;;;;;;;;;;-1:-1:-1;42275:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;41633:35;;;;;;;;;;;;;;;;55590:330;;;;;;;;;;-1:-1:-1;55590:330:0;;;;;:::i;:::-;;:::i;62171:183::-;;;;;;;;;;-1:-1:-1;62171:183:0;;;;;:::i;:::-;;:::i;59885:133::-;;;;;;;;;;-1:-1:-1;59885:133:0;;;;;:::i;:::-;;:::i;56425:183::-;;;;;;;;;;-1:-1:-1;56425:183:0;;;;;:::i;:::-;;:::i;47468:74::-;;;;;;;;;;;;;:::i;61162:165::-;;;;;;;;;;-1:-1:-1;61162:165:0;;;;;:::i;:::-;;:::i;60662:134::-;;;;;;;;;;-1:-1:-1;60662:134:0;;;;;:::i;:::-;;:::i;45599:201::-;;;;;;;;;;-1:-1:-1;45599:201:0;;;;;:::i;:::-;45765:18;;;;45733:7;45765:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;45599:201;59741:136;;;;;;;;;;-1:-1:-1;59741:136:0;;;;;:::i;:::-;;:::i;41717:53::-;;;;;;;;;;;;;;;;60026:157;;;;;;;;;;-1:-1:-1;60026:157:0;;;;;:::i;:::-;;:::i;41590:36::-;;;;;;;;;;;;;;;;56616:229;;;;;;;;;;-1:-1:-1;56616:229:0;;;;;:::i;:::-;;:::i;3084:201::-;;;;;;;;;;-1:-1:-1;3084:201:0;;;;;:::i;:::-;;:::i;62362:186::-;;;;;;;;;;-1:-1:-1;62362:186:0;;;;;:::i;:::-;;:::i;58553:174::-;;;;;;;;;;;;;:::i;56241:176::-;2221:7;2248:6;2395:23;2248:6;928:10;2395:23;2387:68;;;;;;;8247:2:1;2387:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;2387:68:0;;;;;;;;;56354:15:::1;::::0;:55:::1;::::0;;;;:15:::1;8592:55:1::0;;;56354::0::1;::::0;::::1;8574:74:1::0;8691:14;;8684:22;8664:18;;;8657:50;56354:15:0;;::::1;::::0;:36:::1;::::0;8547:18:1;;56354:55:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;56241:176:::0;;:::o;45028:83::-;45065:13;45098:5;45091:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45028:83;:::o;45808:210::-;45927:4;45949:39;928:10;45972:7;45981:6;45949:8;:39::i;:::-;-1:-1:-1;46006:4:0;45808:210;;;;:::o;46972:488::-;47112:4;47129:36;47139:6;47147:9;47158:6;47129:9;:36::i;:::-;47203:19;;;47176:24;47203:19;;;:11;:19;;;;;;;;928:10;47203:33;;;;;;;;47269:26;;;;47247:115;;;;;;;9362:2:1;47247:115:0;;;9344:21:1;9401:2;9381:18;;;9374:30;9440:34;9420:18;;;9413:62;9511:9;9491:18;;;9484:37;9538:19;;47247:115:0;9160:403:1;47247:115:0;47373:57;47382:6;928:10;47404:25;47423:6;47404:16;:25;:::i;:::-;47373:8;:57::i;:::-;-1:-1:-1;47448:4:0;;46972:488;-1:-1:-1;;;;46972:488:0:o;59113:184::-;59242:15;;:47;;;;;:15;2368:55:1;;;59242:47:0;;;2350:74:1;59210:7:0;;59242:15;;:38;;2323:18:1;;59242:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;59235:54;59113:184;-1:-1:-1;;59113:184:0:o;61511:136::-;2221:7;2248:6;2395:23;2248:6;928:10;2395:23;2387:68;;;;;;;8247:2:1;2387:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;2387:68:0;8045:356:1;2387:68:0;61595:44:::1;::::0;;;;61619:10:::1;61595:44;::::0;::::1;10250:74:1::0;10340:18;;;10333:34;;;61595:23:0::1;::::0;::::1;::::0;::::1;::::0;10223:18:1;;61595:44:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;61511:136:::0;;:::o;46026:280::-;928:10;46124:4;46218:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;46124:4;;46146:130;;46196:7;;46218:47;;46255:10;;46218:47;:::i;61774:186::-;2221:7;2248:6;2395:23;2248:6;928:10;2395:23;2387:68;;;;;;;8247:2:1;2387:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;2387:68:0;8045:356:1;2387:68:0;61845:20:::1;::::0;::::1;;::::0;;;:13:::1;:20;::::0;;;;;::::1;;61844:21;61836:58;;;::::0;::::1;::::0;;10963:2:1;61836:58:0::1;::::0;::::1;10945:21:1::0;11002:2;10982:18;;;10975:30;11041:26;11021:18;;;11014:54;11085:18;;61836:58:0::1;10761:348:1::0;61836:58:0::1;61905:20;;;::::0;;;:13:::1;:20;::::0;;;;:27;;;::::1;61928:4;61905:27;::::0;;61774:186::o;58449:96::-;58484:15;;;;:30;928:10;58523:12;58484:53;;;;;;;;;;2380:42:1;2368:55;;;58484:53:0;;;2350:74:1;2323:18;;58484:53:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;58449:96::o;61968:195::-;2221:7;2248:6;2395:23;2248:6;928:10;2395:23;2387:68;;;;;;;8247:2:1;2387:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;2387:68:0;8045:356:1;2387:68:0;62048:20:::1;::::0;::::1;;::::0;;;:13:::1;:20;::::0;;;;;::::1;;62040:57;;;::::0;::::1;::::0;;11563:2:1;62040:57:0::1;::::0;::::1;11545:21:1::0;11602:2;11582:18;;;11575:30;11641:26;11621:18;;;11614:54;11685:18;;62040:57:0::1;11361:348:1::0;62040:57:0::1;62108:20;;62131:5;62108:20:::0;;;:13:::1;:20;::::0;;;;:28;;;::::1;::::0;;61968:195::o;57102:334::-;2221:7;2248:6;2395:23;2248:6;928:10;2395:23;2387:68;;;;;;;8247:2:1;2387:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;2387:68:0;8045:356:1;2387:68:0;57249:14:::1;:29:::0;;;57289:15:::1;:31:::0;;;57331:14:::1;:29:::0;;;57348:12;57385:28:::1;57307:13:::0;57266:12;57385:28:::1;:::i;:::-;:43;;;;:::i;:::-;57371:11;:57:::0;-1:-1:-1;;;57102:334:0:o;60191:288::-;2221:7;2248:6;2395:23;2248:6;928:10;2395:23;2387:68;;;;;;;8247:2:1;2387:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;2387:68:0;8045:356:1;2387:68:0;60355:11:::1;:26:::0;;60392:18:::1;:40:::0;;;;60443:28;::::1;;::::0;60355:26;::::1;;;;60443:28:::0;;;;;;;;;;;;;;;::::1;::::0;;60191:288::o;57897:544::-;2221:7;2248:6;2395:23;2248:6;928:10;2395:23;2387:68;;;;;;;8247:2:1;2387:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;2387:68:0;8045:356:1;2387:68:0;58020:15:::1;::::0;::::1;57998:38:::0;;::::1;58020:15:::0;::::1;57998:38;;57976:138;;;::::0;::::1;::::0;;11916:2:1;57976:138:0::1;::::0;::::1;11898:21:1::0;11955:2;11935:18;;;11928:30;11994:34;11974:18;;;11967:62;12065:20;12045:18;;;12038:48;12103:19;;57976:138:0::1;11714:414:1::0;57976:138:0::1;58172:15;::::0;58130:59:::1;::::0;58172:15:::1;::::0;;::::1;::::0;58130:59;::::1;::::0;::::1;::::0;58172:15:::1;::::0;58130:59:::1;58200:15;:48:::0;;;::::1;;::::0;::::1;::::0;;::::1;::::0;;;58302:25:::1;::::0;;;;;;;-1:-1:-1;;58200:48:0;58302:23:::1;::::0;:25:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;58200:48;58302:25:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58284:69;;;58362:4;58369:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58284:108;::::0;;::::1;::::0;;;;;;12573:42:1;12642:15;;;58284:108:0::1;::::0;::::1;12624:34:1::0;12694:15;;12674:18;;;12667:43;12536:18;;58284:108:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58403:13;:30:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;57897:544:0:o;60940:214::-;2221:7;2248:6;2395:23;2248:6;928:10;2395:23;2387:68;;;;;;;8247:2:1;2387:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;2387:68:0;8045:356:1;2387:68:0;61037:3:::1;61030;:10;;:26;;;;;61051:5;61044:3;:12;;61030:26;61008:109;;;::::0;::::1;::::0;;12923:2:1;61008:109:0::1;::::0;::::1;12905:21:1::0;12962:2;12942:18;;;12935:30;13001:34;12981:18;;;12974:62;13072:3;13052:18;;;13045:31;13093:19;;61008:109:0::1;12721:397:1::0;61008:109:0::1;61128:12;:18:::0;60940:214::o;2826:103::-;2221:7;2248:6;2395:23;2248:6;928:10;2395:23;2387:68;;;;;;;8247:2:1;2387:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;2387:68:0;8045:356:1;2387:68:0;2891:30:::1;2918:1;2891:18;:30::i;:::-;2826:103::o:0;59305:280::-;59538:15;;:39;;;;;:15;2368:55:1;;;59538:39:0;;;2350:74:1;59408:7:0;;;;;;;;;;59538:15;;;:30;;2323:18:1;;59538:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;59531:46;;;;-1:-1:-1;59531:46:0;;-1:-1:-1;59531:46:0;-1:-1:-1;59531:46:0;;-1:-1:-1;59305:280:0;-1:-1:-1;;59305:280:0:o;56062:171::-;2221:7;2248:6;2395:23;2248:6;928:10;2395:23;2387:68;;;;;;;8247:2:1;2387:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;2387:68:0;8045:356:1;2387:68:0;56175:15:::1;::::0;:50:::1;::::0;;;;::::1;::::0;::::1;13799:25:1::0;;;56175:15:0::1;13860:55:1::0;;;13840:18;;;13833:83;56175:15:0;;::::1;::::0;:34:::1;::::0;13772:18:1;;56175:50:0::1;13625:297:1::0;45119:87:0;45158:13;45191:7;45184:14;;;;;:::i;56853:241::-;2221:7;2248:6;2395:23;2248:6;928:10;2395:23;2387:68;;;;;;;8247:2:1;2387:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;2387:68:0;8045:356:1;2387:68:0;56983:13:::1;::::0;::::1;56975:21:::0;;::::1;56983:13:::0;::::1;56975:21;;56967:67;;;::::0;::::1;::::0;;14129:2:1;56967:67:0::1;::::0;::::1;14111:21:1::0;14168:2;14148:18;;;14141:30;14207:34;14187:18;;;14180:62;14278:3;14258:18;;;14251:31;14299:19;;56967:67:0::1;13927:397:1::0;56967:67:0::1;57045:41;57074:4;57080:5;57045:28;:41::i;:::-;56853:241:::0;;:::o;61655:111::-;2221:7;2248:6;2395:23;2248:6;928:10;2395:23;2387:68;;;;;;;8247:2:1;2387:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;2387:68:0;8045:356:1;2387:68:0;61721:37:::1;::::0;61729:10:::1;::::0;61721:37;::::1;;;::::0;61750:7;;61721:37:::1;::::0;;;61750:7;61729:10;61721:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;46314:426:::0;928:10;46417:4;46466:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;46533:35;;;;46511:121;;;;;;;14531:2:1;46511:121:0;;;14513:21:1;14570:2;14550:18;;;14543:30;14609:34;14589:18;;;14582:62;14680:6;14660:18;;;14653:34;14704:19;;46511:121:0;14329:400:1;46511:121:0;46643:67;928:10;46666:7;46675:34;46694:15;46675:16;:34;:::i;46643:67::-;-1:-1:-1;46728:4:0;;46314:426;-1:-1:-1;;;46314:426:0:o;59593:140::-;59684:15;;:41;;;;;:15;2368:55:1;;;59684:41:0;;;2350:74:1;59657:7:0;;59684:15;;:32;;2323:18:1;;59684:41:0;2177:253:1;58735:184:0;58864:15;;:47;;;;;:15;2368:55:1;;;58864:47:0;;;2350:74:1;58832:7:0;;58864:15;;:38;;2323:18:1;;58864:47:0;2177:253:1;46748:216:0;46870:4;46892:42;928:10;46916:9;46927:6;46892:9;:42::i;60487:167::-;2221:7;2248:6;2395:23;2248:6;928:10;2395:23;2387:68;;;;;;;8247:2:1;2387:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;2387:68:0;8045:356:1;2387:68:0;60566:2:::1;60559:3;:9;;:25;;;;;60579:5;60572:3;:12;;60559:25;60551:70;;;::::0;::::1;::::0;;14936:2:1;60551:70:0::1;::::0;::::1;14918:21:1::0;;;14955:18;;;14948:30;15014:34;14994:18;;;14987:62;15066:18;;60551:70:0::1;14734:356:1::0;60551:70:0::1;60632:8;:14:::0;60487:167::o;58927:178::-;59053:15;;:44;;;;;:15;2368:55:1;;;59053:44:0;;;2350:74:1;59021:7:0;;59053:15;;:35;;2323:18:1;;59053:44:0;2177:253:1;55590:330:0;2221:7;2248:6;2395:23;2248:6;928:10;2395:23;2387:68;;;;;;;8247:2:1;2387:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;2387:68:0;8045:356:1;2387:68:0;55697:28:::1;::::0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;::::1;;:40;;::::0;::::1;;;;55675:137;;;::::0;::::1;::::0;;15297:2:1;55675:137:0::1;::::0;::::1;15279:21:1::0;15336:2;15316:18;;;15309:30;15375:34;15355:18;;;15348:62;15446:17;15426:18;;;15419:45;15481:19;;55675:137:0::1;15095:411:1::0;55675:137:0::1;55823:28;::::0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;;::::1;::::0;::::1;;::::0;;::::1;::::0;;;55878:34;;1943:41:1;;;55878:34:0::1;::::0;1916:18:1;55878:34:0::1;;;;;;;55590:330:::0;;:::o;62171:183::-;2221:7;2248:6;2395:23;2248:6;928:10;2395:23;2387:68;;;;;;;8247:2:1;2387:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;2387:68:0;8045:356:1;2387:68:0;62252:7:::1;62247:100;62269:6;:13;62265:1;:17;;;62247:100;;;62331:4;62304:13;:24;62318:6;62325:1;62318:9;;;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;62304:24:::1;;::::0;;;::::1;::::0;;;;;;-1:-1:-1;62304:24:0;:31;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;62284:3;::::1;::::0;::::1;:::i;:::-;;;;62247:100;;59885:133:::0;2221:7;2248:6;2395:23;2248:6;928:10;2395:23;2387:68;;;;;;;8247:2:1;2387:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;2387:68:0;8045:356:1;2387:68:0;59953:10:::1;:21:::0;;;::::1;;::::0;::::1;::::0;;;::::1;;::::0;;59990:20:::1;::::0;::::1;::::0;::::1;::::0;59966:8;1968:14:1;1961:22;1943:41;;1931:2;1916:18;;1803:187;59990:20:0::1;;;;;;;;59885:133:::0;:::o;56425:183::-;56552:15;;:48;;;;;:15;2368:55:1;;;56552:48:0;;;2350:74:1;56523:4:0;;56552:15;;:39;;2323:18:1;;56552:48:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;47468:74::-;2221:7;2248:6;2395:23;2248:6;928:10;2395:23;2387:68;;;;;;;8247:2:1;2387:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;2387:68:0;8045:356:1;2387:68:0;47521:6:::1;:13:::0;;;::::1;47530:4;47521:13;::::0;;47468:74::o;61162:165::-;2221:7;2248:6;2395:23;2248:6;928:10;2395:23;2387:68;;;;;;;8247:2:1;2387:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;2387:68:0;8045:356:1;2387:68:0;61275:33:::1;::::0;;;::::1;;::::0;;;:24:::1;:33;::::0;;;;:44;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;61162:165::o;60662:134::-;2221:7;2248:6;2395:23;2248:6;928:10;2395:23;2387:68;;;;;;;8247:2:1;2387:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;2387:68:0;8045:356:1;2387:68:0;60748:29:::1;::::0;;;::::1;;::::0;;;:20:::1;:29;::::0;;;;:40;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;60662:134::o;59741:136::-;2221:7;2248:6;2395:23;2248:6;928:10;2395:23;2387:68;;;;;;;8247:2:1;2387:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;2387:68:0;8045:356:1;2387:68:0;59810:11:::1;:22:::0;;;::::1;;;;::::0;;;::::1;;::::0;;59848:21:::1;::::0;::::1;::::0;::::1;::::0;59824:8;1968:14:1;1961:22;1943:41;;1931:2;1916:18;;1803:187;60026:157:0;2221:7;2248:6;2395:23;2248:6;928:10;2395:23;2387:68;;;;;;;8247:2:1;2387:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;2387:68:0;8045:356:1;2387:68:0;60102:18:::1;:29:::0;;;::::1;;::::0;::::1;::::0;;;::::1;;::::0;;60147:28:::1;::::0;::::1;::::0;::::1;::::0;60123:8;1968:14:1;1961:22;1943:41;;1931:2;1916:18;;1803:187;56616:229:0;2221:7;2248:6;2395:23;2248:6;928:10;2395:23;2387:68;;;;;;;8247:2:1;2387:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;2387:68:0;8045:356:1;2387:68:0;56758:15:::1;:34:::0;;;::::1;;;::::0;;::::1;;;::::0;;56803:15:::1;:34:::0;;;::::1;::::0;;;::::1;;::::0;;56616:229::o;3084:201::-;2221:7;2248:6;2395:23;2248:6;928:10;2395:23;2387:68;;;;;;;8247:2:1;2387:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;2387:68:0;8045:356:1;2387:68:0;3173:22:::1;::::0;::::1;3165:73;;;::::0;::::1;::::0;;16082:2:1;3165:73:0::1;::::0;::::1;16064:21:1::0;16121:2;16101:18;;;16094:30;16160:34;16140:18;;;16133:62;16231:8;16211:18;;;16204:36;16257:19;;3165:73:0::1;15880:402:1::0;3165:73:0::1;3249:28;3268:8;3249:18;:28::i;62362:186::-:0;2221:7;2248:6;2395:23;2248:6;928:10;2395:23;2387:68;;;;;;;8247:2:1;2387:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;2387:68:0;8045:356:1;2387:68:0;62445:7:::1;62440:101;62462:6;:13;62458:1;:17;;;62440:101;;;62524:5;62497:13;:24;62511:6;62518:1;62511:9;;;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;62497:24:::1;;::::0;;;::::1;::::0;;;;;;-1:-1:-1;62497:24:0;:32;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;62477:3;::::1;::::0;::::1;:::i;:::-;;;;62440:101;;58553:174:::0;58599:18;;;;;;;58591:63;;;;;;;16489:2:1;58591:63:0;;;16471:21:1;;;16508:18;;;16501:30;16567:34;16547:18;;;16540:62;16619:18;;58591:63:0;16287:356:1;58591:63:0;58665:15;;;;:31;928:10;58705:12;848:98;51415:367;51542:19;;;51534:67;;;;;;;16850:2:1;51534:67:0;;;16832:21:1;16889:2;16869:18;;;16862:30;16928:34;16908:18;;;16901:62;16999:5;16979:18;;;16972:33;17022:19;;51534:67:0;16648:399:1;51534:67:0;51620:21;;;51612:67;;;;;;;17254:2:1;51612:67:0;;;17236:21:1;17293:2;17273:18;;;17266:30;17332:34;17312:18;;;17305:62;17403:3;17383:18;;;17376:31;17424:19;;51612:67:0;17052:397:1;51612:67:0;51690:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;51742:32;;2141:25:1;;;51742:32:0;;2114:18:1;51742:32:0;;;;;;;51415:367;;;:::o;47550:3243::-;47696:6;;;;;:44;;-1:-1:-1;2221:7:0;2248:6;;47723:17;;;2248:6;;47723:17;47696:44;:85;;;-1:-1:-1;2221:7:0;2248:6;;47761:20;;;2248:6;;47761:20;47696:85;:124;;;-1:-1:-1;47802:18:0;;;;;;;:10;:18;;;;;;;;47696:124;:166;;;-1:-1:-1;47841:21:0;;;;;;;:10;:21;;;;;;;;47696:166;47674:224;;;;;;;17656:2:1;47674:224:0;;;17638:21:1;17695:1;17675:18;;;17668:29;17733:10;17713:18;;;17706:38;17761:18;;47674:224:0;17454:331:1;47674:224:0;47920:21;;;;;;;:13;:21;;;;;;;;47919:22;47911:62;;;;;;;17992:2:1;47911:62:0;;;17974:21:1;18031:2;18011:18;;;18004:30;18070:29;18050:18;;;18043:57;18117:18;;47911:62:0;17790:351:1;47911:62:0;47993:24;;;;;;;:13;:24;;;;;;;;47992:25;47984:68;;;;;;;18348:2:1;47984:68:0;;;18330:21:1;18387:2;18367:18;;;18360:30;18426:32;18406:18;;;18399:60;18476:18;;47984:68:0;18146:354:1;47984:68:0;48073:20;;;48065:69;;;;;;;18707:2:1;48065:69:0;;;18689:21:1;18746:2;18726:18;;;18719:30;18785:34;18765:18;;;18758:62;18856:6;18836:18;;;18829:34;18880:19;;48065:69:0;18505:400:1;48065:69:0;48153:23;;;48145:70;;;;;;;19112:2:1;48145:70:0;;;19094:21:1;19151:2;19131:18;;;19124:30;19190:34;19170:18;;;19163:62;19261:4;19241:18;;;19234:32;19283:19;;48145:70:0;18910:398:1;48145:70:0;48228:20;48280:5;48268:8;;48252:13;45386:12;;;45298:108;48252:13;:24;;;;:::i;:::-;48251:34;;;;:::i;:::-;48228:57;;48296:18;48350:5;48334:12;;48318:13;45386:12;;;45298:108;48318:13;:28;;;;:::i;:::-;48317:38;;;;:::i;:::-;48296:59;;48398:12;48388:6;:22;;:54;;;-1:-1:-1;48414:28:0;;;;;;;:20;:28;;;;;;;;48388:54;48366:121;;;;;;;20027:2:1;48366:121:0;;;20009:21:1;20066:2;20046:18;;;20039:30;20105:19;20085:18;;;20078:47;20142:18;;48366:121:0;19825:341:1;48366:121:0;2221:7;2248:6;;48518:17;;;2248:6;;48518:17;;;;:60;;-1:-1:-1;48552:26:0;;;48573:4;48552:26;;48518:60;:103;;;;-1:-1:-1;48616:4:0;;;48595:26;;;48616:4;;48595:26;;48518:103;:146;;;;-1:-1:-1;48651:13:0;;;48638:26;;;48651:13;;48638:26;;48518:146;48500:403;;;45565:18;;;48691:22;45565:18;;;:9;:18;;;;;;;;;48777:24;:35;;;;;;;;;;:99;;-1:-1:-1;48865:10:0;48838:23;48855:6;48838:14;:23;:::i;:::-;:37;;48777:99;48751:140;;;;;;48676:227;48500:403;48939:17;;;48915:21;48939:17;;;:9;:17;;;;;;48989:23;;;;48967:110;;;;;;;20373:2:1;48967:110:0;;;20355:21:1;20412:2;20392:18;;;20385:30;20451:34;20431:18;;;20424:62;20522:7;20502:18;;;20495:35;20547:19;;48967:110:0;20171:401:1;48967:110:0;49139:4;49090:28;45565:18;;;:9;:18;;;;;;49261;;49310:11;;49188:21;;49237:42;;;;49310:11;;;;;:43;;;;;49346:7;49310:43;:77;;;;-1:-1:-1;49379:8:0;;;;49378:9;49310:77;:158;;;;-1:-1:-1;49435:33:0;;;;;;;:25;:33;;;;;;;;49434:34;49310:158;:258;;;;-1:-1:-1;49552:15:0;;;49534:34;;;49552:15;;49534:34;;49310:258;:330;;;;-1:-1:-1;2221:7:0;2248:6;;49623:17;;;2248:6;;49623:17;;49310:330;:367;;;;-1:-1:-1;2221:7:0;2248:6;;49657:20;;;2248:6;;49657:20;;49310:367;49292:700;;;49704:8;:15;;;;49715:4;49704:15;;;49741:12;;49704:15;49741:12;49736:95;;49797:18;;49774:41;;49736:95;49845:57;49858:20;49880:21;49845:12;:57::i;:::-;49934:15;49919:12;:30;49964:8;:16;;;;;;49292:700;50065:13;;50004:12;;50065:13;50047:32;;;50065:13;;50047:32;;:84;;-1:-1:-1;50117:13:0;;;50096:35;;;50117:13;;50096:35;50047:84;50029:155;;;-1:-1:-1;50168:4:0;50029:155;50200:27;;;;;;;:19;:27;;;;;;;;;:61;;-1:-1:-1;50231:30:0;;;;;;;:19;:30;;;;;;;;50200:61;50196:109;;;-1:-1:-1;50288:5:0;50196:109;50321:8;;;;;:23;;-1:-1:-1;50334:10:0;;;;;;;50333:11;50321:23;50317:71;;;-1:-1:-1;50371:5:0;50317:71;50404:7;50400:174;;;50428:12;50468:5;50453:11;;50444:6;:20;;;;:::i;:::-;50443:30;;;;:::i;:::-;50428:45;-1:-1:-1;50488:14:0;50428:45;50488:14;;:::i;:::-;;;50517:45;50534:6;50550:4;50557;50517:16;:45::i;:::-;50413:161;50400:174;50586:43;50603:6;50611:9;50622:6;50586:16;:43::i;:::-;50642:15;;;;:26;50677:6;50686:17;50677:6;45565:18;;45533:7;45565:18;;;:9;:18;;;;;;;45414:177;50686:17;50642:62;;;;;;;;;;10280:42:1;10268:55;;;50642:62:0;;;10250:74:1;10340:18;;;10333:34;10223:18;;50642:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;50715:15:0;;;;;-1:-1:-1;50715:26:0;;-1:-1:-1;50750:9:0;50762:20;50750:9;45565:18;;45533:7;45565:18;;;:9;:18;;;;;;;45414:177;50762:20;50715:68;;;;;;;;;;10280:42:1;10268:55;;;50715:68:0;;;10250:74:1;10340:18;;;10333:34;10223:18;;50715:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47663:3130;;;;;;;47550:3243;;;:::o;3445:191::-;3519:16;3538:6;;;3555:17;;;;;;;;;;3588:40;;3538:6;;;;;;;3588:40;;3519:16;3588:40;3508:128;3445:191;:::o;57444:445::-;57549:31;;;;;;;:25;:31;;;;;;;;:40;;;;;;;57527:152;;;;;;;21097:2:1;57527:152:0;;;21079:21:1;21136:2;21116:18;;;21109:30;21175:34;21155:18;;;21148:62;21246:32;21226:18;;;21219:60;21296:19;;57527:152:0;20895:426:1;57527:152:0;57690:31;;;;;;;:25;:31;;;;;:39;;;;;;;;;;;;;;;57740:86;;57766:15;;:48;;;;;:15;8592:55:1;;;57766:48:0;;;8574:74:1;57766:15:0;8664:18:1;;;8657:50;57766:15:0;;;;:36;;8547:18:1;;57766:48:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57740:86;57841:40;;;;;;;;;;;;;;;57444:445;;:::o;53572:2010::-;53659:1;53649:6;:11;53645:50;;53572:2010;;:::o;53645:50::-;53757:15;;53707:27;;53757:15;;;53749:38;53757:15;53749:38;53745:132;;53854:11;;53836:14;;53827:23;;:6;:23;:::i;:::-;53826:39;;;;:::i;:::-;53804:61;;53745:132;53889:27;53963:1;53931:15;;;;;;;;;;;:27;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:33;53927:127;;;54031:11;;54013:14;;54004:23;;:6;:23;:::i;:::-;54003:39;;;;:::i;:::-;53981:61;;53927:127;54066:26;54152:19;54095:41;54117:19;54095:6;:41;:::i;:::-;:76;;;;:::i;:::-;54066:105;-1:-1:-1;54182:27:0;54212:22;54233:1;54066:105;54212:22;:::i;:::-;54182:52;-1:-1:-1;54245:26:0;54274:40;54182:52;54274:18;:40;:::i;:::-;54245:69;-1:-1:-1;54325:23:0;54421:19;54351:54;54386:19;54351;:54;:::i;:::-;:89;;;;:::i;:::-;54325:115;-1:-1:-1;54477:21:0;54509:36;54325:115;54509:19;:36::i;:::-;54556:21;54635:6;54581:37;54605:13;54581:21;:37;:::i;:::-;54580:61;;;;:::i;:::-;54556:85;-1:-1:-1;54654:23:0;54733:15;54681:35;54697:19;54556:85;54681:35;:::i;:::-;54680:68;;;;:::i;:::-;54654:94;-1:-1:-1;54759:23:0;54838:15;54786:35;54802:19;54786:13;:35;:::i;:::-;54785:68;;;;:::i;:::-;54759:94;-1:-1:-1;54864:23:0;54759:94;54890:44;54919:15;54890:13;:44;:::i;:::-;:75;;;;:::i;:::-;54864:101;-1:-1:-1;54982:19:0;;54978:102;;55026:15;;55018:50;;55026:15;;;;;;;55018:50;;;;;;;;;;;;55026:15;55018:50;;;;;;;;;;;;;;;;;;;;;54978:102;55092:49;55105:18;55125:15;55092:12;:49::i;:::-;55157:127;;;21528:25:1;;;21584:2;21569:18;;21562:34;;;21612:18;;;21605:34;;;55157:127:0;;21516:2:1;21501:18;55157:127:0;;;;;;;55301:19;;55297:278;;55364:15;;55356:89;;55338:12;;55364:15;;;55411;;55338:12;55356:89;55338:12;55356:89;55411:15;55364;55356:89;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55337:108;;;55464:7;55460:104;;;55497:51;;;22034:25:1;;;22090:2;22075:18;;22068:34;;;55497:51:0;;22007:18:1;55497:51:0;;;;;;;55322:253;55297:278;53634:1948;;;;;;;;;;;53572:2010;;:::o;50801:606::-;50939:20;;;50931:69;;;;;;;18707:2:1;50931:69:0;;;18689:21:1;18746:2;18726:18;;;18719:30;18785:34;18765:18;;;18758:62;18856:6;18836:18;;;18829:34;18880:19;;50931:69:0;18505:400:1;50931:69:0;51019:23;;;51011:70;;;;;;;19112:2:1;51011:70:0;;;19094:21:1;19151:2;19131:18;;;19124:30;19190:34;19170:18;;;19163:62;19261:4;19241:18;;;19234:32;19283:19;;51011:70:0;18910:398:1;51011:70:0;51116:17;;;51092:21;51116:17;;;:9;:17;;;;;;51166:23;;;;51144:110;;;;;;;20373:2:1;51144:110:0;;;20355:21:1;20412:2;20392:18;;;20385:30;20451:34;20431:18;;;20424:62;20522:7;20502:18;;;20495:35;20547:19;;51144:110:0;20171:401:1;51144:110:0;51285:22;51301:6;51285:13;:22;:::i;:::-;51265:17;;;;;;;;:9;:17;;;;;;:42;;;;51318:20;;;;;;;;:30;;51342:6;;51265:17;51318:30;;51342:6;;51318:30;:::i;:::-;;;;;;;;51381:9;51364:35;;51373:6;51364:35;;;51392:6;51364:35;;;;2141:25:1;;2129:2;2114:18;;1995:177;51364:35:0;;;;;;;;50920:487;50801:606;;;:::o;52487:490::-;52575:16;;;52589:1;52575:16;;;;;;;;52551:21;;52575:16;;;;;;;;;;-1:-1:-1;52575:16:0;52551:40;;52620:4;52602;52607:1;52602:7;;;;;;;;:::i;:::-;:23;;;;:7;;;;;;;;;;:23;;;;52646:15;;:22;;;;;;;;:15;;;;;:20;;:22;;;;;52602:7;;52646:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52636:4;52641:1;52636:7;;;;;;;;:::i;:::-;:32;;;;:7;;;;;;;;;:32;52711:15;;52679:57;;52696:4;;52711:15;52729:6;52679:8;:57::i;:::-;52747:15;;:222;;;;;:15;;;;;:66;;:222;;52828:6;;52747:15;;52896:4;;52923;;52943:15;;52747:222;;;:::i;52985:395::-;53090:15;;53058:57;;53075:4;;53090:15;;53108:6;53058:8;:57::i;:::-;53126:15;;53316;;53126:246;;;;;53195:4;53126:246;;;23508:34:1;23558:18;;;23551:34;;;53126:15:0;23601:18:1;;;23594:34;;;23644:18;;;23637:34;53126:15:0;53316;;;23687:19:1;;;23680:44;53346:15:0;23740:19:1;;;23733:35;53126:15:0;;;:31;;53165:6;;23419:19:1;;53126:246:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;52985: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:456::-;2512:6;2520;2528;2581:2;2569:9;2560:7;2556:23;2552:32;2549:52;;;2597:1;2594;2587:12;2549:52;2636:9;2623:23;2655:31;2680:5;2655:31;:::i;:::-;2705:5;-1:-1:-1;2762:2:1;2747:18;;2734:32;2775:33;2734:32;2775:33;:::i;:::-;2435:456;;2827:7;;-1:-1:-1;;;2881:2:1;2866:18;;;;2853:32;;2435:456::o;2896:247::-;2955:6;3008:2;2996:9;2987:7;2983:23;2979:32;2976:52;;;3024:1;3021;3014:12;2976:52;3063:9;3050:23;3082:31;3107:5;3082:31;:::i;:::-;3132:5;2896:247;-1:-1:-1;;;2896:247:1: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:444::-;4223:6;4231;4239;4292:2;4280:9;4271:7;4267:23;4263:32;4260:52;;;4308:1;4305;4298:12;4260:52;4347:9;4334:23;4366:28;4388:5;4366:28;:::i;:::-;4413:5;-1:-1:-1;4465:2:1;4450:18;;4437:32;;-1:-1:-1;4521:2:1;4506:18;;4493:32;4534:30;4493:32;4534:30;:::i;:::-;4583:7;4573:17;;;4152:444;;;;;:::o;4601:180::-;4660:6;4713:2;4701:9;4692:7;4688:23;4684:32;4681:52;;;4729:1;4726;4719:12;4681:52;-1:-1:-1;4752:23:1;;4601:180;-1:-1:-1;4601:180:1: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;9568:184::-;9620:77;9617:1;9610:88;9717:4;9714:1;9707:15;9741:4;9738:1;9731:15;9757:125;9797:4;9825:1;9822;9819:8;9816:34;;;9830:18;;:::i;:::-;-1:-1:-1;9867:9:1;;9757:125::o;9887:184::-;9957:6;10010:2;9998:9;9989:7;9985:23;9981:32;9978:52;;;10026:1;10023;10016:12;9978:52;-1:-1:-1;10049:16:1;;9887:184;-1:-1:-1;9887:184:1:o;10378:245::-;10445:6;10498:2;10486:9;10477:7;10473:23;10469:32;10466:52;;;10514:1;10511;10504:12;10466:52;10546:9;10540:16;10565:28;10587:5;10565:28;:::i;10628:128::-;10668:3;10699:1;10695:6;10692:1;10689:13;10686:39;;;10705:18;;:::i;:::-;-1:-1:-1;10741:9:1;;10628:128::o;12133:251::-;12203:6;12256:2;12244:9;12235:7;12231:23;12227:32;12224:52;;;12272:1;12269;12262:12;12224:52;12304:9;12298:16;12323:31;12348:5;12323:31;:::i;13123:497::-;13229:6;13237;13245;13253;13261;13314:3;13302:9;13293:7;13289:23;13285:33;13282:53;;;13331:1;13328;13321:12;13282:53;13363:9;13357:16;13382:31;13407:5;13382:31;:::i;:::-;13477:2;13462:18;;13456:25;13521:2;13506:18;;13500:25;13565:2;13550:18;;13544:25;13609:3;13594:19;;;13588:26;13432:5;;13456:25;;-1:-1:-1;13500:25:1;13544;-1:-1:-1;13588:26:1;;-1:-1:-1;13123:497:1;-1:-1:-1;;;13123:497:1:o;15511:184::-;15563:77;15560:1;15553:88;15660:4;15657:1;15650:15;15684:4;15681:1;15674:15;15700:175;15737:3;15781:4;15774:5;15770:16;15810:4;15801:7;15798:17;15795:43;;;15818:18;;:::i;:::-;15867:1;15854:15;;15700:175;-1:-1:-1;;15700:175:1:o;19313:228::-;19353:7;19479:1;19411:66;19407:74;19404:1;19401:81;19396:1;19389:9;19382:17;19378:105;19375:131;;;19486:18;;:::i;:::-;-1:-1:-1;19526:9:1;;19313:228::o;19546:274::-;19586:1;19612;19602:189;;19647:77;19644:1;19637:88;19748:4;19745:1;19738:15;19776:4;19773:1;19766:15;19602:189;-1:-1:-1;19805:9:1;;19546:274::o;22113:1026::-;22375:4;22423:3;22412:9;22408:19;22454:6;22443:9;22436:25;22480:2;22518:6;22513:2;22502:9;22498:18;22491:34;22561:3;22556:2;22545:9;22541:18;22534:31;22585:6;22620;22614:13;22651:6;22643;22636:22;22689:3;22678:9;22674:19;22667:26;;22728:2;22720:6;22716:15;22702:29;;22749:1;22759:218;22773:6;22770:1;22767:13;22759:218;;;22838:13;;22853:42;22834:62;22822:75;;22952:15;;;;22917:12;;;;22795:1;22788:9;22759:218;;;-1:-1:-1;;23045:42:1;23033:55;;;;23028:2;23013:18;;23006:83;-1:-1:-1;;;23120:3:1;23105:19;23098:35;22994:3;22113:1026;-1:-1:-1;;;22113:1026:1:o;23779:306::-;23867:6;23875;23883;23936:2;23924:9;23915:7;23911:23;23907:32;23904:52;;;23952:1;23949;23942:12;23904:52;23981:9;23975:16;23965:26;;24031:2;24020:9;24016:18;24010:25;24000:35;;24075:2;24064:9;24060:18;24054:25;24044:35;;23779:306;;;;;:::o

Swarm Source

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